Home
last modified time | relevance | path

Searched refs:size (Results 476 – 500 of 634) sorted by relevance

1...<<11121314151617181920>>...26

/art/compiler/optimizing/
Dconstructor_fence_redundancy_elimination.cc195 HConstructorFence* merge_target = candidate_fences_[candidate_fences_.size() - 1]; in MergeCandidateFences()
Dssa_builder.cc189 for (size_t i = 0; i < inputs.size(); ++i) { in TypeInputsOfPhi()
668 HPhi* new_phi = new (allocator) HPhi(allocator, phi->GetRegNumber(), inputs.size(), type); in GetFloatDoubleOrReferenceEquivalentOfPhi()
672 for (size_t i = 0; i < inputs.size(); ++i) { in GetFloatDoubleOrReferenceEquivalentOfPhi()
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DVRegChanger.java112 int vregInsnIdx = rng.nextInt(vregInsns.size()); in generateMutation()
DInvokeChanger.java119 int invokeCallInsnIdx = rng.nextInt(invokeCallInsns.size()); in generateMutation()
DFieldFlagChanger.java108 int fieldInsnIdx = rng.nextInt(fieldInsns.size()); in generateMutation()
DPoolIndexChanger.java139 poolIndexInsnIdx = rng.nextInt(poolIndexInsns.size()); in generateMutation()
DTryBlockShifter.java121 shiftingHandlerIdx = rng.nextInt(tryBlock.handlers.size()); in generateMutation()
/art/libartbase/base/
Dlength_prefixed_array.h79 size_t size() const { in size() function
Dbit_string_test.cc48 CHECK_GE(BitString::kCapacity, values.size());
/art/test/661-oat-writer-layout/src/
DTest.java87 return all_methods.toArray(new Method[all_methods.size()]); in getTestMethods()
/art/runtime/
Dsignal_catcher.cc108 PaletteStatus status = PaletteWriteCrashThreadStacks(s.data(), s.size()); in Output()
Dthread_pool.h112 return threads_.size(); in GetThreadCount()
Dmonitor.h162 void* operator new(size_t size) { in new() argument
165 int error = posix_memalign(&result, LockWord::kMonitorIdAlignment, size); in new()
Dimage.h47 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in ImageSection() argument
Dtransaction.h170 return field_values_.size(); in Size()
217 return array_values_.size(); in Size()
Dquick_exception_handler.cc256 DCHECK_EQ(catch_vreg_map.size(), number_of_vregs); in SetCatchEnvironmentForOptimizedHandler()
267 DCHECK_EQ(throw_vreg_map.size(), number_of_vregs); in SetCatchEnvironmentForOptimizedHandler()
471 CHECK_EQ(vreg_map.size(), number_of_vregs) << *Thread::Current() in HandleOptimizingDeoptimization()
/art/runtime/interpreter/mterp/
Dmterp.cc63 uint16_t size; in MterpDoSparseSwitch() local
80 size = *switchData++; in MterpDoSparseSwitch()
90 entries = keys + size; in MterpDoSparseSwitch()
97 int hi = size - 1; in MterpDoSparseSwitch()
128 uint16_t size = *switchData++; in MterpDoPackedSwitch() local
134 if (index < 0 || index >= size) { in MterpDoPackedSwitch()
/art/runtime/gc/allocator/
Drosalloc.cc198 DCHECK_LT(free_page_run_size_map_.size(), new_num_of_pages); in AllocPages()
462 void* RosAlloc::AllocLargeObject(Thread* self, size_t size, size_t* bytes_allocated, in AllocLargeObject() argument
466 DCHECK_GT(size, kLargeSizeThreshold); in AllocLargeObject()
467 size_t num_pages = RoundUp(size, kPageSize) / kPageSize; in AllocLargeObject()
634 void* RosAlloc::AllocFromRunThreadUnsafe(Thread* self, size_t size, size_t* bytes_allocated, in AllocFromRunThreadUnsafe() argument
640 DCHECK_LE(size, kLargeSizeThreshold); in AllocFromRunThreadUnsafe()
642 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); in AllocFromRunThreadUnsafe()
654 void* RosAlloc::AllocFromRun(Thread* self, size_t size, size_t* bytes_allocated, in AllocFromRun() argument
659 DCHECK_LE(size, kLargeSizeThreshold); in AllocFromRun()
661 size_t idx = SizeToIndexAndBracketSize(size, &bracket_size); in AllocFromRun()
[all …]
/art/runtime/jit/
Djit_code_cache.cc679 size_t root_table_size = ComputeRootTableSize(roots.size()); in Commit()
1582 sizeof(ProfilingInfo) + sizeof(InlineCache) * entries.size(), in AddProfilingInfoInternal()
1849 size_t cnt = profiling_infos_.size(); in InvalidateAllCompiledCode()
1850 size_t osr_size = osr_code_map_.size(); in InvalidateAllCompiledCode()
1924 << "Current number of JIT JNI stub entries: " << jni_stubs_map_.size() << "\n" in Dump()
1925 << "Current number of JIT code cache entries: " << method_code_map_.size() << "\n" in Dump()
2047 size_t index = hf(method) & (map_.size() - 1u); in GetCodeFor()
2070 index = (index + 1) & (map_.size() - 1); in GetCodeFor()
2081 size_t index = hf(method) & (map_.size() - 1); in Put()
2094 index = (index + 1) & (map_.size() - 1); in Put()
/art/test/dexdump/
Dstaticfields.txt114 insns size : 4 16-bit code units
/art/tools/ahat/src/main/com/android/ahat/
DObjectsHandler.java114 doc.description(DocString.text("Count"), DocString.format("%,14d", insts.size())); in handle()
/art/runtime/gc/
Dtask_processor_test.cc130 std::swap(orderings[i], orderings[(i * 87654231 + 12345) % orderings.size()]); in TEST_F()
/art/tools/jfuzz/
DREADME.md110 finite in size and scope. Tests typically focus on validating particular
128 The randomness of fuzz testing implies that the size and scope of testing is no
/art/runtime/gc/space/
Ddlmalloc_space.cc269 size_t size = mspace_usable_size(ptrs[i]); in FreeList() local
270 memset(ptrs[i], 0xEF, size); in FreeList()
/art/test/674-hiddenapi/
Dhiddenapi.cc47 CHECK_LT(index, opened_dex_files.size()); in Java_Main_setDexDomain()
61 const size_t index = opened_dex_files.size(); in Java_Main_appendToBootClassLoader()

1...<<11121314151617181920>>...26