Searched refs:limit (Results 26 - 35 of 35) sorted by relevance

12

/art/runtime/arch/arm/
H A Dentrypoints_init_arm.cc121 extern "C" void art_quick_throw_array_bounds(int32_t index, int32_t limit);
/art/runtime/arch/arm64/
H A Dentrypoints_init_arm64.cc101 extern "C" void art_quick_throw_array_bounds(int32_t index, int32_t limit);
/art/runtime/arch/mips/
H A Dentrypoints_init_mips.cc124 extern "C" void art_quick_throw_array_bounds(int32_t index, int32_t limit);
H A Dquick_entrypoints_mips.S390 jr $t9 # artThrowArrayBoundsFromCode(index, limit, Thread*, $sp)
/art/runtime/arch/x86/
H A Dentrypoints_init_x86.cc102 extern "C" void art_quick_throw_array_bounds(int32_t index, int32_t limit);
/art/runtime/arch/x86_64/
H A Dentrypoints_init_x86_64.cc103 extern "C" void art_quick_throw_array_bounds(int32_t index, int32_t limit);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h50 int64_t limit = static_cast<int64_t>(1) << 31; local
51 return (-limit <= value_) && (value_ < limit);
/art/runtime/gc/collector/
H A Dsemi_space.cc448 const byte* limit = byte_src + size; local
457 while (byte_src + kPageSize < limit) {
476 memcpy(byte_dest, byte_src, limit - byte_src);
/art/runtime/
H A Ddex_file_verifier.cc221 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) { argument
222 if (UNLIKELY(field >= limit)) {
223 ErrorStringPrintf("Bad index for %s: %x >= %x", label, field, limit);
/art/runtime/gc/
H A Dheap.cc175 /* For GC a lot mode, we limit the allocations stacks to be kGcAlotInterval allocations. This
177 * verification is enabled, we limit the size of allocation stacks to speed up their
2084 mirror::Object** limit = stack->End(); local
2085 for (mirror::Object** it = stack->Begin(); it != limit; ++it) {
2955 // We also check that the bytes allocated aren't over the footprint limit in order to prevent a

Completed in 225 milliseconds

12