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

12345

/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/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/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/llvm/include/llvm-c/
H A DEnhancedDisassembly.h44 @param byte A pointer whose target should be filled in with the data returned.
45 @param address The address of the byte to be read.
49 typedef int (*EDByteReaderCallback)(uint8_t *byte, uint64_t address, void *arg);
168 @param address The address of the first byte of the instruction.
449 @param byte A pointer whose target should be filled in with the data returned.
450 @param address The address of the byte to be read.
453 typedef int (^EDByteBlock_t)(uint8_t *byte, uint64_t address); variable
486 @param address The address of the first byte of the instruction.
/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);
H A Ddnssec_unittest.cc593 unsigned byte = bit_to_flip >> 3; local
595 copy[byte] ^= (1 << bit);
/external/iproute2/lib/
H A Ddnet_ntop.c11 u_int8_t byte[2]; member in union:__anon6915
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:__anon6916
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h415 /* extract a byte portably */
417 #define byte(x, n) ((unsigned char)((x) >> (8 * (n)))) macro
419 #define byte(x, n) (((x) >> (8 * (n))) & 255) macro
/external/llvm/lib/Support/
H A DDataExtractor.cpp138 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
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestbitmap.c37 { int i, j; Uint8 *buf, byte; local
39 byte = *buf;
42 *buf |= (byte&0x01)<<j;
43 byte >>= 1;
/external/quake/quake/src/WinQuake/
H A Dcommon.h23 typedef unsigned char byte; typedef
43 byte *data;
71 #define STRUCT_FROM_LINK(l,t,m) ((t *)((byte *)l - (int)&(((t *)0)->m)))
180 byte *COM_LoadStackFile (const char *path, void *buffer, int bufsize);
181 byte *COM_LoadTempFile (const char *path);
182 byte *COM_LoadHunkFile (const char *path);
/external/skia/src/utils/
H A DSkBase64.cpp46 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);
/external/valgrind/main/none/tests/s390x/
H A Dclcl.c81 assert((pad & 0xFF) == pad); /* an 8-byte value */
103 printf("FAIL: pad byte modified (unused bits 0)\n");
121 printf("FAIL: pad byte modified (unused bits 1)\n");
155 uint8_t byte, byte1, byte2; local
173 /* Test 3: Compare a single byte against the pad byte */
175 byte = 10;
176 run_test(NULL, 0, &byte, 1, 10); // equal
177 run_test(NULL, 0, &byte, 1, 9); // first operand low
178 run_test(NULL, 0, &byte,
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHexNumber.h44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase) argument
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
52 inline void placeByteAsHexCompressIfPossible(unsigned char byte, T& destination, unsigned& index, HexConversionMode mode = Uppercase) argument
55 if (byte >= 0x10)
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase) argument
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGPathByteStream.h30 // Type definitions for the byte stream data
64 void append(unsigned char byte) { m_data.append(byte); } argument
/external/chromium/sdch/open-vcdiff/src/
H A Dencodetable.cc113 // being added, and so save a byte of space. In that case, the
245 void VCDiffCodeTableWriter::Run(size_t size, unsigned char byte) { argument
247 data_for_add_and_run_->push_back(byte);
/external/icu4c/tools/toolutil/
H A Dunewdata.c194 udata_write8(UNewDataMemory *pData, uint8_t byte) { argument
196 T_FileStream_write(pData->file, &byte, 1);
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_main.c428 UINT8 byte; local
537 /* Read one byte to see if there is anything waiting to be read */
538 if (USERIAL_Read (USERIAL_NFC_PORT, &byte, 1) == 0)
543 if (nfc_hal_nci_receive_msg (byte))
/external/qemu/
H A Dcpus.c108 static const char byte = 0; local
113 write(io_thread_fd, &byte, sizeof(byte));

Completed in 492 milliseconds

12345