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

1 2 3 4 5 6 7 891011>>

  /external/libcxx/utils/google-benchmark/src/
cycleclock.h 73 uint64_t low, high;
74 __asm__ volatile("rdtsc" : "=a"(low), "=d"(high));
75 return (high << 32) | low;
83 // high 32 bits in tbu1; low 32 bits in tbl (tbu0 is garbage)
  /external/proguard/src/proguard/obfuscate/
MappingPrinter.java 153 int low,high; local
154 low = lineNumberTableAttribute.getLowestLineNumber();
156 ps.print(low + ":" + high + ":");
  /external/selinux/checkpolicy/
policy_define.h 46 int define_port_context(unsigned int low, unsigned int high);
48 int define_iomem_context(uint64_t low, uint64_t high);
49 int define_ioport_context(unsigned long low, unsigned long high);
  /external/webrtc/webrtc/base/
random_unittest.cc 113 int32_t low,
119 ASSERT_GE(high, low);
121 uint32_t interval = static_cast<uint32_t>(high - low + 1);
124 // The computation high - low + 1 should be 2^32 but overflowed
134 int32_t sample = prng->Rand(low, high);
135 EXPECT_LE(low, sample);
137 buckets[static_cast<uint32_t>(sample - low) / numbers_per_bucket]++;
153 uint32_t low,
159 ASSERT_GE(high, low);
161 uint32_t interval = static_cast<uint32_t>(high - low + 1)
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
DngUtils.h 34 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
portcon.py 77 self.low, self.high = ocon.ports
88 self.low == other.low and \
  /bootable/recovery/
wear_touch.h 28 WearSwipeDetector(int low, int high, OnSwipeCallback cb, void* cookie);
  /device/google/contexthub/firmware/lib/builtins/
int_lib.h 30 su_int low; member in struct:__anon3048::__anon3049
  /external/boringssl/src/crypto/ec/
p256-64.c 295 s64 high, low; local
336 low = tmp[3];
337 mask = low >> 63;
339 * all ones if the MSB of low is 1
340 * all zeros if the MSB of low if 0 */
341 low &= bottom63bits;
342 low -= kPrime3Test;
343 /* if low was greater than kPrime3Test then the MSB is zero */
344 low = ~low;
385 u64 high, low; local
474 u64 high, low; local
    [all...]
  /external/compiler-rt/test/builtins/Unit/
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);
  /external/icu/icu4c/source/extra/scrptrun/
scrptrun.cpp 130 // in the text, see if it's followed by a low surrogate
133 UChar low = charArray[scriptEnd + 1]; local
135 // if it is followed by a low surrogate,
137 if (low >= 0xDC00 && low <= 0xDFFF) {
138 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
  /external/libevent/include/event2/
bufferevent_struct.h 58 size_t low; member in struct:event_watermark
  /external/selinux/libsemanage/src/
port_record.c 53 int low, int high, int proto,
57 return sepol_port_key_create(handle->sepolh, low, high, proto, key_ptr);
128 void semanage_port_set_range(semanage_port_t * port, int low, int high)
131 sepol_port_set_range(port, low, high);
  /external/valgrind/exp-bbv/tests/ppc32-linux/
million.S 9 addi 15,15,499997@l # load low 16-bits of counter
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-1.s 9 .set mips32 # ERROR: too low
25 .set mips32 # ERROR: too low
39 .set mips32 # ERROR: too low
58 .set mips32 # ERROR: too low
68 .set mips32 # ERROR: too low
77 .set mips2 # ERROR: too low
88 .set mips32 # ERROR: too low
100 .set mips32 # ERROR: too low
  /frameworks/base/core/java/android/util/
MathUtils.java 37 public static int constrain(int amount, int low, int high) {
38 return amount < low ? low : (amount > high ? high : amount);
41 public static long constrain(long amount, long low, long high) {
42 return amount < low ? low : (amount > high ? high : amount);
45 public static float constrain(float amount, float low, float high) {
46 return amount < low ? low : (amount > high ? high : amount);
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
timesoftfloat.c 1019 bits64 low; member in struct:__anon12190
1067 a.low = inputs_floatx80[ inputNum ].low;
1077 a.low = inputs_floatx80[ inputNum ].low;
1337 bits64 low; member in struct:__anon12191
1414 bits64 high, low; member in struct:__anon12193
1731 bits64 high, low; member in struct:__anon12194
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcproxy.h 138 #define IID_BS_LOOKUP_SETUP int result,low=-1;
139 #define IID_BS_LOOKUP_INITIAL_TEST(name,sz,split) result = name##_CHECK_IID(split); if (result > 0) { low = sz - split; } else if (!result) { low = split; goto found_label; }
140 #define IID_BS_LOOKUP_NEXT_TEST(name,split) result = name##_CHECK_IID(low + split); if (result >= 0) { low = low + split; if (!result) goto found_label; }
141 #define IID_BS_LOOKUP_RETURN_RESULT(name,sz,index) low = low + 1; if (low >= sz) goto not_found_label; result = name##_CHECK_IID(low); if (result) goto not_found_label; found_label: (index) = low; return 1; not_found_label: return (…)
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_const.S 3 FETCH r0, 1 @ r0<- bbbb (low)
  /art/runtime/interpreter/mterp/mips/
op_const_string_jumbo.S 3 FETCH(a0, 1) # a0 <- bbbb (low)
op_const_wide_32.S 2 FETCH(a0, 1) # a0 <- 0000bbbb (low)
  /art/runtime/interpreter/mterp/mips64/
op_const.S 3 lh a0, 2(rPC) # a0 <- bbbb (low)
op_const_string_jumbo.S 4 lh a0, 2(rPC) # a0 <- bbbb (low)
op_const_wide_32.S 3 lh a0, 2(rPC) # a0 <- bbbb (low)
  /art/runtime/interpreter/mterp/x86/
op_sget_wide.S 18 SET_VREG %eax, rINST # fp[A]<- low part

Completed in 730 milliseconds

1 2 3 4 5 6 7 891011>>