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

1234567

/external/elfutils/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/
H A Dinet_ntoa.cc11 static uint8_t GetByte(const void* addr, int byte) { argument
13 return static_cast<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/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.h33 typedef unsigned char byte; typedef in namespace:disasm
44 virtual const char* NameOfAddress(byte* addr) const;
45 virtual const char* NameOfConstant(byte* addr) const;
46 virtual const char* NameInCode(byte* addr) const;
63 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
67 int ConstantPoolSizeAt(byte* instruction);
71 static void Disassemble(FILE* f, byte* begin, byte* end);
H A Dregexp-macro-assembler-irregexp-inl.h28 // A light-weight assembler for the Irregexp byte code.
43 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte, argument
45 uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte);
/external/v8/src/
H A Ddisasm.h33 typedef unsigned char byte; typedef in namespace:disasm
44 virtual const char* NameOfAddress(byte* addr) const;
45 virtual const char* NameOfConstant(byte* addr) const;
46 virtual const char* NameInCode(byte* addr) const;
63 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
67 int ConstantPoolSizeAt(byte* instruction);
71 static void Disassemble(FILE* f, byte* begin, byte* end);
H A Dregexp-macro-assembler-irregexp-inl.h28 // A light-weight assembler for the Irregexp byte code.
43 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte, argument
45 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/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/dhcpcd/compat/
H A Dlinkaddr.c59 int byte = 0, state = NAMING; local
91 *cp++ = byte;
95 byte = newaddr;
99 byte = newaddr + (byte << 4);
103 *cp++ = byte;
104 byte = 0;
108 *cp++ = byte;
/external/elfutils/libcpu/
H A Di386_parse.y99 /* The byte encoding. */
234 %type <bit> bit byte bytes
387 bytes: bytes ',' byte
397 | byte
404 byte: byte bit label
1262 /* We must always count the mod/rm byte. */
1275 /* Now create the mask and byte values. */
1276 uint8_t byte = 0;
1284 byte
[all...]
/external/marisa-trie/tests/
H A Dio-test.cc60 char byte; local
61 EXCEPT(reader.read(&byte), MARISA_IO_ERROR);
77 char byte; local
78 EXCEPT(mapper.map(&byte), MARISA_IO_ERROR);
89 char byte; local
90 EXCEPT(reader.read(&byte), MARISA_IO_ERROR);
139 char byte; local
140 EXCEPT(reader.read(&byte), MARISA_IO_ERROR);
187 char byte; local
188 EXCEPT(reader.read(&byte), MARISA_IO_ERRO
220 char byte; local
[all...]
/external/marisa-trie/v0_1_5/tests/
H A Dio-test.cc61 char byte; local
62 EXCEPT(reader.read(&byte), MARISA_ALPHA_IO_ERROR);
78 char byte; local
79 EXCEPT(mapper.map(&byte), MARISA_ALPHA_IO_ERROR);
90 char byte; local
91 EXCEPT(reader.read(&byte), MARISA_ALPHA_IO_ERROR);
140 char byte; local
141 EXCEPT(reader.read(&byte), MARISA_ALPHA_IO_ERROR);
188 char byte; local
189 EXCEPT(reader.read(&byte), MARISA_ALPHA_IO_ERRO
221 char byte; local
[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/net/base/
H A Ddnsrr_resolver_unittest.cc202 unsigned byte = bit_to_corrupt >> 3; local
206 copy[byte] ^= (1 << bit);
/external/chromium_org/net/quic/
H A Dquic_fec_group_test.cc56 uint8 byte = i > strlen(kData[packet]) ? 0x00 : kData[packet][i]; local
57 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:__anon18786
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:__anon18787
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
/external/chromium_org/media/mp4/
H A Des_descriptor.cc11 // 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/remoting/host/posix/
H A Dsignal_handler.cc69 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/sdch/open-vcdiff/src/
H A Djsonwriter.cc89 void JSONCodeTableWriter::Run(size_t size, unsigned char byte) { argument
91 output_.append(string(size, byte).data(), size);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStream.h29 // Type definitions for the byte stream data
63 void append(unsigned char byte) { m_data.append(byte); } argument

Completed in 1443 milliseconds

1234567