HomeSort by relevance Sort by last modified time
    Searched defs:byte (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/elfutils/0.153/libasm/
asm_adduleb128.c 57 uint32_t byte; local
61 byte = num & 0x7f;
65 /* This is the last byte. */
68 *dest++ = byte | 0x80;
71 *dest++ = byte;
asm_addsleb128.c 57 uint32_t byte; local
61 byte = 0;
65 byte = num & 0x7f;
69 /* This is the last byte. */
72 *dest++ = byte | 0x80;
75 *dest++ = byte;
  /external/libunwind/src/mi/
_ReadSLEB.c 7 unw_word_t byte, result = 0; local
12 byte = *bp++;
13 result |= (byte & 0x7f) << shift;
15 if ((byte & 0x80) == 0)
19 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0)
_ReadULEB.c 7 unw_word_t byte, result = 0; local
12 byte = *bp++;
13 result |= (byte & 0x7f) << shift;
14 if ((byte & 0x80) == 0)
  /external/chromium_org/sync/internal_api/public/base/
node_ordinal.cc 38 const uint8 byte = s[l - i - 1]; local
39 y |= static_cast<uint64>(byte) << (i * 8);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
basics.h 8 typedef unsigned char byte; typedef
  /external/chromium_org/media/formats/webm/
webm_webvtt_parser.cc 30 bool WebMWebVTTParser::GetByte(uint8* byte) {
34 *byte = *ptr_++;
62 uint8 byte; local
64 if (!GetByte(&byte) || byte == kLF)
67 if (byte == kCR) {
68 if (GetByte(&byte) && byte != kLF)
74 line->push_back(byte);
  /external/chromium_org/v8/src/
disasm.h 10 typedef unsigned char byte; typedef in namespace:disasm
21 virtual const char* NameOfAddress(byte* addr) const;
22 virtual const char* NameOfConstant(byte* addr) const;
23 virtual const char* NameInCode(byte* addr) const;
40 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
44 int ConstantPoolSizeAt(byte* instruction);
48 static void Disassemble(FILE* f, byte* begin, byte* end);
  /external/libvorbis/doc/
02-bitpacking.tex 21 In most contemporary architectures, a 'byte' is synonymous with an
24 purposes of the bitpacking convention, a byte implies the native,
32 The most ubiquitous architectures today consider a 'byte' to be an
35 convention is still well defined for any native byte size; Vorbis uses
37 that a byte is one octet for purposes of example.
41 A byte has a well-defined 'least significant' bit (LSb), which is the
42 only bit set when the byte is storing the two's complement integer
43 value +1. A byte's 'most significant' bit (MSb) is at the opposite
44 end of the byte. Bits in a byte are numbered from zero at the LSb t
    [all...]
  /external/chromium_org/net/quic/
quic_fec_group_test.cc 55 uint8 byte = i > strlen(kData[packet]) ? 0x00 : kData[packet][i]; local
56 redundancy[i] = redundancy[i] ^ byte;
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_leb128.h 24 uint8_t byte; local
27 byte = encoding_[cursor_++];
28 value |= static_cast<uint32_t>(byte & 127) << shift;
30 } while (byte & 128);
50 uint8_t byte; local
53 byte = encoding_[cursor_++];
54 value |= (static_cast<ssize_t>(byte & 127) << shift);
56 } while (byte & 128);
58 if (shift < size && (byte & 64))
  /external/chromium_org/third_party/leveldatabase/src/util/
comparator.cc 57 const uint8_t byte = (*key)[i]; local
58 if (byte != static_cast<uint8_t>(0xff)) {
59 (*key)[i] = byte + 1;
  /external/chromium_org/tools/gn/
location.h 16 Location(const InputFile* file, int line_number, int char_offset, int byte);
21 int byte() const { return byte_; } function in class:Location
  /external/chromium_org/tools/relocation_packer/src/
leb128.cc 19 // length. The least significant 7 bits of each byte hold 7 bits of data,
20 // and the most significant bit is set on each byte except the last.
23 const uint8_t byte = value & 127; local
25 encoding_.push_back((value ? 128 : 0) | byte);
45 // a byte without its most significant bit is found, then read the 7 bit
51 uint8_t byte; local
53 // Loop until we reach a byte with its high order bit clear.
55 byte = encoding_[cursor_++];
56 value |= static_cast<ELF::Xword>(byte & 127) << shift;
58 } while (byte & 128)
    [all...]
