HomeSort by relevance Sort by last modified time
    Searched defs:byte (Results 101 - 125 of 135) sorted by null

1 2 3 45 6

  /external/nanopb-c/
pb_decode.c 128 /* Read a single byte from input stream. buf may not be NULL.
170 uint8_t byte; local
173 if (!pb_readbyte(stream, &byte))
176 if ((byte & 0x80) == 0)
178 /* Quick case, 1 byte value */
179 result = byte;
185 result = byte & 0x7F;
192 if (!pb_readbyte(stream, &byte))
195 result |= (uint32_t)(byte & 0x7F) << bitpos;
197 } while (byte & 0x80)
206 uint8_t byte; local
228 uint8_t byte; local
    [all...]
  /art/runtime/
dex_file_verifier.cc 127 bool DexFileVerifier::Verify(const DexFile* dex_file, const byte* begin, size_t size,
178 const byte* range_start = reinterpret_cast<const byte*>(start);
179 const byte* file_start = reinterpret_cast<const byte*>(begin_);
192 const byte* range_end = range_start + count * elem_size;
193 const byte* file_end = file_start + size_;
204 bool DexFileVerifier::CheckList(size_t element_size, const char* label, const byte* *ptr) {
254 const byte* non_sum_ptr = reinterpret_cast<const byte*>(header_) + non_sum
824 uint8_t byte = *(ptr_++); local
    [all...]
  /dalvik/dexdump/
DexDump.cpp 106 case 'B': return "byte";
1619 int idx, addr, byte; local
    [all...]
  /external/android-clat/
clatd_test.cpp 376 // Hex dump, 20 bytes per line, one space between bytes (1 byte = 3 chars), indented by 4.
603 uint8_t *byte = ((uint8_t*) data) + pos; local
605 onebits += (*byte >> shift) & 1;
    [all...]
  /external/chromium_org/components/autofill/core/browser/
form_structure.cc 63 // There are |MAX_VALID_FIELD_TYPE| different field types and 8 bits per byte,
74 // |field_type| % 8 from the left of the byte.
75 const size_t byte = *field_type / 8; local
77 DCHECK(byte < bit_field.size());
78 bit_field[byte] |= bit;
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-common-private.hh 74 Tag tag; /* 4-byte Tag identifier */
1132 unsigned int byte = deltaValue[s >> (4 - f)]; local
    [all...]
  /external/chromium_org/third_party/libwebp/demux/
demux.c 149 const uint8_t byte = mem->buf_[mem->start_]; local
151 return byte;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkStream.cpp 54 uint8_t byte; local
55 if (!this->read(&byte, 1)) {
58 if (SK_BYTE_SENTINEL_FOR_U16 == byte) {
60 } else if (SK_BYTE_SENTINEL_FOR_U32 == byte) {
63 return byte;
  /external/elfutils/0.153/libcpu/
i386_disasm.c 399 /* We match a prefix byte. This is exactly one byte and
517 uint_fast8_t byte; local
520 byte = *begin;
521 /* This is a prefix byte. Print it. */
522 switch (byte)
560 if (byte != 0x40)
563 if (byte & 0x8)
565 if (byte & 0x4)
567 if (byte & 0x3
    [all...]
i386_parse.c 177 /* The byte encoding. */
688 "masks", "mask", "instrs", "instr", "bitfieldopt", "bytes", "byte",
2995 uint8_t byte = 0; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 74 Tag tag; /* 4-byte Tag identifier */
1132 unsigned int byte = deltaValue[s >> (4 - f)]; local
    [all...]
  /external/libmtp/src/
libusb-glue.c 795 * 3. REPEAT send 0x10000 byte chunks UNTIL remaining bytes < 0x10000
872 // want to discard extra byte
876 printf("<==USB IN\nDiscarding extra byte\n");
1393 char byte = 0; local
    [all...]
  /external/libpcap/
pcap-sita.c 755 char byte; local
759 recv(fd, &byte, 1, 0); /* read another byte in */
761 *errbuf++ = byte; /* stick it in */
764 if (byte == '\0') {
    [all...]
  /external/lldb/source/Core/
DataExtractor.cpp 322 // object refers to in greater than zero (if at least one byte was
365 // RETURNS the byte that was extracted, or zero on failure.
979 // Must have valid byte orders set in this object and for destination
1177 uint8_t byte = *src++; local
1214 uint8_t byte = 0; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 49 typedef char byte; typedef in class:Buffer_byte
50 byte * start;
51 byte * current;
52 int buffer_size; // size unit is byte
54 inline int content_size(){return current - start;} // size unit is byte
57 inline void expand(int add_size = 100){ // size unit is byte
61 start = (byte *) realloc(start, new_size); // may change the value of start
90 inline void append(const void * c, int size){ // size unit is byte
96 byte * buffer(){
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.c 520 unsigned i, byte; local
539 for (byte = 0 ; byte < 4; byte++) {
541 (bytes[bytes_read++] << (byte * 8));
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_win.cpp 381 SkAutoTDeleteArray<BYTE> glyphSetBuffer(new BYTE[glyphSetBufferSize]);
600 static BYTE compute_quality(const SkScalerContext::Rec& rec) {
1203 unsigned byte = 0; local
1217 unsigned byte = 0; local
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_socket.c 3164 uint8_t byte, low, high; local
    [all...]
  /external/jemalloc/src/
arena.c 1643 uint8_t *byte = (uint8_t *)((uintptr_t)ptr - i); local
1652 uint8_t *byte = (uint8_t *)((uintptr_t)ptr + size + i); local
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 378 unsigned char byte; local
382 byte = *p++;
383 result |= (byte & 0x7f) << shift;
386 while (byte & 0x80);
402 unsigned char byte; local
406 byte = *p++;
407 result |= (byte & 0x7f) << shift;
410 while (byte & 0x80);
414 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 3898 unsigned byte = fieldFromInstruction(Val, 8, 2); local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 520 unsigned i, byte; local
539 for (byte = 0 ; byte < 4; byte++) {
541 (bytes[bytes_read++] << (byte * 8));
    [all...]
  /external/chromium_org/v8/src/arm/
simulator-arm.cc 265 reinterpret_cast<byte*>(sim_->get_pc()));
412 byte* prev = NULL;
413 byte* cur = NULL;
414 byte* end = NULL;
417 cur = reinterpret_cast<byte*>(sim_->get_pc());
425 cur = reinterpret_cast<byte*>(value);
433 cur = reinterpret_cast<byte*>(sim_->get_pc());
442 cur = reinterpret_cast<byte*>(value1);
2807 uint8_t byte = ReadB(addr); local
2810 uint8_t byte = get_register(rd); local
    [all...]
  /external/chromium_org/v8/src/
globals.h 100 typedef uint8_t byte; typedef in namespace:v8::internal
101 typedef byte* Address;
419 byte* buffer;
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 609 // end_idx must be one past the last valid packet byte. Start
619 end_idx = idx + 1; // The command is one byte long...
632 // byte just past the end of this packet
2670 uint8_t byte = strtoul (hexbuf, NULL, 16); local
    [all...]

Completed in 3035 milliseconds

1 2 3 45 6