HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 201 - 225 of 743) sorted by null

1 2 3 4 5 6 7 891011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_expm1.c 146 u_int32_t low; local
147 GET_LOW_WORD(low,x);
148 if(((hx&0xfffff)|low)!=0)
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 37 #define LOW 0x0
78 #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
iri2uri.py 56 for low, high in escape_range:
57 if i < low:
59 if i >= low and i <= high:
  /external/compiler-rt/test/Unit/
negti2_test.c 36 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
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);
  /external/elfutils/libdw/
dwarf_entry_breakpoints.c 105 inline int search_range (Dwarf_Addr low, Dwarf_Addr high,
112 if (lines->info[idx].addr < low)
114 else if (lines->info[idx].addr > low)
  /frameworks/base/services/java/com/android/server/am/
ProcessList.java 138 // These are the low-end OOM level limits. This is appropriate for an
193 long low = mOomMinFreeLow[i]; local
195 mOomMinFree[i] = (long)(low + ((high-low)*scale));
  /frameworks/rs/scriptc/
rs_math.rsh 61 * Clamp the value amount between low and high.
64 * @param low
67 _RS_RUNTIME uint __attribute__((overloadable, always_inline)) rsClamp(uint amount, uint low, uint high);
72 _RS_RUNTIME int __attribute__((overloadable, always_inline)) rsClamp(int amount, int low, int high);
76 _RS_RUNTIME ushort __attribute__((overloadable, always_inline)) rsClamp(ushort amount, ushort low, ushort high);
80 _RS_RUNTIME short __attribute__((overloadable, always_inline)) rsClamp(short amount, short low, short high);
84 _RS_RUNTIME uchar __attribute__((overloadable, always_inline)) rsClamp(uchar amount, uchar low, uchar high);
88 _RS_RUNTIME char __attribute__((overloadable, always_inline)) rsClamp(char amount, char low, char high);
  /prebuilts/sdk/renderscript/include/
rs_math.rsh 61 * Clamp the value amount between low and high.
64 * @param low
67 _RS_RUNTIME uint __attribute__((overloadable, always_inline)) rsClamp(uint amount, uint low, uint high);
72 _RS_RUNTIME int __attribute__((overloadable, always_inline)) rsClamp(int amount, int low, int high);
76 _RS_RUNTIME ushort __attribute__((overloadable, always_inline)) rsClamp(ushort amount, ushort low, ushort high);
80 _RS_RUNTIME short __attribute__((overloadable, always_inline)) rsClamp(short amount, short low, short high);
84 _RS_RUNTIME uchar __attribute__((overloadable, always_inline)) rsClamp(uchar amount, uchar low, uchar high);
88 _RS_RUNTIME char __attribute__((overloadable, always_inline)) rsClamp(char amount, char low, char high);
  /ndk/sources/cxx-stl/llvm-libc++/src/
locale.cpp 754 ctype<wchar_t>::do_is(const char_type* low, const char_type* high, mask* vec) const
756 for (; low != high; ++low, ++vec)
757 *vec = static_cast<mask>(isascii(*low) ?
758 ctype<char>::classic_table()[*low] : 0);
759 return low;
763 ctype<wchar_t>::do_scan_is(mask m, const char_type* low, const char_type* high) const
765 for (; low != high; ++low)
766 if (isascii(*low) && (ctype<char>::classic_table()[*low] & m)
    [all...]
  /external/compiler-rt/lib/
floattidf.c 81 fb.u.s.low = (su_int)a; /* mantissa-low */
floatuntidf.c 78 fb.u.s.low = (su_int)a; /* mantissa-low */
  /external/icu4c/extra/scrptrun/
scrptrun.cpp 129 // in the text, see if it's followed by a low surrogate
132 UChar low = charArray[scriptEnd + 1]; local
134 // if it is followed by a low surrogate,
136 if (low >= 0xDC00 && low <= 0xDFFF) {
137 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
  /external/icu4c/layout/
LEFontInstance.cpp 64 LEUnicode16 low = chars[i + 1]; local
66 if (low >= 0xDC00 && low <= 0xDFFF) {
67 code = (high - 0xD800) * 0x400 + low - 0xDC00 + 0x10000;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
HingeJoint.java 80 public void setLimit(float low, float high) {
81 ((HingeConstraint) constraint).setLimit(low, high);
84 public void setLimit(float low, float high, float _softness, float _biasFactor, float _relaxationFactor) {
88 ((HingeConstraint) constraint).setLimit(low, high, _softness, _biasFactor, _relaxationFactor);
  /external/qemu/
gen-icount.h 23 tcg_gen_st16_i32(count, cpu_env, offsetof(CPUState, icount_decr.u16.low));
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
SparseIntArray.java 239 int high = start + len, low = start - 1, guess; local
241 while (high - low > 1) {
242 guess = (high + low) / 2;
245 low = guess;
  /external/tcpdump/
rpc_msg.h 85 u_int32_t low; member in struct:sunrpc_rejected_reply::__anon15844::__anon15845
  /external/webkit/Source/WebCore/html/
HTMLMeterElement.h 50 double low() const;
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODIntervalTree.h 67 // interval. The returned intervals are sorted by increasing low
77 // interval. The returned intervals are sorted by increasing low
87 static IntervalType createInterval(const T& low, const T& high, const UserData data = 0)
89 return IntervalType(low, high, data);
114 // increasing low endpoint.
128 && !(left->data().maxHigh() < interval.low()))
138 if (!(interval.high() < node->data().low()))
  /frameworks/av/media/libeffects/testlibs/
AudioPeakingFilter.h 89 void getBandRange(uint32_t & low, uint32_t & high) const;
145 // the low-level biquad coefficients.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP.c 96 OMX_S16 high, low, range; local
135 low = ( (-32) * scaleFactor);
211 if ( pDstMVCurMB[iBlk].dx < low )
220 if ( pDstMVCurMB[iBlk].dy < low )

Completed in 651 milliseconds

1 2 3 4 5 6 7 891011>>