Searched refs:mid (Results 1 – 6 of 6) sorted by relevance
/ndk/tests/build/test-gnustl-chrono/jni/ |
D | hanoi.c | 3 void hanoi(int from, int to, int mid, int n, void (*callback)(int, int)) { in hanoi() argument 7 hanoi(from, mid, to, n - 1, callback); in hanoi() 9 hanoi(mid, to, from, n - 1, callback); in hanoi()
|
D | hanoi.h | 8 extern void hanoi(int from, int to, int mid, int n,
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindCursor.hpp | 904 uint32_t mid = (low + high) / 2; in getInfoFromCompactEncodingSection() local 907 if (topIndex.functionOffset(mid) <= targetFunctionOffset) { in getInfoFromCompactEncodingSection() 908 if ((mid == last) || in getInfoFromCompactEncodingSection() 909 (topIndex.functionOffset(mid + 1) > targetFunctionOffset)) { in getInfoFromCompactEncodingSection() 910 low = mid; in getInfoFromCompactEncodingSection() 913 low = mid + 1; in getInfoFromCompactEncodingSection() 916 high = mid; in getInfoFromCompactEncodingSection() 954 uint32_t mid = (low + high) / 2; in getInfoFromCompactEncodingSection() local 955 if (pageIndex.functionOffset(mid) <= targetFunctionOffset) { in getInfoFromCompactEncodingSection() 956 if (mid == (uint32_t)(pageHeader.entryCount() - 1)) { in getInfoFromCompactEncodingSection() [all …]
|
/ndk/sources/host-tools/nawk-20071023/ |
D | lex.c | 439 int cond, low, mid, high; in binsearch() local 444 mid = (low + high) / 2; in binsearch() 445 if ((cond = strcmp(w, kp[mid].word)) < 0) in binsearch() 446 high = mid - 1; in binsearch() 448 low = mid + 1; in binsearch() 450 return mid; in binsearch()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
D | asan_testing.h | 17 ( const void *beg, const void *mid, const void *end );
|
/ndk/sources/android/support/src/musl-math/ |
D | libm.h | 37 uint32_t mid; member
|