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

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-16/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-17/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-18/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
pic.s 14 add3 r12,r12,#low(_GLOBAL_OFFSET_TABLE_+4)
20 or3 r12,r12,#low(_GLOBAL_OFFSET_TABLE_+4)
34 add3 r12,r12,#low(sym2+4)
36 or3 r12,r12,#low(sym2+4)
  /art/compiler/utils/x86/
managed_register_x86.cc 42 Register low; member in struct:art::x86::RegisterPairDescriptor
48 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
68 Register low = AsRegisterPairLow(); local
70 return X86ManagedRegister::FromCpuRegister(low).Overlaps(other) ||
85 return kRegisterPairs[r].low;
  /art/compiler/utils/x86_64/
managed_register_x86_64.cc 41 Register low; member in struct:art::x86_64::RegisterPairDescriptor
47 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
63 Register low = AsRegisterPairLow().AsRegister(); local
65 return X86_64ManagedRegister::FromCpuRegister(low).Overlaps(other) ||
80 return kRegisterPairs[r].low;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 35 * isInEncoding(char high, char low);
37 * which can be called if the two characters from a high/low surrogate pair.
118 * character formed by the high/low pair is in the encoding.
119 * @param high a char that the a high char of a high/low surrogate pair.
120 * @param low a char that is the low char of a high/low surrogate pair.
125 public boolean isInEncoding(char high, char low) {
134 return m_encoding.isInEncoding(high, low);
174 * Returns true if the high/low surrogate pair form
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
StringBuilderTest.java 144 char high = '\uD83D', low = '\uDE02'; local
145 StringBuilder surrogateCP = new StringBuilder().append(new char[]{high, low, low});
146 assertTrue(Arrays.equals(new int[]{high, low, low}, surrogateCP.chars().toArray()));
158 char high = '\uD83D', low = '\uDE02'; local
159 StringBuilder surrogateCP = new StringBuilder().append(new char[]{high, low, low, '0'});
160 assertEquals(Character.toCodePoint(high, low), surrogateCP.codePoints().toArray()[0]);
161 assertEquals((int) low, surrogateCP.codePoints().toArray()[1]); // Unmatched surrogate
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeEncoder.java 23 private long low; field in class:RangeEncoder
64 low = 0;
87 int lowHi = (int)(low >>> 32);
89 if (lowHi != 0 || low < 0xFF000000L) {
97 cache = (byte)(low >>> 24);
101 low = (low & 0x00FFFFFF) << 8;
114 low += bound & 0xFFFFFFFFL;
191 low += range & (0 - ((value >>> --count) & 1));
  /external/selinux/libsemanage/src/
ports_file.c 29 int low = semanage_port_get_low(port); local
38 if (low == high) {
39 if (fprintf(str, "%d ", low) < 0)
42 if (fprintf(str, "%d - %d ", low, high) < 0)
56 low, high, proto_str);
65 int low, high; local
98 if (parse_fetch_int(handle, info, &low, '-') < 0)
118 semanage_port_set_range(port, low, high);
120 semanage_port_set_port(port, low);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-2.s 7 .set mips64 # ERROR: too low
21 .set mips64 # ERROR: too low
33 .set mips64 # ERROR: too low
41 .set mips4 # ERROR: too low
49 .set mips4 # ERROR: too low
57 .set mips64 # ERROR: too low
65 .set mips4 # ERROR: too low
74 .set mips64 # ERROR: too low
84 .set mips64 # ERROR: too low
  /art/runtime/interpreter/mterp/arm/
op_const_wide.S 2 FETCH r0, 1 @ r0<- bbbb (low)
3 FETCH r1, 2 @ r1<- BBBB (low middle)
5 orr r0, r0, r1, lsl #16 @ r0<- BBBBbbbb (low word)
  /art/runtime/interpreter/mterp/mips/
op_mul_long_2addr.S 8 LOAD64(a0, a1, t0) # vAA.low / high
12 LOAD64(a2, a3, t1) # vBB.low / high
29 # vAA <- v0 (low)
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMACoder.java 102 int low = prevByte >> (8 - lc); local
104 return low + high;
124 final short[][] low = new short[POS_STATES_MAX][LOW_SYMBOLS]; field in class:LZMACoder.LengthCoder
131 for (int i = 0; i < low.length; ++i)
132 RangeCoder.initProbs(low[i]);
134 for (int i = 0; i < low.length; ++i)
  /external/selinux/libsepol/src/
ports.c 39 /* Create a low level port structure from
50 int low = sepol_port_get_low(data); local
65 tmp_port->u.port.low_port = low;
68 ERR(handle, "low port %d exceeds high port %d",
96 low, high, sepol_port_get_proto_str(proto));
106 int low = port->u.port.low_port; local
122 sepol_port_set_range(tmp_record, low, high);
136 "to record", low, high, sepol_port_get_proto_str(rec_proto));
170 int low, high, proto; local
172 sepol_port_key_unpack(key, &low, &high, &proto)
208 int low, high, proto; local
248 int low, high, proto; local
    [all...]
context_record.c 212 char *tmp = NULL, *low, *high; local
229 low = tmp;
234 if (!(high = strchr(low, ':')))
238 if (sepol_context_set_user(handle, tmp_con, low) < 0)
240 low = high;
243 if (!(high = strchr(low, ':')))
247 if (sepol_context_set_role(handle, tmp_con, low) < 0)
249 low = high;
252 if (!(high = strchr(low, ':'))) {
253 if (sepol_context_set_type(handle, tmp_con, low) < 0
    [all...]
  /external/svox/pico/lib/
picoklex.c 265 picoos_int32 low, mid, high; local
275 low = 0;
279 while (low < high) {
280 mid = (low + high) / 2;
283 low = mid + 1;
288 PICODBG_ASSERT(high == low);
289 /* low points to the first entry greater than or equal to searchval */
291 if (low < this->nrblocks) {
292 indval = klex_getSearchIndexVal(this, low);
294 low--
    [all...]
  /external/icu/icu4c/source/i18n/
japancal.cpp 384 int32_t low = 0; local
395 low = kCurrentEra;
397 fprintf(stderr, " low=%d (special)\n", low);
406 while (low < high - 1) {
407 int32_t i = (low + high) / 2;
411 fprintf(stderr, " d=%d low=%d, high=%d. Considering %d:M%d D%d Y%d. { we are ?:M%d D%d Y%d }\n",
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year);
431 low = i;
436 fprintf(stderr, ". low=%d, high=%d, i=%d, diff=%d.. %d\n", low, high, i, diff, year)
    [all...]
  /art/runtime/interpreter/mterp/x86/
op_move_result_wide.S 4 movl (%eax), %eax # Get low

Completed in 557 milliseconds

1 2 3 45 6 7 8 91011>>