Home
last modified time | relevance | path

Searched refs:mid (Results 1 – 7 of 7) sorted by relevance

/ndk/tests/build/test-gnustl-chrono/jni/
Dhanoi.c3 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()
Dhanoi.h8 extern void hanoi(int from, int to, int mid, int n,
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwindCursor.hpp912 uint32_t mid = (low + high) / 2; in getInfoFromCompactEncodingSection() local
915 if (topIndex.functionOffset(mid) <= targetFunctionOffset) { in getInfoFromCompactEncodingSection()
916 if ((mid == last) || in getInfoFromCompactEncodingSection()
917 (topIndex.functionOffset(mid + 1) > targetFunctionOffset)) { in getInfoFromCompactEncodingSection()
918 low = mid; in getInfoFromCompactEncodingSection()
921 low = mid + 1; in getInfoFromCompactEncodingSection()
924 high = mid; in getInfoFromCompactEncodingSection()
962 uint32_t mid = (low + high) / 2; in getInfoFromCompactEncodingSection() local
963 if (pageIndex.functionOffset(mid) <= targetFunctionOffset) { in getInfoFromCompactEncodingSection()
964 if (mid == (uint32_t)(pageHeader.entryCount() - 1)) { in getInfoFromCompactEncodingSection()
[all …]
DEHHeaderParser.hpp111 size_t mid = low + (len / 2); in findFDE() local
112 tableEntry = hdrInfo.table + mid * tableEntrySize; in findFDE()
117 low = mid; in findFDE()
120 low = mid; in findFDE()
/ndk/sources/host-tools/nawk-20071023/
Dlex.c439 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/
Dasan_testing.h17 ( const void *beg, const void *mid, const void *end );
/ndk/sources/android/support/src/musl-math/
Dlibm.h37 uint32_t mid; member