Home
last modified time | relevance | path

Searched defs:count (Results 1 – 25 of 178) sorted by relevance

12345678

/art/benchmark/string-indexof/src/
DStringIndexOfBenchmark.java20 public void timeIndexOf0(int count) { in timeIndexOf0()
28 public void timeIndexOf1(int count) { in timeIndexOf1()
36 public void timeIndexOf2(int count) { in timeIndexOf2()
44 public void timeIndexOf3(int count) { in timeIndexOf3()
52 public void timeIndexOf4(int count) { in timeIndexOf4()
60 public void timeIndexOf7(int count) { in timeIndexOf7()
68 public void timeIndexOf8(int count) { in timeIndexOf8()
76 public void timeIndexOfF(int count) { in timeIndexOfF()
84 public void timeIndexOfG(int count) { in timeIndexOfG()
92 public void timeIndexOfV(int count) { in timeIndexOfV()
[all …]
/art/benchmark/type-check/src/
DTypeCheckBenchmark.java18 public void timeCheckCastLevel1ToLevel1(int count) { in timeCheckCastLevel1ToLevel1()
25 public void timeCheckCastLevel2ToLevel1(int count) { in timeCheckCastLevel2ToLevel1()
32 public void timeCheckCastLevel3ToLevel1(int count) { in timeCheckCastLevel3ToLevel1()
39 public void timeCheckCastLevel9ToLevel1(int count) { in timeCheckCastLevel9ToLevel1()
46 public void timeCheckCastLevel9ToLevel2(int count) { in timeCheckCastLevel9ToLevel2()
53 public void timeInstanceOfLevel1ToLevel1(int count) { in timeInstanceOfLevel1ToLevel1()
64 public void timeInstanceOfLevel2ToLevel1(int count) { in timeInstanceOfLevel2ToLevel1()
75 public void timeInstanceOfLevel3ToLevel1(int count) { in timeInstanceOfLevel3ToLevel1()
86 public void timeInstanceOfLevel9ToLevel1(int count) { in timeInstanceOfLevel9ToLevel1()
97 public void timeInstanceOfLevel9ToLevel2(int count) { in timeInstanceOfLevel9ToLevel2()
/art/benchmark/stringbuilder-append/src/
DStringBuilderAppendBenchmark.java28 public void timeAppendStrings(int count) { in timeAppendStrings()
41 public void timeAppendLongStrings(int count) { in timeAppendLongStrings()
54 public void timeAppendStringAndInt(int count) { in timeAppendStringAndInt()
67 public void timeAppendStringAndDouble(int count) { in timeAppendStringAndDouble()
80 public void timeAppendStringAndHugeDouble(int count) { in timeAppendStringAndHugeDouble()
93 public void timeAppendStringAndFloat(int count) { in timeAppendStringAndFloat()
106 public void timeAppendStringAndHugeFloat(int count) { in timeAppendStringAndHugeFloat()
119 public void timeAppendStringDoubleStringAndFloat(int count) { in timeAppendStringDoubleStringAndFloat()
/art/runtime/native/
Djava_lang_System.cc53 const jint count = length; in System_arraycopy() local
176 jobject javaDst, jint dstPos, jint count) { in System_arraycopyTUnchecked()
190 jcharArray javaDst, jint dstPos, jint count) { in System_arraycopyCharUnchecked()
196 jbyteArray javaDst, jint dstPos, jint count) { in System_arraycopyByteUnchecked()
202 jshortArray javaDst, jint dstPos, jint count) { in System_arraycopyShortUnchecked()
208 jintArray javaDst, jint dstPos, jint count) { in System_arraycopyIntUnchecked()
214 jlongArray javaDst, jint dstPos, jint count) { in System_arraycopyLongUnchecked()
220 jfloatArray javaDst, jint dstPos, jint count) { in System_arraycopyFloatUnchecked()
226 jdoubleArray javaDst, jint dstPos, jint count) { in System_arraycopyDoubleUnchecked()
237 jint count) { in System_arraycopyBooleanUnchecked()
Dlibcore_io_Memory.cc64 static inline void swapShorts(jshort* dstShorts, const jshort* srcShorts, size_t count) { in swapShorts()
78 static inline void swapInts(jint* dstInts, const jint* srcInts, size_t count) { in swapInts()
85 static inline void swapLongs(jlong* dstLongs, const jlong* srcLongs, size_t count) { in swapLongs()
128 jint count, in Memory_peekCharArray()
138 jint count, in Memory_peekDoubleArray()
148 jint count, in Memory_peekFloatArray()
158 jint count, in Memory_peekIntArray()
168 jint count, in Memory_peekLongArray()
178 jint count, in Memory_peekShortArray()
/art/test/444-checker-nce/src/
DMain.java97 public Main forRemoveTest(int count) { in forRemoveTest()
113 public Main forKeepTest(int count) { in forKeepTest()
131 public Main phiFlowRemoveTest(int count) { in phiFlowRemoveTest()
153 public Main phiFlowKeepTest(int count) { in phiFlowKeepTest()
174 public Main scopeRemoveTest(int count, Main a) { in scopeRemoveTest()
192 public Main scopeKeepTest(int count, Main a) { in scopeKeepTest()
/art/test/911-get-stack-trace/src/art/
DFrames.java41 int count = getFrameCount(t); in doTestSameThread() local
74 int count = getFrameCount(t); in doTestOtherThreadWait() local
112 int count = getFrameCount(t); in doTestOtherThreadBusyLoop() local
/art/test/023-many-interfaces/src/
DManyInterfaces.java302 static void testIface001(Interface001 iface, int count) { in testIface001()
311 static void testIface049(Interface049 iface, int count) { in testIface049()
320 static void testIface099(Interface099 iface, int count) { in testIface099()
329 static void testVirt001(ManyInterfaces obj, int count) { in testVirt001()
338 static void testVirt049(ManyInterfaces obj, int count) { in testVirt049()
347 static void testVirt099(ManyInterfaces obj, int count) { in testVirt099()
356 static void testInstance001(Object obj, int count) { in testInstance001()
380 static void testInstance049(Object obj, int count) { in testInstance049()
404 static void testInstance099(Object obj, int count) { in testInstance099()
/art/runtime/arch/
Dmemcmp16.cc23 int32_t memcmp16_generic_static(const uint16_t* s0, const uint16_t* s1, size_t count) { in memcmp16_generic_static()
36 int32_t MemCmp16Testing(const uint16_t* s0, const uint16_t* s1, size_t count) { in MemCmp16Testing()
Dmemcmp16.h41 static inline int32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) { in MemCmp16()
/art/runtime/
Dthread_pool_test.cc30 explicit CountTask(AtomicInteger* count) : count_(count), verbose_(false) {} in CountTask()
65 AtomicInteger count(0); in TEST_F() local
80 AtomicInteger count(0); in TEST_F() local
106 AtomicInteger count(0); in TEST_F() local
127 TreeTask(ThreadPool* const thread_pool, AtomicInteger* count, int depth) in TreeTask()
155 AtomicInteger count(0); in TEST_F() local
Dbarrier.cc28 Barrier::Barrier(int count, bool verify_count_on_shutdown) in Barrier()
52 void Barrier::Init(Thread* self, int count) { in Init()
104 void Barrier::SetCountLocked(Thread* self, int count) { in SetCountLocked()
/art/runtime/mirror/
Dclass_ext-inl.h40 inline bool ClassExt::EnsureJniIdsArrayPresent(MemberOffset off, size_t count) { in EnsureJniIdsArrayPresent()
79 inline bool ClassExt::EnsureJMethodIDsArrayPresent(size_t count) { in EnsureJMethodIDsArrayPresent()
84 inline bool ClassExt::EnsureStaticJFieldIDsArrayPresent(size_t count) { in EnsureStaticJFieldIDsArrayPresent()
89 inline bool ClassExt::EnsureInstanceJFieldIDsArrayPresent(size_t count) { in EnsureInstanceJFieldIDsArrayPresent()
Darray-inl.h110 static inline void ArrayBackwardCopy(T* d, const T* s, int32_t count) { in ArrayBackwardCopy()
123 static inline void ArrayForwardCopy(T* d, const T* s, int32_t count) { in ArrayForwardCopy()
135 int32_t count) { in Memmove()
197 int32_t count) { in Memcpy()
294 for (size_t i = 0, count = GetLength(); i < count; ++i) { in Fixup() local
309 int32_t count, in Memcpy()
Dstring.h245 ALWAYS_INLINE static bool IsCompressed(int32_t count) { in IsCompressed()
249 ALWAYS_INLINE static StringCompressionFlag GetCompressionFlagFromCount(int32_t count) { in GetCompressionFlagFromCount()
255 ALWAYS_INLINE static int32_t GetLengthFromCount(int32_t count) { in GetLengthFromCount()
Dstring-alloc-inl.h41 explicit SetStringCountVisitor(int32_t count) : count_(count) { in SetStringCountVisitor()
59 SetStringCountAndBytesVisitor(int32_t count, Handle<ByteArray> src_array, int32_t offset, in SetStringCountAndBytesVisitor()
95 SetStringCountAndUtf16BytesVisitor(int32_t count, Handle<ByteArray> src_array, int32_t offset) in SetStringCountAndUtf16BytesVisitor()
130 SetStringCountAndValueVisitorFromCharArray(int32_t count, Handle<CharArray> src_array, in SetStringCountAndValueVisitorFromCharArray()
160 SetStringCountAndValueVisitorFromString(int32_t count, in SetStringCountAndValueVisitorFromString()
289 int32_t count, in AllocFromCharArray()
/art/test/626-const-class-linking/src/
DRacyLoader.java26 private int count; field in RacyLoader
30 public RacyLoader(ClassLoader parent, int count) { in RacyLoader()
DRacyMisbehavingLoader.java26 private int count; field in RacyMisbehavingLoader
31 public RacyMisbehavingLoader(ClassLoader parent, int count, boolean throw_error) { in RacyMisbehavingLoader()
/art/test/023-many-interfaces/
Diface-gen20 def createFiles(count): argument
/art/test/303-verification-stress/
Dclasses-gen19 def createFiles(count, array_size): argument
/art/test/050-sync-test/src/
DMain.java118 int count = mCount; in output() local
138 private static int count = 0; field in SleepyThread
/art/libdexfile/dex/
Dclass_accessor-inl.h91 inline void ClassAccessor::VisitMembers(size_t count, in VisitMembers()
162 ClassAccessor::GetFieldsInternal(size_t count) const { in GetFieldsInternal()
181 ClassAccessor::GetMethodsInternal(size_t count) const { in GetMethodsInternal()
/art/test/080-oom-fragmentation/src/
DMain.java22 int count = 0; in main() local
/art/tools/ahat/src/ri-test-dump/
DDumpedStuff.java27 static int count = 0; field in DumpedStuff.Finalizable
/art/test/165-lock-owner-proxy/src/
DMain.java77 int count = totalOperations; in run() local
95 int count = totalOperations; in run() local

12345678