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

1 2 3 4 5 6 7 8 91011>>

  /src/external/public-domain/xz/dist/src/liblzma/common/
vli_decoder.c 48 // Read the next byte. Use a temporary variable so that we
50 const uint8_t byte = in[*in_pos]; local
53 // Add the newly read byte to *vli.
54 *vli += (lzma_vli)(byte & 0x7F) << (*vli_pos * 7);
57 // Check if this is the last byte of a multibyte integer.
58 if ((byte & 0x80) == 0) {
62 if (byte == 0x00 && *vli_pos > 1)
69 // There is at least one more byte coming. If we have already
  /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/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
typed-enum.cc 18 typedef unsigned char byte; typedef
20 enum byte_enum : byte enum
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
typed-enum.cc 18 typedef unsigned char byte; typedef
20 enum byte_enum : byte enum
  /src/common/dist/zlib/contrib/puff/
bin-writer.c 19 unsigned char byte = (unsigned char)strtol(hexStr, &endptr, 16); local
20 fwrite(&byte, 1, 1, stdout);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
watchpoint-reuse-slot.c 20 char byte[12]; member in union:aligned_buf
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
watchpoint-reuse-slot.c 20 char byte[12]; member in union:aligned_buf
  /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/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/external/gpl3/gdb.old/dist/gdb/dwarf2/
leb.c 36 unsigned char byte; local
43 byte = bfd_get_8 (abfd, buf);
46 result |= ((ULONGEST) (byte & 127) << shift);
47 if ((byte & 128) == 0)
63 unsigned char byte; local
70 byte = bfd_get_8 (abfd, buf);
73 result |= ((ULONGEST) (byte & 127) << shift);
75 if ((byte & 128) == 0)
80 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
  /src/external/gpl3/gdb.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/gdb/dist/gdb/dwarf2/
leb.c 36 unsigned char byte; local
43 byte = bfd_get_8 (abfd, buf);
46 result |= ((ULONGEST) (byte & 127) << shift);
47 if ((byte & 128) == 0)
63 unsigned char byte; local
70 byte = bfd_get_8 (abfd, buf);
73 result |= ((ULONGEST) (byte & 127) << shift);
75 if ((byte & 128) == 0)
80 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
  /src/external/gpl3/gdb/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...]
  /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) {}

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>