/toolchain/binutils/binutils-2.25/bfd/ |
verilog.c | 63 static const char digs[] = "0123456789ABCDEF"; variable 68 d[1] = digs[(x) & 0xf]; \ 69 d[0] = digs[((x) >> 4) & 0xf];
|
ihex.c | 720 static const char digs[] = "0123456789ABCDEF"; local 728 ((buf)[0] = digs[((v) >> 4) & 0xf], (buf)[1] = digs[(v) & 0xf])
|
srec.c | 113 static const char digs[] = "0123456789ABCDEF"; variable 118 d[1] = digs[(x) & 0xf]; \ 119 d[0] = digs[((x)>>4)&0xf]; \ [all...] |
tekhex.c | 86 static const char digs[] = "0123456789ABCDEF"; variable 95 (d)[1] = digs[(x) & 0xf]; \ 96 (d)[0] = digs[((x)>>4)&0xf]; 718 *p++ = digs[(value >> shift) & 0xf]; 752 *p++ = digs[len];
|
/external/dnsmasq/src/ |
rfc1035.c | 95 unsigned int count, digs; local 106 digs = ((count-1)>>2)+1; 108 /* output is \[x<hex>/siz]. which is digs+9 chars */ 109 if (cp - (unsigned char *)name + digs + 9 >= MAXDNAME) 117 for (j=0; j<digs; j++) [all...] |
option.c | 670 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; local 741 addrs = digs = 1; 751 digs++; 795 if (is_hex && digs > 1) 797 new->len = digs; 799 parse_hex(comma, new->val, digs, (flags & DHOPT_MATCH) ? &new->u.wildcard_mask : NULL, NULL); [all...] |
/external/wpa_supplicant_8/src/tls/ |
libtommath.c | 141 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs); 143 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs); 146 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs); 518 int digs = a->used + b->used + 1; local 520 if ((digs < MP_WARRAY) && 523 res = fast_s_mp_mul_digs (a, b, c, digs); [all...] |