sleb128.cc 20 // length. The least significant 7 bits of each byte hold 7 bits of data,
21 // and the most significant bit is set on each byte except the last. The
32 uint8_t byte = value & 127;
39 // The sign bit of byte is second high order bit.
40 const bool sign_bit = byte & 64;
44 byte |= 128;
45 encoding_.push_back(byte);
72 uint8_t byte; local
74 // Loop until we reach a byte with its high order bit clear.
76 byte = encoding_[cursor_++]
    [all...]
  /external/elfutils/0.153/libcpu/
i386_parse.y 100 /* The byte encoding. */
235 %type <bit> bit byte bytes
388 bytes: bytes ',' byte
398 | byte
405 byte: byte bit label
1267 /* We must always count the mod/rm byte. */
1282 /* Now create the mask and byte values. */
1283 uint8_t byte = 0;
1291 byte = (byte << 1) | b->value
    [all...]
  /external/iproute2/lib/
dnet_ntop.c 11 u_int8_t byte[2]; member in union:__anon1971
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
dnet_pton.c 11 u_int8_t byte[2]; member in union:__anon1972
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
  /external/ltrace/sysdeps/linux-gnu/x86/
plt.c 123 uint8_t byte; local
124 if (elf_read_next_u8(lte->plt_data, &offset, &byte) < 0
125 || byte != 0xff
126 || elf_read_next_u8(lte->plt_data, &offset, &byte) < 0
127 || (byte != 0xa3 && byte != 0x25))
133 if (elf_read_next_u8(lte->plt_data, &offset, &byte) < 0
134 || byte != 0x68
  /external/chromium_org/media/formats/mp4/
es_descriptor.cc 11 // The MSB of a byte indicates if there are more bytes for the size.
14 uint8 byte; local
20 RCHECK(reader->ReadBits(7, &byte));
21 *size = (*size << 7) + byte;
  /external/chromium_org/media/midi/
usb_midi_output_stream.cc 44 DVLOG(1) << "Unknown byte: " << static_cast<unsigned int>(first_byte);
91 uint8 byte = Get(data, index); local
92 if ((byte & kSysRTMessageBitMask) == kSysRTMessageBitPattern) {
98 message[message_size] = byte;
100 if (byte == kEndOfSysExByte) {
  /external/chromium_org/remoting/host/posix/
signal_handler.cc 69 char byte = signal; local
70 int r ALLOW_UNUSED = write(g_write_fd, &byte, 1);
75 // RegisterSignalHandler registers a signal handler that writes a byte to a
83 CHECK(signal_number < 256); // Don't want to worry about multi-byte writes.
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.cpp 46 int byte = 0; local
56 bytes[byte] = decoded;
62 byte++;
65 if (byte == 0)
67 if (byte == 4)
70 if (byte < 2)
73 if (byte == 2)
76 } while (byte < 4);
SkPathUtils.cpp 33 int byte = x >> 3; local
36 return buffer[byte] & (128 >> bit);
  /external/llvm/lib/Support/
DataExtractor.cpp 138 uint8_t byte = 0; local
141 byte = Data[offset++];
142 result |= uint64_t(byte & 0x7f) << shift;
144 if ((byte & 0x80) == 0)
159 uint8_t byte = 0; local
162 byte = Data[offset++];
163 result |= uint64_t(byte & 0x7f) << shift;
165 if ((byte & 0x80) == 0)
169 // Sign bit of byte is 2nd high order bit (0x40)
170 if (shift < 64 && (byte & 0x40)
    [all...]

Completed in 605 milliseconds

1 2 3 4 5 6