Searched refs:ch (Results 1 – 3 of 3) sorted by relevance
| /lib/ |
| A D | earlycpio.c | 65 unsigned int ch[C_NFIELDS], *chp, v; in find_cpio_data() local 81 chp = ch; in find_cpio_data() 106 if ((ch[C_MAGIC] - 0x070701) > 1) in find_cpio_data() 111 dptr = PTR_ALIGN(p + ch[C_NAMESIZE], 4); in find_cpio_data() 112 nptr = PTR_ALIGN(dptr + ch[C_FILESIZE], 4); in find_cpio_data() 117 if ((ch[C_MODE] & 0170000) == 0100000 && in find_cpio_data() 118 ch[C_NAMESIZE] >= mypathsize && in find_cpio_data() 124 if (ch[C_NAMESIZE] - mypathsize >= MAX_CPIO_FILE_NAME) { in find_cpio_data() 132 cd.size = ch[C_FILESIZE]; in find_cpio_data()
|
| A D | hexdump.c | 46 int hex_to_bin(unsigned char ch) in hex_to_bin() argument 48 unsigned char cu = ch & 0xdf; in hex_to_bin() 50 ((ch - '0' + 1) & (unsigned)((ch - '9' - 1) & ('0' - 1 - ch)) >> 8) + in hex_to_bin() 132 u8 ch; in hex_dump_to_buffer() local 193 ch = ptr[j]; in hex_dump_to_buffer() 194 linebuf[lx++] = hex_asc_hi(ch); in hex_dump_to_buffer() 197 linebuf[lx++] = hex_asc_lo(ch); in hex_dump_to_buffer() 216 ch = ptr[j]; in hex_dump_to_buffer() 217 linebuf[lx++] = (isascii(ch) && isprint(ch)) ? ch : '.'; in hex_dump_to_buffer()
|
| /lib/crypto/ |
| A D | gf128mul.c | 210 u8 ch = ((u8 *)b)[15 - i]; in gf128mul_lle() local 212 be128_xor(r, r, &p[ 0 + !(ch & 0x80)]); in gf128mul_lle() 213 be128_xor(r, r, &p[ 2 + !(ch & 0x40)]); in gf128mul_lle() 214 be128_xor(r, r, &p[ 4 + !(ch & 0x20)]); in gf128mul_lle() 215 be128_xor(r, r, &p[ 6 + !(ch & 0x10)]); in gf128mul_lle() 216 be128_xor(r, r, &p[ 8 + !(ch & 0x08)]); in gf128mul_lle() 217 be128_xor(r, r, &p[10 + !(ch & 0x04)]); in gf128mul_lle() 218 be128_xor(r, r, &p[12 + !(ch & 0x02)]); in gf128mul_lle() 219 be128_xor(r, r, &p[14 + !(ch & 0x01)]); in gf128mul_lle()
|
Completed in 6 milliseconds