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.cc82 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
87 if (!odd) { in WritePrefix()
96 : in(in_fd, false), out(out_fd, false), file(file_name), child_pid(pid), odd(true) {} in Addr2linePipe()
108 bool odd; // Print state for indentation of lines. member
204 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
220 (*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/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/tools/signal_dumper/
Dsignal_dumper.cc134 : in(in_fd), out(out_fd), file(file_name), child_pid(pid), odd(true) {} in Addr2linePipe()
146 bool odd; // Print state for indentation of lines. member
192 void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
197 if (!odd) { in WritePrefix()
252 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
265 (*pipe)->odd = !(*pipe)->odd; in Drain()
/art/libartbase/base/
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()