Searched defs:byte (Results 1 - 25 of 139) sorted by last modified time

123456

/external/zlib/src/contrib/iostream2/
H A Dzstream.h46 struct Val { unsigned char byte; size_t word; } val; member in struct:zstringlen::Val
130 zs > val.byte;
131 if (val.byte == 255) zs > val.word;
132 else val.word = val.byte;
278 val.byte = 255; val.word = ::strlen(x);
279 if (val.word < 255) zs < (val.byte = val.word);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c208 * Add a byte entry to the dict.
213 * @param value The byte value
397 * Add a byte array entry to the dict.
402 * @param value The byte array
403 * @param value_len The length of the byte array, in bytes
499 * Add a single byte array element to a string array dict entry
705 char byte; local
721 dbus_message_iter_get_basic(iter, &byte);
722 buffer[count] = byte;
727 wpa_hexdump_key(MSG_MSGDUMP, "dbus: byte arra
[all...]
/external/webp/src/demux/
H A Ddemux.c149 const uint8_t byte = mem->buf_[mem->start_]; local
151 return byte;
/external/vixl/src/vixl/
H A Dglobals.h62 typedef uint8_t byte; typedef
/external/valgrind/memcheck/tests/
H A Dsh-mem-random.c28 // For the byte 'x', build a value of 'size' bytes from that byte, eg:
37 U8 build(int size, U1 byte) argument
48 mask |= (U8)byte;
80 fprintf(stderr, "\n\nFAILURE: %s, byte %d -- "
88 printf("test passed, sum = %llu (%9.5f per byte)\n",
181 genuine 8-byte load/store to test the relevant memcheck
H A Dsh-mem.c29 // For the byte 'x', build a value of 'size' bytes from that byte, eg:
38 U8 build(int size, U1 byte) argument
49 mask |= (U8)byte;
64 // Check that all the bytes in a[x..y-1] have their V byte equal
77 fprintf(stderr, "\n\nFAILURE: %s, offset %d, byte %d -- "
150 /* For each of the 256 possible V byte values... */ \
/external/valgrind/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...]
H A Dmvcl.c82 assert((pad & 0xFF) == pad); /* an 8-byte value */
107 printf("FAIL: pad byte modified (unused bits 0)\n");
126 printf("FAIL: pad byte modified (unused bits 1)\n");
174 uint8_t byte, buf[10], small[5], i; local
188 run_test(&byte, 1, NULL, 0, 'a');
196 byte = 'x';
197 run_test(&byte, 1, &byte, 1, 'a');
225 Pad byte unused */
243 Pad byte use
[all...]
/external/vboot_reference/firmware/lib/cgptlib/
H A Dcrc32.c23 /* 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/valgrind/VEX/priv/
H A Dguest_s390_helpers.c652 /* The function looks at the first byte of an UTF-8 character and returns
664 s390_do_cu12_cu14_helper1(UInt byte, UInt etf3_and_m3_is_1) argument
666 vassert(byte <= 0xff);
669 if (byte >= 0x80 && byte <= 0xbf) return 1;
670 if (byte >= 0xf8) return 1;
673 if (byte == 0xc0 || byte == 0xc1) return 1;
674 if (byte >= 0xf5 && byte <
[all...]
H A Dguest_s390_toIR.c1131 /* Return the guest state offset of byte #6 of a gpr register. */
1138 /* Write byte #6 of a gpr to the guest state. */
1147 /* Read byte #6 of a gpr register. */
1154 /* Return the guest state offset of byte #3 of a gpr register. */
1161 /* Write byte #3 of a gpr to the guest state. */
1170 /* Read byte #3 of a gpr register. */
1177 /* Return the guest state offset of byte #0 of a gpr register. */
1184 /* Write byte #0 of a gpr to the guest state. */
1193 /* Read byte #0 of a gpr register. */
1246 /* Return the guest state offset of byte #
11110 IRTemp byte = newTemp(Ity_I8); local
11615 IRTemp byte = newTemp(Ity_I8); local
16573 UChar byte; local
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dd3basics.c351 UChar byte; local
357 byte = * data ++;
360 result |= ((ULong)(byte & 0x7f)) << shift;
365 while (byte & 0x80);
370 if (sign && (shift < 64) && (byte & 0x40))
1074 /* 11 byte block: 3 c0 b6 2b 0 0 0 0 0 23 4
1081 && p[1 + sizeof(Addr) + 1] < 0x80 /*1-byte ULEB*/) {
H A Dreaddwarf.c165 UChar byte; local
170 byte = ML_(cur_step_UChar)(data);
171 result |= ((ULong)(byte & 0x7f)) << shift;
174 while (byte & 0x80);
176 if (sign && (shift < 64) && (byte & 0x40))
2576 /* ------------ Pick apart DWARF2 byte streams ------------ */
H A Dreaddwarf3.c292 UChar byte; local
294 byte = get_UChar( c );
295 result = (ULong)(byte & 0x7f);
296 if (LIKELY(!(byte & 0x80))) return result;
300 byte = get_UChar( c );
301 result |= ((ULong)(byte & 0x7f)) << shift;
303 } while (byte & 0x80);
309 UChar byte; local
311 byte = get_UChar(c);
312 result |= ((ULong)(byte
734 UChar byte = get_UChar( &loc ); local
[all...]
H A Dreadexidx.c309 // |extra| has no meaning here; instead that byte is an unwind-info byte
503 UChar byte, shift = 0; local
505 GET_BUF_U8(byte);
506 offset |= (byte & 0x7f) << shift;
508 } while ((byte & 0x80) && buf < end);
982 // this one. Instead use the address of the last byte of the
/external/valgrind/coregrind/m_scheduler/
H A Dscheduler.c769 /* ppc guest_state vector regs must be 16 byte aligned for
781 /* arm guest_state VFP regs must be 8 byte aligned for
1546 UChar byte = ((UChar *)addr)[0]; local
1547 UInt insn_length = ((((byte >> 6) + 1) >> 1) + 1) << 1;
/external/valgrind/coregrind/
H A Dm_signals.c1758 UChar byte = ((UChar *)addr)[0]; local
1759 Int insn_length = ((((byte >> 6) + 1) >> 1) + 1) << 1;
/external/valgrind/include/vki/
H A Dvki-linux.h654 __vki_kernel_size_t cmsg_len; /* data byte count, including hdr */
1787 unsigned int dxfer_len; /* [i] byte count of data transfer */
1799 unsigned char sb_len_wr; /* [o] byte count actually written to sbp */
1959 int nframes; /* number of 2352-byte-frames to read at once */
2639 __vki_u8 byte; member in union:vki_i2c_smbus_data
2663 #define VKI_I2C_M_RECV_LEN 0x0400 /* length will be first received byte */
/external/toybox/toys/pending/
H A Dxzcat.c58 * least one output byte is still pending. Assuming your code is not buggy,
398 * Decode the LZMA2 properties (one byte) and reset the decoder. Return
497 * This is used to test the most significant byte of a memory address
623 /* bit_pos split into byte and bit parts */
1015 * - Literal: One 8-bit byte
1017 * - Long repeat: Multi-byte match at a recently seen distance
1018 * - Short repeat: One-byte repeat at a recently seen distance
1080 * - 0x001-0x0FF: Without match byte
1081 * - 0x101-0x1FF: With match byte; match bit is 0
1082 * - 0x201-0x2FF: With match byte; matc
1487 dict_put(struct dictionary *dict, uint8_t byte) argument
2512 uint8_t byte; local
[all...]
/external/v8/src/arm/
H A Dsimulator-arm.cc265 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);
2208 // signed byte loads
2536 byte va
2807 uint8_t byte = ReadB(addr); local
2810 uint8_t byte = get_register(rd); local
[all...]
/external/v8/src/
H A Ddisasm.h10 typedef unsigned char byte; typedef in namespace:disasm
21 virtual const char* NameOfAddress(byte* addr) const;
22 virtual const char* NameOfConstant(byte* addr) const;
23 virtual const char* NameInCode(byte* addr) const;
40 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
44 int ConstantPoolSizeAt(byte* instruction);
48 static void Disassemble(FILE* f, byte* begin, byte* end);
H A Dgdb-jit.cc44 buffer_(reinterpret_cast<byte*>(malloc(capacity_))) {
106 buffer_ = reinterpret_cast<byte*>(realloc(buffer_, capacity_));
112 byte* buffer() { return buffer_; }
124 uint8_t byte = value & 0x7F; local
126 if (value != 0) byte |= 0x80;
127 Write<uint8_t>(byte);
134 int8_t byte = value & 0x7F; local
135 bool byte_sign = byte & 0x40;
141 byte |= 0x80;
144 Write<int8_t>(byte);
[all...]
H A Dglobals.h100 typedef uint8_t byte; typedef in namespace:v8::internal
101 typedef byte* Address;
419 byte* buffer;
H A Dobjects.cc309 uint8_t byte = *CheckedCast<uint8_t>(ptr); local
311 byte & (0x1 << descriptor.bool_offset));
8416 // common case of sequential one-byte right child.
9583 byte kind) {
10435 void Code::MakeCodeAgeSequenceYoung(byte* sequence, Isolate* isolate) {
10440 void Code::MarkCodeAsExecuted(byte* sequence, Isolate* isolate) {
10459 byte* sequence = FindCodeAgeSequence();
10481 byte* Code::FindCodeAgeSequence() {
10497 byte* sequence = FindCodeAgeSequence();
/external/v8/src/heap/
H A Dmark-compact.cc1524 // Flush code or set age on both one byte and two byte code.
3733 // The line is indexed by the mark bits in a byte. The first number on
4100 int byte = (mark_bits & 0xff); local
4102 if (byte != 0) {
4103 DCHECK(byte < kStartTableLines); // No consecutive 1 bits.
4104 char* table = kStartTable + byte * kStartTableEntriesPerLine;

Completed in 564 milliseconds

123456