Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 25 of 77) sorted by relevance

1234

/plan9/sys/src/cmd/
H A Dunicode.c6 char hex[] = "0123456789abcdefABCDEF"; variable
34 if(numout || strchr(hex, argv[0][0])==0) in main()
48 if(strchr(hex, q[0]) == 0){ in range()
57 if(strchr(hex, *q) == 0) in range()
113 if(strchr(hex, q[0]) == 0){ in chars()
H A Ded.c73 char hex[] = "0123456789abcdef"; variable
1537 *lp++ = hex[c>>12]; in putchr()
1538 *lp++ = hex[c>>8&0xF]; in putchr()
1539 *lp++ = hex[c>>4&0xF]; in putchr()
1540 c = hex[c&0xF]; in putchr()
H A Dsed.c1095 static char hex[] = "0123456789abcdef"; in trans() local
1109 buf[2] = hex[(c>>12)&0xF]; in trans()
1110 buf[3] = hex[(c>>8)&0xF]; in trans()
1111 buf[4] = hex[(c>>4)&0xF]; in trans()
1112 buf[5] = hex[c&0xF]; in trans()
/plan9/sys/src/libndb/
H A Dipattr.c14 int hex = 0; in ipattr() local
21 hex = 1; in ipattr()
42 if(dot && !hex) in ipattr()
/plan9/sys/src/cmd/aux/mnihongo/
H A Dmnihongo.c59 char *pschar(char *, char *hex, int *wid, int *ht);
183 char hex[500]; in kanji() local
187 pschar(s, hex, &wid, &ht); in kanji()
192 Bprint(&bout, "x X PS {<%s>}\n", hex); in kanji()
197 char *pschar(char *s, char *hex, int *wid, int *ht) in pschar() argument
202 char *hp = hex; in pschar()
223 return hex; in pschar()
/plan9/sys/src/cmd/upas/unesc/
H A Dunesc.c9 hex(int c) in hex() function
41 c = hex(Bgetc(&bin)) << 4; in main()
42 c |= hex(Bgetc(&bin)); in main()
/plan9/sys/src/cmd/rc/
H A Dhere.c9 char hex[] = "0123456789abcdef"; variable
17 *p++ = hex[(n>>12)&0xF]; in hexnum()
18 *p++ = hex[(n>>8)&0xF]; in hexnum()
19 *p++ = hex[(n>>4)&0xF]; in hexnum()
20 *p = hex[n&0xF]; in hexnum()
/plan9/sys/src/9/pc/
H A Dcga.c123 char hex[] = "0123456789ABCDEF"; variable
131 cga[Width*Height-Postcodelen*2] = hex[(code>>4) & 0x0F]; in cgapost()
133 cga[Width*Height-Postcodelen*2+2] = hex[code & 0x0F]; in cgapost()
/plan9/sys/src/cmd/postscript/postdmd/
H A DREADME12 of hex digits. Bytes is the number of bytes represented by the hex
/plan9/sys/src/cmd/gs/src/
H A Dechogs.c329 static const char *hex = "0123456789abcdef"; in hputc() local
332 putc(hex[(ch >> 4) & 0xf], out); in hputc()
333 putc(hex[ch & 0xf], out); in hputc()
/plan9/sys/src/cmd/aux/
H A Dastarld.c212 hex(char c) in hex() function
242 c = hex(*p++)<<4; in rdcpline()
243 c |= hex(*p++); in rdcpline()
H A Dpcmcia.c32 int hex; variable
55 if(hex) in readc()
98 hex = 1; in main()
/plan9/sys/src/cmd/auth/factotum/
H A Dp9sk1.c371 hexparse(char *hex, uchar *dat, int ndat) in hexparse() argument
375 if(strlen(hex) != 2*ndat) in hexparse()
377 if(hex[strspn(hex, "0123456789abcdefABCDEF")] != '\0') in hexparse()
380 dat[i] = (unhex(hex[2*i])<<4)|unhex(hex[2*i+1]); in hexparse()
/plan9/sys/src/cmd/db/
H A Dformat.c368 static char hex[] = "0123456789abcdef"; in printesc() local
371 dprint("\\x%c%c", hex[(c&0xF0)>>4], hex[c&0xF]); in printesc()
/plan9/sys/src/9/pcboot/
H A Dexpand.c255 static char *hex = "0123456789abcdef"; in print() local
275 *--s = hex[x&15]; in print()
/plan9/sys/src/cmd/ip/dhcpd/
H A Ddb.c24 hex(int x) in hex() function
42 *sp++ = hex(*p>>4); in tohex()
43 *sp++ = hex(*p & 0xf); in tohex()
/plan9/sys/src/cmd/map/libmap/
H A Dmkfile23 hex.$O\
/plan9/rc/bin/
H A Dmapdemo65 demo hex 'world is hexagon centered on N Pole, N and S hemispheres are equilateral
/plan9/sys/src/cmd/map/
H A Dmapdemo.rc65 demo hex 'world is hexagon centered on N Pole, N and S hemispheres are equilateral
H A Dmap.h69 proj hex(void);
H A Dindex.c20 static proj Yhex(double, double){return hex();} in Yhex()
/plan9/lib/face/48x48x4/t/
H A Dtkh.12 …��wfUB#EDD3iq������wvVtVUUUfY���/�ת����YB6Di��Uw���/�ڸ�fvdW!&3V�hex�s�����eTDCG!&24D4…
/plan9/sys/src/cmd/ip/snoopy/
H A Ddhcp.c110 hex(int x) in hex() function
122 *p++ = hex(*o >> 4); in phex()
123 *p++ = hex(*o & 0xf); in phex()
/plan9/sys/src/9/bcm/
H A Dwords58 hex addr size what
95 hex addr size what
/plan9/sys/src/9/kw/
H A Dplug.words69 hex addr size what
76 hex addr size what

1234