HomeSort by relevance Sort by last modified time
    Searched defs:hi (Results 201 - 225 of 477) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/icu4c/source/i18n/
nfrs.cpp 447 int32_t hi = rules.size(); local
448 if (hi > 0) {
451 while (lo < hi) {
452 int32_t mid = (lo + hi) / 2;
457 hi = mid;
463 if (hi == 0) { // bad rule set, minimum base > 0
467 NFRule *result = rules[hi - 1];
475 if (hi == 1) { // bad rule set, no prior rule to rollback to from this base
478 result = rules[hi - 2];
  /external/libunwind/src/dwarf/
Gfind_proc_info-lsb.c 760 unsigned long lo, hi, mid; local
763 for (lo = 0, hi = table_len; lo < hi;)
765 mid = (lo + hi) / 2;
769 hi = mid;
773 if (hi <= 0)
775 e = table + hi - 1;
793 unsigned long lo, hi, mid; local
799 for (lo = 0, hi = table_len; lo < hi;)
    [all...]
  /external/libvorbis/lib/
codec_internal.h 127 highlevel_encode_setup hi; /* used only by vorbisenc.c. It's a member in struct:codec_setup_info
sharedbook.c 395 /* now fill in 'unused' entries in the firsttable with hi/lo search
399 long lo=0,hi=0; local
405 while( hi<n && word>=(c->codelist[hi]&mask))hi++;
412 unsigned long hival=n-hi;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 420 LLVMValueRef lo, hi; local
429 hi = lp_build_pack2(gallivm, int32_type, int16_type, tmp[2], tmp[3]);
430 dst[i] = lp_build_pack2(gallivm, int16_type, dst_type, lo, hi);
475 LLVMValueRef lo, hi, a, b; local
490 hi = lp_build_pack2(gallivm, int32_type, int16_type, tmp[2], tmp[3]);
491 dst[i] = lp_build_pack2(gallivm, int16_type, dst_type, lo, hi);
  /external/pixman/pixman/
pixman-inlines.h 99 uint32_t lo, hi; local
112 hi = ((tl >> 8) & 0xff00ff) * distixiy;
115 hi += ((tr >> 8) & 0xff00ff) * distxiy;
118 hi += ((bl >> 8) & 0xff00ff) * distixy;
121 hi += ((br >> 8) & 0xff00ff) * distxy;
123 return ((lo >> 8) & 0xff00ff) | (hi & ~0xff00ff);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xf86vmode.h 131 float hi; member in struct:__anon33253
  /external/skia/src/core/
SkGlyphCache.cpp 287 int hi = 0; local
294 hi = count - 1;
295 while (lo < hi) {
296 int mid = (hi + lo) >> 1;
300 hi = mid;
303 glyph = gptr[hi];
311 // check if we need to bump hi before falling though to the allocator
313 hi += 1;
317 // not found, but hi tells us where to inser the new glyph
323 *fGlyphArray.insert(hi) = glyph
    [all...]
  /external/stlport/src/
num_get_float.cpp 42 uint32_t hi; member in struct:_ll::__anon34964
46 uint32_t hi;
302 int hi, lo; /* offsets in power of ten table */ local
304 hi = (min) (exp_hi, num_hi); /* only a few large powers of 10 */
305 exp_hi -= hi; /* could iterate in extreme case */
306 hi += thi-1;
307 _Stl_mult64(p, _Stl_tenpow[hi], prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
392 if (bexp <= -1022) { /* HI denorm or underflow */
579 v.ieee.mantissa0 = vv.i32.hi;
    [all...]
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 892 UInt ni, hi; local
898 for (hi = 0; hi < 16; hi++) {
902 UInt i = ni + hi;
906 boolRes |= (m << hi);
907 if ((validL & (1 << hi)) == 0)
1143 UInt ni, hi; local
    [all...]
host_generic_reg_alloc2.c 245 Int hi = size-1; local
253 bigN = hi - lo + 1; if (bigN < 2) return;
260 for (i = lo + h; i <= hi; i++) {
276 for (i = lo + h; i <= hi; i++) {
    [all...]
main_main.c 932 HInstr* hi = rcode->arr[i]; local
    [all...]
  /external/valgrind/main/exp-sgcheck/
pc_common.c 148 Addr hi; member in struct:__anon36512::__anon36513::__anon36517
204 Addr lo, Addr hi, Seg* seglo, Seg* seghi )
211 xe.XE.SysParam.hi = hi;
544 Addr hi = xe->XE.SysParam.hi; local
610 hi, hi-Seg__addr(seghi), Seg__size(seghi) );
634 hi, hi-Seg__addr(seghi), Seg__size(seghi) )
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp 423 uint64_t hi = nowUs / 1000000ll; local
426 return (hi << 32) | lo;
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 501 uint64_t hi = nowUs / 1000000ll; local
504 return (hi << 32) | lo;
  /libcore/luni/src/main/java/java/util/
Arrays.java 191 int hi = endIndex - 1; local
193 while (lo <= hi) {
194 int mid = (lo + hi) >>> 1;
200 hi = mid - 1;
241 int hi = endIndex - 1; local
243 while (lo <= hi) {
244 int mid = (lo + hi) >>> 1;
250 hi = mid - 1;
291 int hi = endIndex - 1; local
293 while (lo <= hi) {
352 int hi = endIndex - 1; local
413 int hi = endIndex - 1; local
463 int hi = endIndex - 1; local
519 int hi = endIndex - 1; local
585 int hi = endIndex - 1; local
635 int hi = endIndex - 1; local
    [all...]
TimSort.java 172 static <T> void sort(T[] a, int lo, int hi, Comparator<? super T> c) {
174 Arrays.sort(a, lo, hi);
178 Arrays.checkStartAndEnd(a.length, lo, hi);
179 int nRemaining = hi - lo;
185 int initRunLen = countRunAndMakeAscending(a, lo, hi, c);
186 binarySort(a, lo, hi, lo + initRunLen, c);
199 int runLen = countRunAndMakeAscending(a, lo, hi, c);
218 if (DEBUG) assert lo == hi; local
236 * @param hi the index after the last element in the range to be sorted
238 * not already known to be sorted (@code lo <= start <= hi}
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 42 uint32_t hi; member in struct:_ll::__anon42938
46 uint32_t hi;
302 int hi, lo; /* offsets in power of ten table */ local
304 hi = (min) (exp_hi, num_hi); /* only a few large powers of 10 */
305 exp_hi -= hi; /* could iterate in extreme case */
306 hi += thi-1;
307 _Stl_mult64(p, _Stl_tenpow[hi], prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
392 if (bexp <= -1022) { /* HI denorm or underflow */
579 v.ieee.mantissa0 = vv.i32.hi;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
syncconst.h 85 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i))
86 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h))
88 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo))
90 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo)
176 int hi; member in struct:_XSyncValue
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
syncconst.h 85 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i))
86 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h))
88 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo))
90 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo)
176 int hi; member in struct:_XSyncValue
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 216 CanvasTransform hi = mHScale; local
229 if (mPreScaledImage == null || imageWidth != hi.getScaledImgSize()) {
230 double xScale = hi.getScaledImgSize() / (double) awtImage.getWidth();
269 gc.drawImage(mPreScaledImage, hi.translate(0), vi.translate(0));
276 if (hi.getScale() < 1.0) {
282 int srcWidth = hi.getImgSize();
284 int destX = hi.translate(0);
286 int destWidth = hi.getScaledImgSize();
  /art/compiler/dex/quick/arm/
target_arm.cc 348 "hi", "ls", "ge", "lt", "gt", "le", "al", "nv"};
647 RegStorage hi = RegStorage::Solo32(RegStorage::kFloatingPoint | reg_num | 1); local
649 MarkPreservedSingle(v_reg + 1, hi);
  /bionic/tests/
pthread_test.cpp 851 uintptr_t lo, hi; local
853 sscanf(line, "%" PRIxPTR "-%" PRIxPTR " %*4s %*x %*x:%*x %*d %10s", &lo, &hi, name);
855 maps_stack_hi = reinterpret_cast<void*>(hi);
  /external/bluetooth/bluedroid/stack/smp/
aes.c 500 uint_8t cc, rc, hi; local
521 hi = (keylen + 28) << 2;
522 ctx->rnd = (hi >> 4) - 1;
523 for( cc = keylen, rc = 1; cc < hi; cc += 4 )
  /external/bzip2/
blocksort.c 35 Int32 hi )
40 if (lo == hi) return;
42 if (hi - lo > 3) {
43 for ( i = hi-4; i >= lo; i-- ) {
46 for ( j = i+4; j <= hi && ec_tmp > eclass[fmap[j]]; j += 4 )
52 for ( i = hi-1; i >= lo; i-- ) {
55 for ( j = i+1; j <= hi && ec_tmp > eclass[fmap[j]]; j++ )
99 Int32 sp, lo, hi; local
113 fpop ( lo, hi );
114 if (hi - lo < FALLBACK_QSORT_SMALL_THRESH)
631 Int32 sp, lo, hi, d; local
891 Int32 hi = (ftab[sb+1] & CLEARMASK) - 1; local
    [all...]

Completed in 6276 milliseconds

1 2 3 4 5 6 7 891011>>