HomeSort by relevance Sort by last modified time
    Searched refs:high (Results 551 - 575 of 1418) sorted by null

<<21222324252627282930>>

  /frameworks/support/v7/appcompat/src/android/support/v7/app/
NotificationCompatImplBase.java 450 public static float constrain(float amount, float low, float high) {
451 return amount < low ? low : (amount > high ? high : amount);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_loopfilter_mmx.asm 133 ; calculate high edge variance
154 pand mm2, mm4 ; high var mask (hvm)(p1 - q1)
191 pandn mm4, mm5 ; high edge variance additive
426 ; calculate high edge variance
457 pand mm2, mm4 ; high var mask (hvm)(p1 - q1)
509 pandn mm4, mm5 ; high edge variance additive
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 240 /** set low bound, high bound and index for the item */
241 final public void setValue(int index, int low, int high) {
244 mHigh = high;
245 mCenter = (low + high) / 2;
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
elfcomm.c 364 /* Return the high-order 32-bits and the low-order 32-bits
368 byte_get_64 (unsigned char *field, elf_vma *high, elf_vma *low)
372 *high = byte_get_big_endian (field, 4);
377 *high = byte_get_little_endian (field + 4, 4);
  /external/boringssl/src/crypto/bn/
generic.c 100 BN_ULONG high, low, ret, tmp = (a); \
102 BN_UMULT_LOHI(low, high, w, tmp); \
105 (c) += high; \
113 BN_ULONG high, low, ret, ta = (a); \
114 BN_UMULT_LOHI(low, high, w, ta); \
116 (c) = high; \
631 * because its high half cannot be all-ones. */
678 /* Keep in mind that additions to hi can not overflow, because the high word of
722 * the high word of a multiplication result cannot be all-ones. */
  /external/v8/src/ia32/
macro-assembler-ia32.h 375 void ShlPair(Register high, Register low, uint8_t imm8);
376 void ShlPair_cl(Register high, Register low);
377 void ShrPair(Register high, Register low, uint8_t imm8);
378 void ShrPair_cl(Register high, Register src);
379 void SarPair(Register high, Register low, uint8_t imm8);
380 void SarPair_cl(Register high, Register low);
    [all...]
  /art/compiler/optimizing/
parallel_move_resolver.cc 94 return Location::RegisterLocation(location.high());
96 return Location::FpuRegisterLocation(location.high());
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 156 mirror::ByteArray* byte_array, int32_t high, int32_t offset, int32_t byte_count, \
163 offset, high, allocator_type); \
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
preprocessor.js 78 //HTML input (e.g. ASCII codes) to avoid performance-cost operations for high-range code points.
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 406 int high = iter.s32bitAt(index += 4); local
407 int end = (high - low + 1) * 4 + (index += 4);
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 241 int high = ci.s32bitAt(pos + 8);
242 int ncases = high - low + 1;
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_Utils.h 30 #define PWL_MAKEDWORD(low, high) \
31 ((FX_DWORD)((FX_WORD)(low) | (FX_DWORD)(((FX_WORD)(high)) << 16)))
  /external/selinux/libsepol/src/
module_to_cil.c 521 if (cat->low == cat->high) {
524 cil_printf("range %s %s", pdb->p_cat_val_to_name[cat->low - 1], pdb->p_cat_val_to_name[cat->high - 1]);
2532 uint16_t high; local
2727 uint32_t high; local
2751 uint64_t high; local
2900 char *high; local
    [all...]
  /external/v8/src/base/
ieee754.cc 40 * n0 = ((*(int*)&one)>>29)^1; * index of high word *
41 * ix0 = *(n0+(int*)&x); * high word of x *
227 GET_HIGH_WORD(hx, x); /* high word of x */
268 uint32_t high; local
271 GET_HIGH_WORD(high, y[0]);
272 i = j - ((high >> 20) & 0x7ff);
279 GET_HIGH_WORD(high, y[0]);
280 i = j - ((high >> 20) & 0x7ff);
373 ix &= 0x7fffffff; /* ix = |x|'s high word*/
741 ix &= 0x7fffffff; /* high word of x *
2131 uint32_t high, low; local
    [all...]
  /external/v8/src/wasm/
decoder.h 166 uint64_t high = (b7 << 24) | (b6 << 16) | (b5 << 8) | b4;
167 return (high << 32) | low;
  /external/v8/test/mjsunit/es6/
string-codepointat.js 44 // Lone high surrogates
  /hardware/qcom/audio/post_proc/
equalizer.c 124 uint32_t *low, uint32_t *high)
128 *high = equalizer_band_freq_range[band][1];
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 133 loctset->dic_freq.high, YOMINASI_DIC_FREQ_DIV);
349 loctset->dic_freq.high, YOMINASI_DIC_FREQ_DIV);
ndbdic.c 990 loctset->dic_freq.high, COMP_DIC_FREQ_DIV);
1040 loctset->dic_freq.high, COMP_DIC_FREQ_DIV);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
atof-ieee.c 184 generic_floating_point_number.high = NULL;
231 generic_floating_point_number.high
442 /* Word 1. Sign, exponent and perhaps high bits. */
  /toolchain/binutils/binutils-2.25/include/
longlong.h 820 __a.s.low = (al); __a.s.high = (ah); \
821 __b.s.low = (bl); __b.s.high = (bh); \
823 (sl) = __s.s.low; (sh) = __s.s.high; \
828 __a.s.low = (al); __a.s.high = (ah); \
829 __b.s.low = (bl); __b.s.high = (bh); \
831 (sl) = __s.s.low; (sh) = __s.s.high; \
    [all...]
  /external/selinux/policycoreutils/semanage/
seobject.py     [all...]
  /art/runtime/native/
java_lang_Class.cc 195 size_t high = fields->size(); local
198 while (low < high) {
199 auto mid = (low + high) / 2;
207 high = mid;
  /cts/apps/CameraITS/tests/scene1/
test_reprocess_noise_reduction.py 31 Capture reprocessed images with the camera dimly lit. Uses a high analog
34 Captures three reprocessed images, for NR off, "fast", and "high quality".
  /development/ndk/platforms/android-21/include/linux/
if_link.h 302 __be16 high; member in struct:ifla_vxlan_port_range

Completed in 1171 milliseconds

<<21222324252627282930>>