Searched defs:byte (Results 1 - 25 of 204) sorted by relevance

123456789

/external/elfutils/0.153/libasm/
H A Dasm_adduleb128.c57 uint32_t byte; local
61 byte = num & 0x7f;
65 /* This is the last byte. */
68 *dest++ = byte | 0x80;
71 *dest++ = byte;
H A Dasm_addsleb128.c57 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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dinet_ntoa.c9 static uint8_t GetByte(const void* addr, int byte) { argument
11 return (uint8_t)buf[byte];
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dbasics.h8 typedef unsigned char byte; typedef
/external/libunwind/src/mi/
H A D_ReadSLEB.c7 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)
H A D_ReadULEB.c7 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/
H A Dnode_ordinal.cc38 const uint8 byte = s[l - i - 1]; local
39 y |= static_cast<uint64>(byte) << (i * 8);
/external/chromium_org/v8/src/
H A Ddisasm.h10 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);
H A Dregexp-macro-assembler-irregexp-inl.h5 // A light-weight assembler for the Irregexp byte code.
21 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte, argument
23 uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte);
/external/libvorbis/doc/
H A D02-bitpacking.tex21 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 ar
[all...]
/external/chromium_org/media/formats/webm/
H A Dwebm_webvtt_parser.cc30 bool WebMWebVTTParser::GetByte(uint8* byte) { argument
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/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_leb128.h24 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/tools/gn/
H A Dlocation.cc20 int byte)
24 byte_(byte) {
17 Location(const InputFile* file, int line_number, int char_offset, int byte) argument
H A Dlocation.h16 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/
H A Dleb128.cc19 // 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
[all...]
H A Dsleb128.cc20 // 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
[all...]
/external/elfutils/0.153/libcpu/
H A Di386_parse.y100 /* 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
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_utf.cpp17 void CFX_UTF8Decoder::Input(FX_BYTE byte) argument
19 if (byte < 0x80) {
21 m_Buffer.AppendChar(byte);
22 } else if (byte < 0xc0) {
27 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
31 } else if (byte < 0xe0) {
33 m_PendingChar = (byte & 0x1f) << 6;
34 } else if (byte < 0xf0) {
36 m_PendingChar = (byte & 0x0f) << 12;
37 } else if (byte <
[all...]
/external/qemu/util/
H A Dunicode.c25 * If @n is zero or @s points to a zero byte, the sequence is invalid,
28 * If @s points to an impossible byte (0xFE or 0xFF) or a continuation
29 * byte, the sequence is invalid, and @end is set to @s + 1
31 * Else, the first byte determines how many continuation bytes are
50 unsigned byte, mask, len, i; local
60 byte = *p++;
61 if (byte < 0x80) {
62 cp = byte; /* one byte sequence */
63 } else if (byte >
[all...]
/external/srec/portable/src/
H A Dpcrc.c127 register unsigned char byte; local
136 byte = (unsigned char)((remainder >> (WIDTH - 8)) ^ *p++);
137 remainder = crcTable[byte] ^(remainder << 8);
139 byte = (unsigned char)(((remainder >> (WIDTH - 8)) ^(*p >> 8)) & 0xFF);
140 remainder = crcTable[byte] ^(remainder << 8);
141 byte = (unsigned char)(((remainder >> (WIDTH - 8)) ^(*p++ & 0xFF)) & 0xFF);
142 remainder = crcTable[byte] ^(remainder << 8);
/external/chromium_org/net/quic/
H A Dquic_fec_group_test.cc55 uint8 byte = i > strlen(kData[packet]) ? 0x00 : kData[packet][i]; local
56 redundancy[i] = redundancy[i] ^ byte;
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcomparator.cc57 const uint8_t byte = (*key)[i]; local
58 if (byte != static_cast<uint8_t>(0xff)) {
59 (*key)[i] = byte + 1;
/external/iproute2/lib/
H A Ddnet_ntop.c11 u_int8_t byte[2]; member in union:__anon22412
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
H A Ddnet_pton.c11 u_int8_t byte[2]; member in union:__anon22413
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
/external/ltrace/sysdeps/linux-gnu/x86/
H A Dplt.c123 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

Completed in 940 milliseconds

123456789