/external/elfutils/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/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/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 | 33 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);
|
/external/srec/portable/src/ |
pcrc.c | 127 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/v8/src/ |
disasm.h | 33 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);
|
/frameworks/compile/mclinker/lib/Support/ |
LEB128.cpp | 20 ByteType byte = pValue & 0x7f; local 23 byte |= 0x80; 24 *pBuf++ = byte; 72 ByteType byte = pValue & 0x7f; local 75 if (((pValue == 0) && ((byte & 0x40) == 0)) || 76 ((pValue == -1) && ((byte & 0x40) == 0x40))) 79 byte |= 0x80; 81 *pBuf++ = byte; 122 ByteType byte; local 124 // Start the read from the 4th byte 141 ByteType byte; local 190 ByteType byte; local 211 ByteType byte; local [all...] |
/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/net/base/ |
dnsrr_resolver_unittest.cc | 202 unsigned byte = bit_to_corrupt >> 3; local 206 copy[byte] ^= (1 << bit);
|
/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/dhcpcd/compat/ |
linkaddr.c | 59 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/ |
i386_parse.y | 99 /* 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 = (byte << 1) | b->value [all...] |
/external/iproute2/lib/ |
dnet_ntop.c | 11 u_int8_t byte[2]; member in union:__anon19377 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:__anon19378 16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
|
/external/marisa-trie/tests/ |
io-test.cc | 60 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_ERROR) 220 char byte; local [all...] |
/external/marisa-trie/v0_1_5/tests/ |
io-test.cc | 61 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_ERROR) 221 char byte; local [all...] |
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
bitstream_io.cpp | 75 /* Purpose : Save the current_word into the buffer, byte-swap, and */ 85 uint8 *write_pnt, byte; local 88 /* check number of bytes in current_word, must always be byte-aligned!!!! */ 99 /* write word, byte-by-byte */ 105 byte = (current_word >> num_bits) & 0xFF; 106 if (byte != 0) 108 *write_pnt++ = byte; 115 *write_pnt++ = byte; 251 /* check whether it's byte-aligned * [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_byte_stream.c | 56 Extracts one NAL unit from the byte stream buffer. Removes 62 and nothing else, or one or more NAL units embedded in byte 67 pByteStream pointer to byte stream buffer 76 HANTRO_NOK error in byte stream 89 u8 byte; local 101 /* byte stream format if starts with 0x000001 or 0x000000 */ 112 byte = *readPtr++; 122 if (!byte) 124 else if ((byte == 0x01) && (zeroCount >= 2)) 138 byte = *readPtr++ [all...] |
h264bsd_stream.c | 142 u32 byte = (u32)pStrm[4]; local 145 out |= byte>>tmp; 215 Check if current stream position is byte aligned. 224 TRUE stream is byte aligned 225 FALSE stream is not byte aligned
|
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/ |
qtypes.h | 78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
qtypes.h | 78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
|
/ndk/sources/cxx-stl/gabi++/src/ |
dwarf_helper.cc | 59 unsigned char byte; local 62 byte = *p++; 63 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; 65 } while (byte & 0x80); 73 unsigned char byte; local 76 byte = *p++; 77 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; 79 } while (byte & 0x80); 81 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
|
/external/chromium_org/media/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;
|