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

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/r11/platforms/android-16/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-17/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-18/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-19/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-3/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-4/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r11/platforms/android-9/arch-arm/usr/include/asm/
hardirq.h 33 #error HARDIRQ_BITS is too low!
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_endian.h 37 uint64_t spvFixDoubleWord(const uint32_t low, const uint32_t high,
  /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/syslinux/gpxe/src/drivers/net/
etherfabric.h 48 /** Dummy field low bit number */
52 /** Dword 0 low bit number */
56 /** Dword 1 low bit number */
60 /** Dword 2 low bit number */
64 /** Dword 3 low bit number */
71 /** Low bit number of the specified field */
155 * Extract bit field portion [low,high) from the native-endian element
167 * [0,high-low), with garbage in bits [high-low+1,...).
169 #define EFAB_EXTRACT_NATIVE( native_element, min ,max ,low ,high )
    [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);
  /external/eigen/Eigen/src/Core/functors/
NullaryFunctors.h 45 linspaced_op_impl(const Scalar& low, const Scalar& high, Index num_steps) :
46 m_low(low), m_high(high), m_size1(num_steps==1 ? 1 : num_steps-1), m_step(num_steps==1 ? Scalar() : (high-low)/Scalar(num_steps-1)),
48 m_flip(numext::abs(high)<numext::abs(low))
63 // [low, ..., low] + ( [step, ..., step] * ( [i, ..., i] + [0, ..., size] ) )
93 linspaced_op_impl(const Scalar& low, const Scalar& high, Index num_steps) :
94 m_low(low),
95 m_multiplier((high-low)/convert_index<Scalar>(num_steps<=1 ? 1 : num_steps-1)),
96 m_divisor(convert_index<Scalar>((high>=low?num_steps:-num_steps)+(high-low))/((numext::abs(high-low)+1)==0?1:(numext::abs(high-low)+1)))
    [all...]
  /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 SET_VREG64_GOTO(v0, v1, rOBJ, t1) # vA/vA+1 <- v0(low)/v1(high)
  /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)
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/
softfloat-specialize 108 bits64 high, low;
164 z.low = 0;
266 z.low = 0;
320 `high' and `low' values hold the most- and least-significant bits,
336 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
350 aLow = a.low & ~ LIT64( 0x4000000000000000 );
354 && ( a.low == aLow );
371 z.low = 0;
372 z.high = a.low<<1;
387 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
softfloat-specialize 112 bits64 high, low;
168 z.low = 0;
270 z.low = 0;
324 `high' and `low' values hold the most- and least-significant bits,
340 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
354 aLow = a.low & ~ LIT64( 0x4000000000000000 );
358 && ( a.low == aLow );
375 z.low = 0;
376 z.high = a.low<<1;
391 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );
    [all...]

Completed in 3015 milliseconds

1 2 3 4 56 7 8 91011>>