Searched refs:start (Results 76 - 100 of 256) sorted by relevance

1234567891011

/art/runtime/gc/space/
H A Dbump_pointer_space.cc139 // Returns the start of the storage.
206 uint8_t* start = AllocBlock(bytes); local
207 if (start == nullptr) {
210 self->SetTlab(start, start + bytes, start + bytes);
/art/test/910-methods/
H A Dmethods.cc132 jlong start; local
134 jvmtiError result = jvmti_env->GetMethodLocation(id, &start, &end);
139 return start;
146 jlong start; local
148 jvmtiError result = jvmti_env->GetMethodLocation(id, &start, &end);
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DSite.java398 int start = 0;
400 while (start < end) {
401 int mid = start + ((end - start) / 2);
414 start = mid + 1;
/art/libartbase/base/
H A Dstl_util.h119 auto start = container.begin(); local
120 std::advance(start, start_pos);
121 auto it = std::find(start, container.end(), value);
H A Dutils.cc107 const char* start = p; local
111 result->push_back(std::string(start, p - start));
/art/runtime/interpreter/mterp/x86/
H A Dheader.S99 #define SIZE(start,end)
105 #define SIZE(start,end) .size start, .-end
/art/runtime/interpreter/mterp/x86_64/
H A Dheader.S95 #define SIZE(start,end)
101 #define SIZE(start,end) .size start, .-end
/art/runtime/
H A Dmem_map.h53 // for free pages. For security, the start of this scan should be randomized. This requires a
110 // "start" offset is absolute, not relative.
117 off_t start,
126 start,
133 // Map part of a file, taking care of non-page aligned offsets. The "start" offset is absolute,
146 off_t start,
113 MapFile(size_t byte_count, int prot, int flags, int fd, off_t start, bool low_4gb, const char* filename, std::string* error_msg) argument
H A Ddexopt_test.h88 void ReserveImageSpaceChunk(uintptr_t start, uintptr_t end);
/art/runtime/mirror/
H A Dstring.cc41 int32_t String::FastIndexOf(int32_t ch, int32_t start) { argument
43 if (start < 0) {
44 start = 0;
45 } else if (start > count) {
46 start = count;
49 return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start);
51 return FastIndexOf<uint16_t>(GetValue(), ch, start);
398 void String::GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index) { argument
401 for (int i = start; i < end; ++i) {
402 data[i-start]
[all...]
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DNonsenseStringPrinter.java154 int start = (int) 'A';
158 builder.append((char) (rng.nextInt((end + 1) - start) + start));
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
H A DFuzzer.java83 totalTimer.start();
203 timerMutation.start();
393 timerDexInput.start();
398 timerProgGen.start();
419 timerDexOutput.start();
423 timerChecksumCalc.start();
/art/compiler/optimizing/
H A Dregister_allocator_linear_scan.h78 // Update the interval for the register in `location` to cover [start, end).
79 void BlockRegister(Location location, size_t start, size_t end);
80 void BlockRegisters(size_t start, size_t end, bool caller_save_only = false);
107 // List of intervals for core registers that must be processed, ordered by start
108 // position. Last entry is the interval that has the lowest start position.
123 // That is, they have a live range that spans the start of the new interval.
127 // That is, they have a lifetime hole that spans the start of the new interval.
/art/test/084-class-init/src/
H A DMain.java84 fieldThread.start();
85 methodThread.start();
87 /* start class init */
106 /* allow SlowInit's <clinit> to start */
125 /* allow SlowInit's <clinit> to start */
/art/test/109-suspend-check/src/
H A DMain.java38 doWhileLoopWithLong.start();
40 loop.start();
/art/tools/wrapagentproperties/
H A Dwrapagentproperties.cc246 static jint CallNextAgent(StartType start, argument
252 return ((start == StartType::OnLoad) ? vm->load : vm->attach)(vm, options.c_str(), reserved);
255 static std::string substrOf(const std::string& s, size_t start, size_t end) { argument
256 if (end == start) {
261 return s.substr(start, end - start);
303 static jint AgentStart(StartType start, JavaVM* vm, char* options, void* reserved) { argument
320 return CallNextAgent(start, proxy, agent_options, reserved);
/art/runtime/native/
H A Djava_lang_String.cc71 static jstring String_fastSubstring(JNIEnv* env, jobject java_this, jint start, jint length) { argument
79 start,
84 static void String_getCharsNoCheck(JNIEnv* env, jobject java_this, jint start, jint end, argument
89 soa.Decode<mirror::String>(java_this)->GetChars(start, end, char_array, index);
/art/test/039-join-main/src/
H A DMain.java30 t.start();
/art/test/145-alloc-tracking-stress/src/
H A DMain.java47 threads[t].start();
/art/test/151-OpenFileLimit/src/
H A DMain.java52 thread.start();
/art/test/1902-suspend/src/art/
H A DTest1902.java62 other.start();
/art/test/1903-suspend-self/src/art/
H A DTest1903.java68 other.start();
70 // Wait for the other thread to actually start doing things.
/art/test/1904-double-suspend/src/art/
H A DTest1904.java62 other.start();
/art/test/1907-suspend-list-self-twice/src/art/
H A DTest1907.java56 thrd.start();
/art/test/1941-dispose-stress/src/art/
H A DTest1941.java62 thr.start();

Completed in 695 milliseconds

1234567891011