Searched defs:low (Results 176 - 200 of 282) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolver.h638 UChar low = m_current.current(); local
639 // Verify the low part. If invalid, then assume an invalid surrogate pair and retry.
640 if (!U16_IS_TRAIL(low))
642 current = U16_GET_SUPPLEMENTARY(high, low);
/external/chromium_org/third_party/android_opengl/etc1/
H A Detc1.cpp189 etc1_uint32 low, bool second, bool flipped) {
209 int offset = ((low >> k) & 1) | ((low >> (k + 15)) & 2);
223 etc1_uint32 low = (pIn[4] << 24) | (pIn[5] << 16) | (pIn[6] << 8) | pIn[7]; local
250 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
251 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped);
256 etc1_uint32 low; member in struct:__anon11508::__anon11509
371 &pCompressed->low, yy + x * 4, pModifierTable);
386 &pCompressed->low, y + xx * 4, pModifierTable);
458 pCompressed->low
188 decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table, etc1_uint32 low, bool second, bool flipped) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_bld.cpp451 uint32_t high, low, count=1; local
455 low = UCOL_COMMON_TOP2<<24;
459 low = UCOL_BYTE_COMMON << 24; //0x05000000;
468 g->noOfRanges = ucol_allocWeights(low, high, count, maxByte, g->ranges);
479 uint32_t low = lows[fStrength*3+strength]; local
492 if(low >= high && strength > UCOL_PRIMARY) {
498 if (low < UCOL_COMMON_TOP2<<24 ) {
499 // Override if low range is less than UCOL_COMMON_TOP2.
500 low = UCOL_COMMON_TOP2<<24;
504 // Override if low rang
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtzfmttst.cpp107 UDate low, high; local
109 low = cal->getTime(status);
262 if (!((BasicTimeZone*)&outtz)->hasEquivalentTransitions((BasicTimeZone&)*tz, low, high, TRUE, status)) {
/external/chromium_org/third_party/icu/source/test/perf/collperf/
H A Dcollperf.cpp417 int low = 0; local
423 guess = (high + low)/2;
434 low = guess;
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_test.cc787 static bool Between(uint64_t val, uint64_t low, uint64_t high) { argument
788 bool result = (val >= low) && (val <= high);
792 (unsigned long long)(low),
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_idct.c34 static INLINE tran_low_t clamp_high(tran_high_t value, tran_low_t low, argument
36 return value < low ? low : (value > high ? high : value);
/external/chromium_org/third_party/opus/src/src/
H A Dopus_multistream_encoder.c193 int low; local
205 low = SHR32(diff, DB_SHIFT-1);
206 frac = SHL16(diff - SHL16(low, DB_SHIFT-1), 16-DB_SHIFT);
208 low = (int)floor(2*diff);
209 frac = 2*diff - low;
211 return max + diff_table[low] + MULT16_16_Q15(frac, SUB16(diff_table[low+1], diff_table[low]));
/external/chromium_org/third_party/skia/third_party/etc1/
H A Detc1.cpp176 etc1_uint32 low, bool second, bool flipped) {
196 int offset = ((low >> k) & 1) | ((low >> (k + 15)) & 2);
210 etc1_uint32 low = (pIn[4] << 24) | (pIn[5] << 16) | (pIn[6] << 8) | pIn[7]; local
237 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
238 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped);
243 etc1_uint32 low; member in struct:__anon15422
358 &pCompressed->low, yy + x * 4, pModifierTable);
373 &pCompressed->low, y + xx * 4, pModifierTable);
445 pCompressed->low
175 decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table, etc1_uint32 low, bool second, bool flipped) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dsslstreamadapter_unittest.cc801 // Test DTLS-SRTP with all low ciphers
804 std::vector<std::string> low; local
805 low.push_back(kAES_CM_HMAC_SHA1_32);
806 SetDtlsSrtpCiphers(low, true);
807 SetDtlsSrtpCiphers(low, false);
825 std::vector<std::string> low; local
826 low.push_back(kAES_CM_HMAC_SHA1_32);
828 SetDtlsSrtpCiphers(low, false);
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java855 //final int low = getI4 (code, scan + 4);
856 final int low = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (0xFF & code [++ scan]);
861 final int [] targets = new int [high - low + 2];
864 for (int index = low; index <= high; ++ index)
868 targets [index - low + 1] = ip + ov;
873 branches.put (ip, new TABLESWITCH (low, high, targets));
1731 TABLESWITCH (final int low, final int high, final int [] targets /* first one is default */) argument
1734 m_low = low;
1755 // low, high:
1756 final int low
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtzfmttst.cpp107 UDate low, high; local
109 low = cal->getTime(status);
262 if (!((BasicTimeZone*)&outtz)->hasEquivalentTransitions((BasicTimeZone&)*tz, low, high, TRUE, status)) {
/external/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp417 int low = 0; local
423 guess = (high + low)/2;
434 low = guess;
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java762 int low = ByteArray.read32bit(code, index2);
764 return index2 + (high - low + 1) * 4 + 8;
1524 int low, high; field in class:CodeIterator.Table
1526 Table(int pos, int defaultByte, int low, int high, int[] offsets) { argument
1528 this.low = low;
1533 ByteArray.write32bit(low, newcode, dest);
/external/kernel-headers/original/uapi/sound/
H A Dsfnt_info.h130 unsigned char low, high; /* key note range */ member in struct:soundfont_voice_info
/external/libopus/src/
H A Dopus_multistream_encoder.c193 int low; local
205 low = SHR32(diff, DB_SHIFT-1);
206 frac = SHL16(diff - SHL16(low, DB_SHIFT-1), 16-DB_SHIFT);
208 low = (int)floor(2*diff);
209 frac = 2*diff - low;
211 return max + diff_table[low] + MULT16_16_Q15(frac, SUB16(diff_table[low+1], diff_table[low]));
/external/libvorbis/lib/
H A Dvorbisenc.c659 float low=map[j]; local
661 float del=(req-low)/(high-low);
690 /* too low/high an ATH floater is nonsensical, but doesn't break anything */
1017 int setp=(number&0xf); /* a read request has a low nibble of 0 */
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c394 static int get_active_quality(int q, int gfu_boost, int low, int high, argument
398 } else if (gfu_boost < low) {
401 const int gap = high - low;
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c123 uint16_t low[POS_STATES_MAX][LEN_LOW_SYMBOLS]; member in struct:lzma_len_dec
575 uint32_t low = prev_byte >> (8 - s->lzma.lc); local
577 return s->lzma.literal[low + high];
626 probs = l->low[pos_state];
/external/pixman/pixman/
H A Dpixman-access.c566 uint8_t low = 0; local
569 while (high - low > 1)
571 uint8_t mid = (low + high) / 2;
576 low = mid;
579 if (to_linear[high] - f < f - to_linear[low])
582 return low;
/external/qemu/include/fpu/
H A Dsoftfloat.h125 uint64_t low; member in struct:__anon29704
129 #define make_floatx80_init(exp, mant) { .low = mant, .high = exp }
132 uint64_t high, low; member in struct:__anon29705
134 uint64_t low, high;
137 #define make_float128(high_, low_) ((float128) { .high = high_, .low = low_ })
138 #define make_float128_init(high_, low_) { .high = high_, .low = low_ }
529 return (a.high & 0x7fff) == 0x7fff && a.low == 0x8000000000000000LL;
539 return (a.high & 0x7fff) == 0 && a.low == 0;
549 return ((a.high & 0x7fff) == 0x7fff) && (a.low<<1);
614 return (a.high & 0x7fffffffffffffffLL) == 0x7fff000000000000LL && a.low
[all...]
/external/qemu/include/
H A Dqemu-common.h380 uint32_t high, low; member in struct:__anon29911::__anon29912
382 uint32_t low, high;
389 rl = (uint64_t)u.l.low * (uint64_t)b;
393 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
/external/skia/third_party/etc1/
H A Detc1.cpp176 etc1_uint32 low, bool second, bool flipped) {
196 int offset = ((low >> k) & 1) | ((low >> (k + 15)) & 2);
210 etc1_uint32 low = (pIn[4] << 24) | (pIn[5] << 16) | (pIn[6] << 8) | pIn[7]; local
237 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
238 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped);
243 etc1_uint32 low; member in struct:__anon30824
358 &pCompressed->low, yy + x * 4, pModifierTable);
373 &pCompressed->low, y + xx * 4, pModifierTable);
445 pCompressed->low
175 decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table, etc1_uint32 low, bool second, bool flipped) argument
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompose.h592 size_t low = 0; local
594 while (low < high) {
595 size_t mid = (low + high) / 2;
602 low = mid + 1;
605 for (size_t i = mid; i > low; --i) {
/external/valgrind/main/VEX/priv/
H A Dguest_s390_helpers.c1015 "ldr 6,%[low]\n\t" \
1018 : [high] "f"(hi), [low] "f"(lo) \
1091 "ldr 6,%[low]\n\t" \
1094 : [high] "f"(hi), [low] "f"(lo) \
1128 "ldr 6,%[low]\n\t" \
1131 : [high] "f"(hi), [low] "f"(lo) \
1179 "ldr 6,%[low]\n\t" \
1182 : [high] "f"(cc_dep1), [low] "f"(cc_dep2), \
1229 "ldr 6,%[low]\n\t" \
1232 : [high] "f"(hi), [low] "
1590 Int low = (Int)(cc_dep1 & 0xFFFFFFFF); local
[all...]

Completed in 854 milliseconds

1234567891011>>