Searched refs:bytes (Results 51 - 60 of 60) sorted by relevance

123

/art/runtime/jdwp/
H A Djdwp.h54 * Its OK to change MethodId and FieldId sizes as long as the size is <= 8 bytes.
55 * Note that ArtFields are 64 bit pointers on 64 bit targets. So this one must remain 8 bytes.
419 Request(const uint8_t* bytes, uint32_t available);
471 // Returns the number of bytes remaining.
/art/runtime/
H A Dcheck_jni.cc1230 // Verifies that "bytes" points to valid Modified UTF-8 data.
1231 bool CheckUtfString(const char* bytes, bool nullable) { argument
1232 if (bytes == nullptr) {
1241 const uint8_t* utf8 = CheckUtfBytes(bytes, &errorKind);
1247 const uint8_t* tmp = reinterpret_cast<const uint8_t*>(bytes);
1263 " string: '%s'\n input: '%s'", errorKind, *utf8, bytes, oss.str().c_str());
1269 // Checks whether |bytes| is valid modified UTF-8. We also accept 4 byte UTF
1271 static const uint8_t* CheckUtfBytes(const char* bytes, const char** errorKind) { argument
1272 while (*bytes != '\0') {
1273 const uint8_t* utf8 = reinterpret_cast<const uint8_t*>(bytes
[all...]
H A Ddex_file_verifier_test.cc74 // the final = symbols are read and used to trim the remaining bytes
337 // Unroll this, as we only have three bytes, anyways.
376 // Figure out how many bytes the code_off is.
379 size_t bytes = tmp - ptr; local
382 for (size_t i = 1; i < bytes; ++i) {
943 // Unroll this, as we only have three bytes, anyways.
H A Dtrace.cc627 static uint64_t ReadBytes(uint8_t* buf, size_t bytes) { argument
629 for (size_t i = 0; i < bytes; ++i) {
H A Ddebugger.h642 static void DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes)
H A Dthread.h685 // The interpreter needs the extra overflow bytes that stack_end does
985 mirror::Object* AllocTlab(size_t bytes);
/art/runtime/gc/collector/
H A Dmark_sweep.cc887 // Calculate how many bytes of heap we will scan,
1235 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1247 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1270 freed_los.bytes += large_object_space->Free(self, obj);
/art/compiler/utils/arm/
H A Dassembler_arm.cc372 void ArmAssembler::Pad(uint32_t bytes) {
374 for (uint32_t i = 0; i < bytes; ++i) {
H A Dassembler_arm.h688 void Pad(uint32_t bytes);
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips.S235 * in bytes, *not* 16-bit code units, and may be a signed value.
1800 addu a2, rINST, rINST # convert to bytes
1839 addu a2, rINST, rINST # convert to bytes
1878 addu a2, rINST, rINST # convert to bytes
1917 addu a2, rINST, rINST # convert to bytes
1956 addu a2, rINST, rINST # convert to bytes
1995 addu a2, rINST, rINST # convert to bytes
2032 addu a1, rINST, rINST # convert to bytes
2071 addu a1, rINST, rINST # convert to bytes
2110 addu a1, rINST, rINST # convert to bytes
[all...]

Completed in 180 milliseconds

123