Home
last modified time | relevance | path

Searched refs:odd (Results 1 – 11 of 11) sorted by relevance

/art/test/1933-monitor-current-contended/
Dinfo.txt1 Tests jvmti monitor events in odd situations.
4 many odd situations.
/art/test/1932-monitor-events-misc/
Dinfo.txt1 Tests jvmti monitor events in odd situations.
4 many odd situations.
/art/runtime/
Dnative_stack_dump.cc83 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
88 if (!odd) { in WritePrefix()
97 : in(in_fd, false), out(out_fd, false), file(file_name), child_pid(pid), odd(true) {} in Addr2linePipe()
109 bool odd; // Print state for indentation of lines. member
205 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
221 (*pipe)->odd = !(*pipe)->odd; in Drain()
/art/test/647-jni-get-field-id/
Dinfo.txt1 Test for native calls to JNI GetFieldID() with odd signatures.
/art/test/708-jit-cache-churn/src/
DJitCacheChurnTest.java211 int odd = 0; in $noinline$Call() local
214 odd += Integer.parseInt(numbers[i]); in $noinline$Call()
216 odd *= 3; in $noinline$Call()
222 return (odd + even) % 10; in $noinline$Call()
/art/tools/timeout_dumper/
Dtimeout_dumper.cc137 : in(in_fd), out(out_fd), file(file_name), child_pid(pid), odd(true) {} in Addr2linePipe()
149 bool odd; // Print state for indentation of lines. member
195 void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
200 if (!odd) { in WritePrefix()
255 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
268 (*pipe)->odd = !(*pipe)->odd; in Drain()
/art/test/663-odd-dex-size/
Dinfo.txt1 Test for a dex file with an odd size in a vdex file.
/art/test/663-odd-dex-size2/
Dinfo.txt1 Test for two files with an odd size in a vdex file.
/art/test/663-odd-dex-size3/
Dinfo.txt1 Test for a dex file with an odd size followed by an aligned dex file.
/art/test/663-odd-dex-size4/
Dinfo.txt1 Test for an aligned dex file followed by a dex file with an odd size.
/art/compiler/utils/
Dintrusive_forward_list_test.cc577 auto odd = [](ValueType value) { return (value.value & 1) != 0; }; in Remove() local
578 ref.remove_if(odd); in Remove()
579 ifl.remove_if(odd); in Remove()