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

/art/runtime/
H A Dglobals.h27 typedef uint8_t byte; typedef in namespace:art
H A Dmemory_region.h44 byte* start() const { return reinterpret_cast<byte*>(pointer_); }
45 byte* end() const { return start() + size_; }
60 // significant bit in the first byte.
63 uint8_t byte = *ComputeBitPointer(bit_offset, &bit_mask); local
64 return byte & bit_mask;
69 uint8_t* byte = ComputeBitPointer(bit_offset, &bit_mask); local
71 *byte |= bit_mask;
73 *byte &= ~bit_mask;
99 // Locate the bit with the given offset. Returns a pointer to the byte
[all...]
H A Ddex_file_verifier.cc127 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
824 uint8_t byte = *(ptr_++); local
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm32.cc545 bool byte,
565 (byte ? B : 0) |
574 (byte ? B : 0) |
543 EmitMemOp(Condition cond, bool load, bool byte, Register rd, const Address& ad) argument
H A Dassembler_thumb2.cc1246 bool byte,
1276 if (byte) {
1299 (byte ? 0 : half ? B21 : B22);
1306 if (byte) {
1332 if (byte) {
1387 } else if (!byte) {
1395 if (byte) {
1244 EmitLoadStore(Condition cond, bool load, bool byte, bool half, bool is_signed, Register rd, const Address& ad) argument

Completed in 8282 milliseconds