Searched defs:byte (Results 151 - 175 of 204) sorted by relevance

123456789

/external/chromium_org/sdch/open-vcdiff/src/
H A Dvcdecoder.cc55 // Win_Indicator - byte
62 // Delta_Indicator - byte
240 void RunByte(unsigned char byte, size_t size);
280 // The index in decoded_target at which the first byte of the current
546 // The VCDIFF version byte (also known as "header4") from the
587 // Contains the byte position within decoded_target_ of the first data that
656 // Header1 - byte = 0xD6 (ASCII 'V' | 0x80)
657 // Header2 - byte = 0xC3 (ASCII 'C' | 0x80)
658 // Header3 - byte = 0xC4 (ASCII 'D' | 0x80)
659 // Header4 - byte
1125 RunByte(unsigned char byte, size_t size) argument
[all...]
H A Dvcdiffengine_test.cc66 // This makes testing simpler, because finding a block_size-byte match
92 void ExpectByte(char byte) { argument
94 EXPECT_EQ(byte, diff_[verify_position_]);
130 void ExpectDataByte(char byte) { argument
131 ExpectByte(byte);
164 void ExpectInstructionByte(char byte) { argument
165 ExpectByte(byte);
173 void ExpectAddressByte(char byte) { argument
174 ExpectByte(byte);
/external/chromium_org/third_party/skia/src/core/
H A DSkStream.cpp54 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/compiler-rt/lib/asan/
H A Dasan_report.cc58 const char *ShadowByte(u8 byte) { argument
59 switch (byte) {
93 u8 byte, const char *after = "\n") {
95 str->append("%s%s%x%x%s%s", before, d.ShadowByte(byte), byte >> 4, byte & 15,
115 "Shadow byte legend (one shadow byte represents %d "
454 str.append(" %zu-byte region [%p,%p)\n", chunk.UsedSize(),
863 // If we are accessing 16 bytes, look at the second shadow byte
92 PrintShadowByte(InternalScopedString *str, const char *before, u8 byte, const char *after = �) argument
[all...]
/external/elfutils/0.153/libcpu/
H A Di386_data.h393 //uint_fast8_t byte = d->data[d->opoff2 / 8] & 7;
394 uint_fast8_t byte = modrm & 7; local
401 needed = snprintf (buf, avail, "%%%s", dregs[byte]);
403 needed = snprintf (buf, avail, "%%mm%" PRIxFAST8, byte);
423 //uint_fast8_t byte = data[opoff2 / 8] & 7;
424 uint_fast8_t byte = modrm & 7; local
429 byte);
779 int8_t byte = *(*d->param_start)++;
782 (int64_t) byte);
785 (int32_t) byte);
916 uint_fast8_t byte = d->data[d->opoff1 / 8]; local
1112 uint_fast8_t byte = modrm & 7; local
1137 uint_fast8_t byte = modrm & 7; local
1160 uint_fast8_t byte = d->data[d->opoff1 / 8]; local
1214 uint_fast8_t byte = d->data[d->opoff1 / 8]; local
1354 uint_fast8_t byte = d->data[d->opoff1 / 8]; local
1374 uint_fast8_t byte = d->data[d->opoff1 / 8]; local
1404 uint_fast8_t byte = d->data[d->opoff1 / 8]; local
[all...]
H A Di386_disasm.c399 /* 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
[all...]
/external/libmtp/src/
H A Dlibusb-glue.c795 * 3. REPEAT send 0x10000 byte chunks UNTIL remaining bytes < 0x10000
872 // want to discard extra byte
876 printf("<==USB IN\nDiscarding extra byte\n");
1356 /* Ignore reading one extra byte if device flags have been set */
1389 printf("Reading in extra terminating byte\n");
1391 // need to read in extra byte and discard it
1393 char byte = 0; local
1394 result = USB_BULK_READ(ptp_usb->handle, ptp_usb->inep, &byte, 1, ptp_usb->timeout);
1397 printf("Could not read in extra byte for PTP_USB_BULK_HS_MAX_PACKET_LEN_READ long file, return value 0x%04x\n", result);
/external/libpcap/
H A Dpcap-sita.c755 char byte; local
759 recv(fd, &byte, 1, 0); /* read another byte in */
761 *errbuf++ = byte; /* stick it in */
764 if (byte == '\0') {
/external/ltrace/
H A Dltrace-elf.c274 debug(1, "Not enough data to read %"PRId64"-byte value"
335 uint8_t byte; local
336 if (elf_read_next_u8(data, offset, &byte) < 0)
339 uint8_t payload = byte & 0x7f;
342 if (shift > size && byte != 0x1)
344 if ((byte & 0x80) == 0)
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c180 * If 1, the repeated match has length of one byte. Otherwise
308 /* Return true if at least one byte can be written into the dictionary. */
315 * Get a byte from the dictionary at the given distance. The distance is
331 * Put one byte into the dictionary. It is assumed that there is space for it.
333 static inline void dict_put(struct dictionary *dict, uint8_t byte) argument
335 dict->buf[dict->pos++] = byte;
447 * read already. (Yes, the first byte gets completely ignored.)
477 /* Read the next input byte if needed. */
580 /* Decode a literal (one 8-bit byte) */
940 * LZMA2 control byte
[all...]
/external/skia/src/core/
H A DSkScalerContext.cpp527 static inline int convert_8_to_1(unsigned byte) { argument
528 SkASSERT(byte <= 0xFF);
529 return byte >> 7;
H A DSkStream.cpp52 uint8_t byte; local
53 if (!this->read(&byte, 1)) {
56 if (SK_BYTE_SENTINEL_FOR_U16 == byte) {
58 } else if (SK_BYTE_SENTINEL_FOR_U32 == byte) {
61 return byte;
/external/tcpdump/
H A Daddrtoname.c176 register u_int byte; local
186 byte = addr & 0xff;
187 *--cp = byte % 10 + '0';
188 byte /= 10;
189 if (byte > 0) {
190 *--cp = byte % 10 + '0';
191 byte /= 10;
192 if (byte > 0)
193 *--cp = byte + '0';
207 * is assumed to be in network byte orde
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_s390_helpers.c650 /* The function looks at the first byte of an UTF-8 character and returns
662 s390_do_cu12_cu14_helper1(UInt byte, UInt etf3_and_m3_is_1) argument
664 vassert(byte <= 0xff);
667 if (byte >= 0x80 && byte <= 0xbf) return 1;
668 if (byte >= 0xf8) return 1;
671 if (byte == 0xc0 || byte == 0xc1) return 1;
672 if (byte >= 0xf5 && byte <
[all...]
/external/valgrind/main/coregrind/m_scheduler/
H A Dscheduler.c772 /* ppc guest_state vector regs must be 16 byte aligned for
784 /* arm guest_state VFP regs must be 8 byte aligned for
1492 UChar byte = ((UChar *)addr)[0]; local
1493 UInt insn_length = ((((byte >> 6) + 1) >> 1) + 1) << 1;
/external/valgrind/main/coregrind/
H A Dm_signals.c1716 UChar byte = ((UChar *)addr)[0]; local
1717 Int insn_length = ((((byte >> 6) + 1) >> 1) + 1) << 1;
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-common-private.hh74 Tag tag; /* 4-byte Tag identifier */
1132 unsigned int byte = deltaValue[s >> (4 - f)]; local
1133 unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f)));
/external/chromium_org/third_party/icu/source/common/
H A Ducnvmbcs.c17 * of conversion code from multi-byte codepages to Unicode and back.
21 * - efficient distinction of unassigned vs. illegal byte sequences
25 * to a single zero byte (but not as a fallback except for SBCS)
28 * - byte sequences must not have leading zero bytes
29 * - except for SBCS codepages: no fallback mapping from Unicode to a zero byte
103 * writing instead of reading the byte values.
112 * and lookups from UTF-8 byte sequences with a natural bit distribution.
118 * byte offset to it.
131 * - new data structure for single-byte fromUnicode
135 * - stage 2 for non-single-byte codepage
5498 ucnv_MBCSIsLeadByte(UConverterSharedData *sharedData, char byte) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dwbnf.cpp49 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(){
/external/chromium_org/third_party/libwebp/demux/
H A Ddemux.c149 const uint8_t byte = mem->buf_[mem->start_]; local
151 return byte;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_shader.c520 unsigned i, byte; local
539 for (byte = 0 ; byte < 4; byte++) {
541 (bytes[bytes_read++] << (byte * 8));
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_socket.c3164 uint8_t byte, low, high; local
3166 byte = (uint8_t)packet[i];
3167 high = byte / 16;
3168 low = byte % 16;
/external/chromium_org/third_party/webrtc/modules/media_file/source/
H A Davi_file.cc32 // chunk, ckData is a 4-byte value giving the size of the data in
448 //Pad one byte, to WORD align.
524 // on 2 byte boundaries.
572 // on 2 byte boundaries.
581 // The size is in bytes but chunks are aligned on 2 byte boundaries.
815 0x800 // 2048 byte alignment
1142 size_t AviFile::PutByte(uint8_t byte) argument
1144 return fwrite(&byte, sizeof(uint8_t), sizeof(uint8_t),
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-common-private.hh74 Tag tag; /* 4-byte Tag identifier */
1132 unsigned int byte = deltaValue[s >> (4 - f)]; local
1133 unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f)));
/external/icu/icu4c/source/common/
H A Ducnvmbcs.c17 * of conversion code from multi-byte codepages to Unicode and back.
21 * - efficient distinction of unassigned vs. illegal byte sequences
25 * to a single zero byte (but not as a fallback except for SBCS)
28 * - byte sequences must not have leading zero bytes
29 * - except for SBCS codepages: no fallback mapping from Unicode to a zero byte
103 * writing instead of reading the byte values.
112 * and lookups from UTF-8 byte sequences with a natural bit distribution.
118 * byte offset to it.
131 * - new data structure for single-byte fromUnicode
135 * - stage 2 for non-single-byte codepage
5498 ucnv_MBCSIsLeadByte(UConverterSharedData *sharedData, char byte) argument
[all...]

Completed in 8527 milliseconds

123456789