HomeSort by: relevance | last modified time | path
    Searched defs:byte (Results 1 - 25 of 180) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/sys/fs/udf/
udf_osta.h 28 * byte needs to be unsigned 8-bit, and unicode_t needs to be
32 typedef uint8_t byte; typedef
35 int udf_UncompressUnicode(int, byte *, unicode_t *);
36 int udf_CompressUnicode(int, int, unicode_t *, byte *);
  /src/sys/lib/libkern/
intoa.c 56 u_int byte; local
66 byte = addr & 0xff;
67 *--cp = byte % 10 + '0';
68 byte /= 10;
69 if (byte > 0) {
70 *--cp = byte % 10 + '0';
71 byte /= 10;
72 if (byte > 0)
73 *--cp = byte + '0';
  /src/usr.sbin/bootp/common/
bptypes.h 24 typedef unsigned char byte; typedef
  /src/usr.bin/cmp/
regular.c 59 off_t byte, length, line; local
73 byte = line = 1;
103 for (; blk_cnt--; ++p1, ++p2, ++byte) {
106 diffmsg(file1, file2, byte, line);
111 (long long)byte, ch, *p2);
124 eofmsg(len1 > len2 ? file2 : file1, byte, line);
special.c 53 off_t byte, line; local
63 for (byte = line = 1; skip1--; byte++) {
70 for (byte = line = 1; skip2--; byte++) {
78 for (byte = line = 1;; ++byte) {
86 (void)printf("%6lld %3o %3o\n", (long long)byte,
89 diffmsg(file1, file2, byte, line);
98 errmsg(file1, byte, line)
    [all...]
  /src/external/bsd/openldap/dist/libraries/libldap/
lbase64.c 64 char *p, *end, *byte; local
67 byte = value->bv_val;
87 byte[0] = nib << 2;
90 byte[0] |= nib >> 4;
91 byte[1] = (nib & RIGHT4) << 4;
98 byte[1] |= nib >> 2;
99 byte[2] = (nib & RIGHT2) << 6;
106 byte[2] |= nib;
108 byte += 3;
  /src/external/gpl3/binutils/dist/include/
leb128.h 50 Note: The result is an int instead of a pointer to the next byte to be
60 unsigned char byte; local
67 byte = *p++;
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
69 if ((byte & 0x80) == 0)
83 Note: The result is an int instead of a pointer to the next byte to be
93 unsigned char byte; local
100 byte = *p++;
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
103 if ((byte & 0x80) == 0
123 unsigned char byte; local
    [all...]
  /src/external/gpl3/binutils.old/dist/include/
leb128.h 50 Note: The result is an int instead of a pointer to the next byte to be
60 unsigned char byte; local
67 byte = *p++;
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
69 if ((byte & 0x80) == 0)
83 Note: The result is an int instead of a pointer to the next byte to be
93 unsigned char byte; local
100 byte = *p++;
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
103 if ((byte & 0x80) == 0
123 unsigned char byte; local
    [all...]
  /src/external/gpl3/gcc.old/dist/include/
leb128.h 50 Note: The result is an int instead of a pointer to the next byte to be
60 unsigned char byte; local
67 byte = *p++;
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
69 if ((byte & 0x80) == 0)
83 Note: The result is an int instead of a pointer to the next byte to be
93 unsigned char byte; local
100 byte = *p++;
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
103 if ((byte & 0x80) == 0
123 unsigned char byte; local
    [all...]
  /src/lib/libtelnet/
pk.h 34 typedef unsigned char byte, DesData[ 8], IdeaData[16]; typedef
  /src/sys/ddb/
db_expr.c 55 int i, c, byte; local
59 byte = 0;
61 byte = c - '0';
63 byte = c - 'a' + 10;
65 byte = c - 'A' + 10;
69 v = v * db_radix + byte;
  /src/sys/dev/nand/
hamming.c 59 * If the xor sum of the byte is 0, then this byte has no
66 * Example on one byte:
190 /* this byte should remain zero all the time */
204 /* Get byte and bit indexes */
205 uint8_t byte = correction_code[0] & 0x80; local
206 byte |= (correction_code[0] << 1) & 0x40;
207 byte |= (correction_code[0] << 2) & 0x20;
208 byte |= (correction_code[0] << 3) & 0x10;
210 byte |= (correction_code[1] >> 4) & 0x08
    [all...]
nand_bbt.c 214 /* set byte containing the 2 bit marker for this block */
225 uint8_t byte, marker; local
231 /* get byte containing the 2 bit marker for this block */
232 byte = bbt->nbbt_bitmap[block / 4];
234 /* extract the 2 bit marker from the byte */
235 marker = (byte >> ((block % 4) * 2)) & 0x03;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
donotoptimize_test.cc 16 unsigned char &byte; member in struct:BitRef
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
donotoptimize_test.cc 16 unsigned char &byte; member in struct:BitRef
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
hmac-openssl.c 77 uint8_t byte = i >= key->length ? 0 : key->secret[i]; local
78 kipad[i] = byte ^ 0x36;
79 kopad[i] = byte ^ 0x5c;
  /src/external/gpl2/gettext/dist/gettext-tools/src/
filter-sr-latin.c 136 The argument must be a byte in the range 0..UCHAR_MAX. */
137 #define IS_UPPERCASE_LATIN(byte) \
138 ((unsigned char) ((byte) - 'A') <= 'Z' - 'A')
171 unsigned char byte = (unsigned char) *ip; local
173 /* Test for the first byte of a Cyrillic character. */
174 if ((byte >= 0xd0 && byte <= 0xd1) && (ip + 1 < input_end))
178 /* Verify the second byte is valid. */
181 unsigned int uc = ((byte & 0x1f) << 6) | (second_byte & 0x3f);
  /src/sys/arch/x86/x86/
i8259.c 196 uint8_t byte; local
204 byte = i8259_imen >> 8;
207 byte = i8259_imen & 0xff;
209 outb(port, byte);
216 uint8_t byte; local
225 byte = i8259_imen >> 8;
228 byte = i8259_imen & 0xff;
230 outb(port, byte);
  /src/sys/dev/fdt/
fdt_ddb.c 109 const uint8_t *byte = (const uint8_t *)prop->data; local
113 pr("%02x%s", byte[j],
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_dp_auxch.c 69 u8 byte; local
125 byte = (msg->request << 4) | ((msg->address >> 16) & 0xf);
127 AUX_SW_DATA_MASK(byte) | AUX_SW_AUTOINCREMENT_DISABLE);
129 byte = (msg->address >> 8) & 0xff;
131 AUX_SW_DATA_MASK(byte));
133 byte = msg->address & 0xff;
135 AUX_SW_DATA_MASK(byte));
137 byte = msize;
139 AUX_SW_DATA_MASK(byte));
  /src/sys/external/bsd/drm2/include/linux/
string.h 45 const uint8_t byte = c; /* XXX lose */ local
49 if (*p != byte)
  /src/lib/libc/net/
iso_addr.c 71 register int byte = 0, state = VIRGIN; local
91 *cp++ = byte; /*FALLTHROUGH*/
93 state = GOTONE; byte = newaddr; continue;
95 state = GOTTWO; byte = newaddr + (byte << 4); continue;
97 state = VIRGIN; *cp++ = byte; byte = 0; continue;
100 *cp++ = byte; /* FALLTHROUGH */
linkaddr.c 64 int byte = 0, state = NAMING; local
100 *cp++ = byte;
104 byte = (int)newaddr;
108 byte = (int)newaddr + (byte << 4);
112 *cp++ = byte;
113 byte = 0;
117 *cp++ = byte;
  /src/sys/arch/acorn32/podulebus/
cosc.c 186 int byte; local
189 byte = sc->sc_iobase[COSC_REGISTER_01];
190 byte = 0;
193 byte |= (1 << loop);
195 printf(" byte=%02x", byte);
  /src/sys/arch/x86/pci/imcsmb/
imcsmb.c 247 uint8_t *byte; local
254 byte = (uint8_t *) buf;
256 lbyte = *byte;
327 * the temperature sensors are I2C. Thus, byte-swap the
332 /* For byte operations, the data goes in the LSB, and
424 * above, byte-swap.

Completed in 45 milliseconds

1 2 3 4 5 6 7 8