Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 25 of 67) sorted by relevance

123

/art/runtime/arch/arm64/
Dmemcmp16_arm64.S30 #define limit x2 macro
51 cbz limit, .Lret0
52 lsl limit, limit, #1 /* Half-words to bytes. */
58 add limit_wd, limit, #7
75 ands limit, limit, #7
78 lsl limit, limit, #3 /* Bits -> bytes. */
80 lsl mask, mask, limit
111 add limit, limit, tmp1 /* Adjust the limit for the extra. */
119 add limit_wd, limit, #7
131 sub limit, limit, #1
[all …]
/art/test/162-method-resolution/jasmin/
DTest1Derived.j19 .limit stack 1
20 .limit locals 1
27 .limit stack 2
28 .limit locals 0
37 .limit stack 2
38 .limit locals 1
DTest8Derived.j19 .limit stack 1
20 .limit locals 1
27 .limit stack 2
28 .limit locals 1
DTest9Derived.j19 .limit stack 1
20 .limit locals 1
27 .limit stack 2
28 .limit locals 1
DTest10User.j19 .limit stack 3
20 .limit locals 3
29 .limit stack 3
30 .limit locals 3
DTest2User2.j19 .limit stack 0
20 .limit locals 0
DTest5User2.j19 .limit stack 2
20 .limit locals 0
DTest2Derived.j20 .limit stack 1
21 .limit locals 1
DTest1User2.j19 .limit stack 2
20 .limit locals 0
DTest3Derived.j20 .limit stack 1
21 .limit locals 1
DTest9User2.j19 .limit stack 2
20 .limit locals 0
DTest9User.j19 .limit stack 0
20 .limit locals 0
DTest2User.j19 .limit stack 2
20 .limit locals 0
DTest8User.j19 .limit stack 2
20 .limit locals 0
DTest10Base.j20 .limit stack 1
21 .limit locals 1
/art/runtime/arch/x86/
Dthread_x86.cc35 unsigned limit: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8; member
49 const size_t limit = sizeof(Thread); in InitCpu() local
64 entry.limit0 = (limit & 0x0ffff); in InitCpu()
65 entry.limit = (limit & 0xf0000) >> 16; in InitCpu()
107 gdt_entry.limit = limit; in InitCpu()
/art/libartbase/base/
Dutils.cc76 int CacheFlush(uintptr_t start, uintptr_t limit) { in CacheFlush() argument
79 int r = cacheflush(start, limit, kCacheFlushFlags); in CacheFlush()
86 bool TouchAndFlushCacheLinesWithinPage(uintptr_t start, uintptr_t limit, size_t attempts) { in TouchAndFlushCacheLinesWithinPage() argument
87 CHECK_LT(start, limit); in TouchAndFlushCacheLinesWithinPage()
88 CHECK_EQ(RoundDown(start, kPageSize), RoundDown(limit - 1, kPageSize)) << "range spans pages"; in TouchAndFlushCacheLinesWithinPage()
95 if (LIKELY(CacheFlush(start, limit) == 0)) { in TouchAndFlushCacheLinesWithinPage()
129 const uintptr_t limit = reinterpret_cast<uintptr_t>(end); in FlushCpuCaches() local
130 if (LIKELY(CacheFlush(start, limit) == 0)) { in FlushCpuCaches()
138 while (start < limit) { in FlushCpuCaches()
139 uintptr_t boundary = std::min(next_page, limit); in FlushCpuCaches()
Dmemory_type_table.h33 MemoryTypeRange(uintptr_t start, uintptr_t limit, const T& type) in MemoryTypeRange() argument
34 : start_(start), limit_(limit), type_(type) {} in MemoryTypeRange()
243 const uintptr_t limit = succ->second.Limit(); in Add() local
244 DCHECK_GT(limit, range.Limit()); in Add()
246 ranges_[limit] = MemoryTypeRange<T>(range.Start(), limit, range.Type()); in Add()
252 const uintptr_t limit = range.Limit(); in Add() local
254 DCHECK_GT(limit, pred->second.Limit()); in Add()
256 ranges_[limit] = MemoryTypeRange<T>(start, limit, range.Type()); in Add()
262 const uintptr_t limit = succ->second.Limit(); in Add() local
264 ranges_[limit] = MemoryTypeRange<T>(start, limit, range.Type()); in Add()
/art/test/085-old-style-inner-class/jasmin/
DMain$2.j25 .limit stack 1
26 .limit locals 1
34 .limit stack 0
35 .limit locals 1
DMain$1.j25 .limit stack 1
26 .limit locals 1
34 .limit stack 0
35 .limit locals 1
/art/test/626-const-class-linking/src/
DRacyLoader.java59 private int syncWithOtherInstances(int limit) { in syncWithOtherInstances() argument
64 if (index != limit) { in syncWithOtherInstances()
71 } while (index < limit); in syncWithOtherInstances()
DRacyMisbehavingLoader.java80 private int syncWithOtherInstances(int limit) { in syncWithOtherInstances() argument
85 if (index != limit) { in syncWithOtherInstances()
92 } while (index < limit); in syncWithOtherInstances()
/art/test/064-field-access/jasmin/
DSubClassUsingInaccessibleField.j19 .limit stack 1
20 .limit locals 1
30 .limit stack 1
31 .limit locals 1
/art/runtime/gc/space/
Dspace.h289 void SetLimit(uint8_t* limit) { in SetLimit() argument
290 limit_ = limit; in SetLimit()
325 uint8_t* begin, uint8_t* end, uint8_t* limit) : in ContinuousSpace() argument
326 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace()
396 uint8_t* limit, in MemMapSpace() argument
398 : ContinuousSpace(name, gc_retention_policy, begin, end, limit), in MemMapSpace()
462 uint8_t* limit, in ContinuousMemMapAllocSpace() argument
464 : MemMapSpace(name, std::move(mem_map), begin, end, limit, gc_retention_policy) { in ContinuousMemMapAllocSpace()
/art/test/162-method-resolution/jasmin-multidex/
DTest1User.j19 .limit stack 2
20 .limit locals 0

123