HomeSort by relevance Sort by last modified time
    Searched refs:high (Results 251 - 275 of 1856) sorted by null

<<11121314151617181920>>

  /external/compiler-rt/lib/builtins/
floattixf.c 78 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
floatuntidf.c 74 fb.u.s.high = ((e + 1023) << 20) | /* exponent */
75 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
floatuntixf.c 76 fb.u.high.s.low = (e + 16383); /* exponent */
  /external/compiler-rt/test/builtins/Unit/
ctzti2_test.c 33 at.s.high, at.s.low, x, expected);
ffsti2_test.c 32 at.s.high, at.s.low, x, expected);
mulvti3_test.c 40 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
41 expectedt.s.high, expectedt.s.low);
parityti2_test.c 41 at.s.high, at.s.low, x, expected);
cmpti2_test.c 35 at.s.high, at.s.low, bt.s.high, bt.s.low, x, expected);
fixdfti_test.c 39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixsfti_test.c 39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunsdfti_test.c 41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunssfti_test.c 41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunsxfti_test.c 42 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
JapaneseCalendar.java 280 int high = ERAS.length / 3; local
282 while (low < high - 1) {
283 int i = (low + high) / 2;
298 high = i;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
JapaneseCalendar.java 294 int high = ERAS.length / 3; local
296 while (low < high - 1) {
297 int i = (low + high) / 2;
312 high = i;
  /external/pdfium/core/fxcodec/jbig2/
JBig2_HuffmanTable.cpp 60 const int high = static_cast<int>(HTHIGH); local
61 if (low > high)
77 } while (cur_low.ValueOrDie() < high);
90 RANGELOW[NTEMP] = high;
  /external/tcpdump/
rpc_msg.h 85 uint32_t high; member in struct:sunrpc_rejected_reply::__anon33540::__anon33541
  /frameworks/av/media/libeffects/testlibs/
AudioPeakingFilter.h 37 // All is left for this class to do is mapping between high-level parameters to
89 void getBandRange(uint32_t & low, uint32_t & high) const;
144 // A coefficient interpolator, used for mapping the high level parameters to
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP.c 111 OMX_S16 high, low, range; local
149 high = ( 32 * scaleFactor) - 1;
230 if (pDstMVCurMB[iBlk].dx > high)
239 if (pDstMVCurMB[iBlk].dy > high)
  /frameworks/base/cmds/incident/
main.cpp 101 size_t high = INCIDENT_SECTION_COUNT - 1; local
103 while (low <= high) {
104 size_t mid = (low + high) >> 1;
111 high = mid - 1;
  /external/icu/icu4c/source/i18n/
ucoleitr.cpp 49 int32_t high; member in struct:RCEI
112 buffer[bufferIndex].high = ixHigh;
174 buffer[bufferIndex].high = ixHigh;
335 uint32_t low = 0, high = 0; local
346 high = cei->getOffset();
361 *ixHigh = high;
388 int32_t low = 0, high = 0; local
403 high = cei->getOffset();
415 rceb.put((uint32_t)ce, low, high, *status);
425 pceBuffer.put(result, rcei->low, rcei->high, *status)
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_const_string_jumbo.S 4 FETCH r2, 2 @ r2<- BBBB (high)
op_const_wide_32.S 4 FETCH_S r2, 2 @ r2<- ssssBBBB (high)
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 422 * @param high {@code 0..255;} high byte
425 protected static short codeUnit(int low, int high) {
430 if ((high & 0xff) != high) {
431 throw new IllegalArgumentException("high out of range 0..255");
434 return (short) (low | (high << 8));
442 * @param n2 {@code 0..15;} medium-high nibble
443 * @param n3 {@code 0..15;} high nibble
470 * @param high {@code 0..15;} high nibbl
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 477 * @param high {@code 0..255;} high byte
480 protected static short codeUnit(int low, int high) {
485 if ((high & 0xff) != high) {
486 throw new IllegalArgumentException("high out of range 0..255");
489 return (short) (low | (high << 8));
497 * @param n2 {@code 0..15;} medium-high nibble
498 * @param n3 {@code 0..15;} high nibble
525 * @param high {@code 0..15;} high nibbl
    [all...]

Completed in 1393 milliseconds

<<11121314151617181920>>