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

1 2 3 4 5 6 7 8 91011>>

  /system/core/libziparchive/
entry_name_utils-inl.h 27 const uint8_t byte = entry_name[i]; local
28 if (byte == 0) {
30 } else if ((byte & 0x80) == 0) {
31 // Single byte sequence.
33 } else if ((byte & 0xc0) == 0x80 || (byte & 0xfe) == 0xfe) {
37 // 2-5 byte sequences.
38 for (uint8_t first = byte << 1; first & 0x80; first <<= 1) {
41 // Missing continuation byte..
46 // Invalid continuation byte
    [all...]
  /external/elfutils/libasm/
asm_adduleb128.c 58 uint32_t byte; local
62 byte = num & 0x7f;
66 /* This is the last byte. */
69 *dest++ = byte | 0x80;
72 *dest++ = byte;
asm_addsleb128.c 58 uint32_t byte; local
62 byte = 0;
66 byte = num & 0x7f;
70 /* This is the last byte. */
73 *dest++ = byte | 0x80;
76 *dest++ = byte;
  /external/libunwind/src/mi/
_ReadSLEB.c 7 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)
_ReadULEB.c 7 unw_word_t byte, result = 0; local
12 byte = *bp++;
13 result |= (byte & 0x7f) << shift;
14 if ((byte & 0x80) == 0)
  /external/vboot_reference/firmware/lib/cgptlib/
crc32.c 23 /* we hand it to the UART in the order low-byte to high-byte; the UART */
38 /* using byte-swap instructions. */
104 uint8_t *byte = (uint8_t *)buffer; local
109 value = crc32_tab[(value ^ byte[i]) & 0xff] ^ (value >> 8);
  /external/vulkan-validation-layers/libs/glm/gtx/
raw_data.hpp 54 //! Type for byte numbers.
56 typedef detail::uint8 byte; typedef in namespace:glm
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
raw_data.hpp 54 //! Type for byte numbers.
56 typedef detail::uint8 byte; typedef in namespace:glm
  /bionic/linker/
linker_sleb128.h 50 uint8_t byte; local
56 byte = *current_++;
57 value |= (static_cast<size_t>(byte & 127) << shift);
59 } while (byte & 128);
61 if (shift < size && (byte & 64)) {
  /external/clang/test/Sema/
inline-asm-validate-aarch64.c 6 uint8_t byte; local
8 __asm__ volatile("ldrb %0, [%1]" : "=r" (byte) : "r" (addr) : "memory");
13 return byte;
17 uint8_t byte; local
19 __asm__ volatile("ldrb %[s0], [%[s1]]" : [s0] "=r" (byte) : [s1] "r" (addr) : "memory");
24 return byte;
30 uint8_t byte; local
32 __asm__ volatile("ldrb "PERCENT"[s0], [%[s1]]" : [s0] "=r" (byte) : [s1] "r" (addr) : "memory");
37 return byte;
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper_unittest_helper.cc 62 uint8_t byte = 1; local
63 if (write(pipefd, &byte, sizeof(byte)) != sizeof(byte)) {
  /external/google-breakpad/src/processor/
exploitability.cc 101 uint8_t byte = (address >> (8*i)) & 0xff; local
102 if ((byte >= ' ' && byte <= '~') || byte == 0)
  /external/v8/src/
disasm.h 12 typedef unsigned char byte; typedef in namespace:disasm
23 virtual const char* NameOfAddress(byte* addr) const;
24 virtual const char* NameOfConstant(byte* addr) const;
25 virtual const char* NameInCode(byte* addr) const;
42 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
46 int ConstantPoolSizeAt(byte* instruction);
50 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;
118 ByteType byte; local
120 // Start the read from the 4th byte
137 ByteType byte; local
186 ByteType byte; local
207 ByteType byte; local
    [all...]
  /system/netd/libnetdutils/
Slice.cpp 25 // Convert one byte to a two character hexadecimal string
26 const std::string toHex(uint8_t byte) {
29 return {kLookup[byte >> 4], kLookup[byte & 0xf]};
43 uint8_t byte = 0; local
44 extract(tail, byte);
45 ss << toHex(byte);
  /toolchain/binutils/binutils-2.27/gold/
int_encoding.h 41 // encoded integer at the location PLEN. The common case of a single-byte
42 // value is handled inline, and multi-byte values are processed by the _x
43 // routine, where BYTE is the first byte of the value.
47 unsigned char byte);
52 unsigned char byte = *buffer++; local
54 if ((byte & 0x80) != 0)
55 return read_unsigned_LEB_128_x(buffer, plen, byte);
58 return static_cast<uint64_t>(byte);
62 // encoded integer at the location PLEN. The common case of a single-byte
73 unsigned char byte = *buffer++; local
    [all...]
  /toolchain/binutils/binutils-2.27/include/
leb128.h 50 Note: The result is an int instead of a pointer to the next byte to be
60 unsigned char byte; local
67 byte = *p++;
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
69 if ((byte & 0x80) == 0)
83 Note: The result is an int instead of a pointer to the next byte to be
93 unsigned char byte; local
100 byte = *p++;
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
103 if ((byte & 0x80) == 0
123 unsigned char byte; local
    [all...]
  /external/ImageMagick/coders/
cip.c 188 byte;
241 byte=(unsigned char)
246 (void) FormatLocaleString(buffer,MagickPathExtent,"%02x",byte);
253 byte=(unsigned char)
258 (void) FormatLocaleString(buffer,MagickPathExtent,"%02x",~byte);
183 byte; local
mac.c 119 byte,
177 byte=(unsigned char) (~ReadBlobByte(image));
181 *p++=byte;
191 byte=0;
195 byte=(*p++);
196 SetPixelIndex(image,((byte & 0x80) != 0 ? 0x01 : 0x00),q);
198 byte<<=1;
215 byte=(unsigned char) (~ReadBlobByte(image));
216 *p++=byte;
226 byte=0
117 byte, local
    [all...]
mono.c 119 byte;
169 byte=0;
173 byte=(size_t) ReadBlobByte(image);
175 SetPixelIndex(image,((byte & 0x01) != 0) ? 0x00 : 0x01,q);
177 SetPixelIndex(image,((byte & 0x01) != 0) ? 0x01 : 0x00,q);
181 byte>>=1;
305 byte;
335 byte=0;
338 byte>>=1;
342 byte|=0x80
116 byte; local
299 byte; local
    [all...]
rgf.c 127 byte,
200 byte=0;
204 byte=(size_t) (*p++);
205 SetPixelIndex(image,(Quantum) ((byte & 0x01) != 0 ? 0x01 : 0x00),q);
207 byte>>=1;
330 byte;
369 byte=0;
372 byte>>=1;
374 byte|=0x80;
379 Write a bitmap byte to the image file
124 byte, local
324 byte; local
    [all...]
  /external/elfutils/libcpu/
i386_parse.y 103 /* The byte encoding. */
238 %type <bit> bit byte bytes
391 bytes: bytes ',' byte
401 | byte
408 byte: byte bit label
1270 /* We must always count the mod/rm byte. */
1285 /* Now create the mask and byte values. */
1286 uint8_t byte = 0;
1294 byte = (byte << 1) | b->value
    [all...]
  /external/google-benchmark/test/
donotoptimize_test.cc 16 unsigned char &byte; member in struct:BitRef
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
  /external/iproute2/lib/
dnet_ntop.c 11 u_int8_t byte[2]; member in union:__anon22205
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:__anon22206
16 return ((u_int16_t)u.byte[0]) | (((u_int16_t)u.byte[1]) << 8);

Completed in 619 milliseconds

1 2 3 4 5 6 7 8 91011>>