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

1 2 3 4 5

  /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/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/chromium/net/base/
dnsrr_resolver_unittest.cc 202 unsigned byte = bit_to_corrupt >> 3; local
206 copy[byte] ^= (1 << bit);
  /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:__anon7341
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:__anon7342
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);
  /external/llvm/include/llvm-c/
EnhancedDisassembly.h 44 @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.
  /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/vidc/vdec/inc/
qtypes.h 78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
  /external/llvm/lib/Support/
DataExtractor.cpp 138 uint8_t byte = 0; local
141 byte = Data[offset++];
142 result |= (byte & 0x7f) << shift;
144 if ((byte & 0x80) == 0)
159 uint8_t byte = 0; local
162 byte = Data[offset++];
163 result |= (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...]
  /external/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);
  /frameworks/compile/linkloader/include/
ELFTypes.h 124 typedef unsigned char byte; typedef in struct:ELFPrimitiveTypes
145 typedef unsigned char byte; typedef in struct:ELFPrimitiveTypes
186 typedef typename ELFPrimitiveTypes<BITWIDTH>::byte byte_t; \
204 typedef ELFPrimitiveTypes<BITWIDTH>::byte byte_t; \
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_macros.h 415 /* 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/qemu/
cpus.c 108 static const char byte = 0; local
113 write(io_thread_fd, &byte, sizeof(byte));
  /external/quake/quake/src/WinQuake/
common.h 23 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/valgrind/main/none/tests/s390x/
clcl.c 81 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, 1, 11); // first operand hig
    [all...]
  /external/yaffs2/yaffs2/
yaffs_ecc.c 21 * The ECC can correct single bit errors in a 256-byte page of data. Thus, two such ECC
22 * blocks are used on a 512-byte NAND page.
28 * for each byte of data. These are instead provided in a table in bits7..2.
99 /* Calculate the ECC for a 256-byte block of data */
114 if (b & 0x01) // odd number of bits in the byte
171 /* Correct the ECC on a 256 byte block of data */
190 unsigned byte; local
202 bit = byte = 0;
205 byte |= 0x80;
207 byte |= 0x40
    [all...]
  /frameworks/av/media/libstagefright/
DataSource.cpp 51 uint8_t byte[2]; local
52 if (readAt(offset, byte, 2) != 2) {
56 *x = (byte[0] << 8) | byte[1];
  /gdk/samples/quake/jni/
common.h 23 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);

Completed in 456 milliseconds

1 2 3 4 5