HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 101 - 125 of 545) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/qemu/elff/
dwarf_die.cc 132 * where that routine is inlined), or a pair "low PC, and high PC" describing
137 AddrType low; local
140 while (elf_file()->get_range(range_off, &low, &high) &&
141 (low != 0 || high != 0)) {
142 if (address >= low && address < high) {
212 Elf_Xword low, high; local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
214 (low != 0 || high != 0)) {
216 (unsigned long long)low, (unsigned long long)high);
220 Elf_Word low, high; local
    [all...]
  /frameworks/compile/libbcc/runtime/test/Unit/
absvti2_test.c 42 at.s.high, at.s.low, xt.s.high, xt.s.low,
43 expectedt.s.high, expectedt.s.low);
negvti2_test.c 40 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
multi3_test.c 36 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
37 expectedt.s.high, expectedt.s.low);
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_die.cc 132 * where that routine is inlined), or a pair "low PC, and high PC" describing
137 AddrType low; local
140 while (elf_file()->get_range(range_off, &low, &high) &&
141 (low != 0 || high != 0)) {
142 if (address >= low && address < high) {
212 Elf_Xword low, high; local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
214 (low != 0 || high != 0)) {
216 (unsigned long long)low, (unsigned long long)high);
220 Elf_Word low, high local
    [all...]
  /external/openssl/crypto/bn/
bn_lcl.h 145 * with low Hamming weight, so we use w = 1 for b <= 23.
268 # define BN_UMULT_LOHI(low,high,a,b) \
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
328 BN_ULONG high,low,ret,tmp=(a); \
330 BN_UMULT_LOHI(low,high,w,tmp); \
334 ret += low; \
335 (c) += (ret<low)?1:0; \
340 BN_ULONG high,low,ret,ta=(a);
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 83 blkid_loff_t high, low; local
171 low = 0;
173 low = high;
174 while (low < high - 1)
176 const blkid_loff_t mid = (low + high) / 2;
179 low = mid;
183 return low + 1;
  /external/oprofile/module/x86/
op_model_p4.c 372 #define CCCR_READ(low, high, i) do {rdmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0)
373 #define CCCR_WRITE(low, high, i) do {wrmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0)
549 unsigned int low, high; local
555 rdmsr(MSR_IA32_MISC_ENABLE, low, high);
556 if (!MISC_PMC_ENABLED_P(low)) {
563 rdmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high);
564 CCCR_CLEAR(low);
565 CCCR_SET_REQUIRED_BITS(low);
627 unsigned long ctr, low, high, stag, real; local
674 unsigned int low, high, stag; local
691 unsigned int low, high, stag; local
    [all...]
op_x86_model.h 18 uint low; member in struct:op_saved_msr
  /frameworks/base/core/java/android/text/
AndroidBidi.java 164 for (int low = i, hi = e - 2; low < hi; low += 2, hi -= 2) {
165 int x = ld[low]; ld[low] = ld[hi]; ld[hi] = x;
166 x = ld[low+1]; ld[low+1] = ld[hi+1]; ld[hi+1] = x;
  /frameworks/base/graphics/java/android/graphics/drawable/
LevelListDrawable.java 66 public void addLevel(int low, int high, Drawable drawable) {
68 mLevelListState.addLevel(low, high, drawable);
93 int low = 0; local
111 low = a.getInt(
140 mLevelListState.addLevel(low, high, dr);
172 public void addLevel(int low, int high, Drawable drawable) {
174 mLows[pos] = low;
  /external/e2fsprogs/resize/
extent.c 144 int low, high, mid; local
153 low = 0;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
160 mid = low;
163 lowval = extent->list[low].old_loc;
173 mid = low + ((int) (range * (high-low)));
183 low = mid+1
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 38 public static int constrain(int amount, int low, int high) {
39 return amount < low ? low : (amount > high ? high : amount);
42 public static float constrain(float amount, float low, float high) {
43 return amount < low ? low : (amount > high ? high : amount);
  /bionic/libm/src/
s_atan.c 81 u_int32_t low; local
82 GET_LOW_WORD(low,x);
84 (ix==0x7ff00000&&(low!=0)))
  /external/kernel-headers/original/asm-x86/
msr.h 126 #define rdtscl(low) \
127 ((low) = (u32)native_read_tsc())
134 #define rdpmc(counter,low,high) \
137 (low) = (u32)_l; \
198 #define rdtsc(low,high) \
199 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
201 #define rdtscl(low) \
202 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
204 #define rdtscp(low,high,aux) \
205 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux)
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
chunk_range.cc 98 int low = 0; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
110 low = mid + 1;
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
million.S 9 addi 15,15,499997@l # load low 16-bits of counter
  /external/webkit/Source/WebCore/html/
HTMLMeterElement.cpp 131 double HTMLMeterElement::low() const function in class:WebCore::HTMLMeterElement
133 double low = min(); local
134 parseToDoubleForNumberType(getAttribute(lowAttr), &low); local
135 return std::min(std::max(low, min()), max());
138 void HTMLMeterElement::setLow(double low, ExceptionCode& ec)
140 if (!isfinite(low)) {
144 setAttribute(lowAttr, String::number(low));
151 return std::min(std::max(high, low()), max());
181 double lowValue = low();
187 // The optimum range stays under low
    [all...]
  /external/e2fsprogs/e2fsck/
ea_refcount.c 158 int low, high, mid; local
164 low = 0;
184 while (low <= high) {
186 mid = (low+high)/2;
188 if (low == high)
189 mid = low;
192 lowval = refcount->list[low].ea_blk;
202 mid = low + ((int) (range * (high-low)));
212 low = mid+1
    [all...]
  /bionic/libc/kernel/common/linux/
hardirq.h 28 #error HARDIRQ_BITS is too low!
47 #error PREEMPT_ACTIVE is too low!
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_CMP_LONG.S 27 bhi .L${opcode}_greater @ unsigned compare on low part
  /dalvik/vm/mterp/armv5te/
OP_CONST.S 4 FETCH(r0, 1) @ r0<- bbbb (low)
OP_CONST_WIDE_32.S 3 FETCH(r0, 1) @ r0<- 0000bbbb (low)
  /development/ndk/platforms/android-3/include/linux/
hardirq.h 28 #error HARDIRQ_BITS is too low!
47 #error PREEMPT_ACTIVE is too low!
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 123 * the 16 low-order bits of the given integer value; the 16 high-order bits
215 // of a Unicode surrogate pair and low char of the pair
226 // Avoid spanning by including the low
231 * and it is the high char of a high/low pair with
232 * no low char provided.
235 * of a high/low surrogate pair, but there is
236 * no corresponding low as the high is the last char
282 * [1101 11yy] [yyxx xxxx] (low surrogate)
287 char high, low; local
290 low = chars[i]
415 char high, low; local
    [all...]

Completed in 1784 milliseconds

1 2 3 45 6 7 8 91011>>