Searched defs:byte (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dmemory_region.h78 // Read the value byte by byte in a little-endian fashion.
93 // Write the value byte by byte in a little-endian fashion.
106 // significant bit in the first byte.
109 uint8_t byte = *ComputeBitPointer(bit_offset, &bit_mask); local
110 return byte & bit_mask;
115 uint8_t* byte = ComputeBitPointer(bit_offset, &bit_mask); local
117 *byte |= bit_mask;
119 *byte
[all...]
H A Ddex_file_verifier.cc610 ErrorStringPrintf("Bad encoded_value byte size %x", value_arg);
983 // try_items are 4-byte aligned. Verify the spacer is 0.
1054 uint8_t byte = *(ptr_++); local
1057 switch (byte >> 4) {
1060 if (UNLIKELY(byte == 0)) {
1082 ErrorStringPrintf("Illegal start byte %x in string data", byte);
1086 // Bit pattern 110x has an additional byte.
1089 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
1092 uint16_t value = ((byte
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm32.cc604 bool byte,
624 (byte ? B : 0) |
633 (byte ? B : 0) |
602 EmitMemOp(Condition cond, bool load, bool byte, Register rd, const Address& ad) argument
H A Dassembler_thumb2.cc241 // Load literal instructions (LDR, LDRD, VLDR) require 4-byte alignment.
242 // We don't support byte and half-word literals.
261 // Jump tables require 4 byte alignment. (We don't support byte and half-word jump tables.)
1940 // If it isn't a multiple of 4, we need to add a 2-byte padding before the literal pool.
2316 bool byte,
2346 if (byte) {
2369 (byte ? 0 : half ? B21 : B22);
2376 if (byte) {
2402 if (byte) {
2314 EmitLoadStore(Condition cond, bool load, bool byte, bool half, bool is_signed, Register rd, const Address& ad) argument
[all...]

Completed in 69 milliseconds