/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mep/ |
mep1.s | 8 # This will be in high memory.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
bspec807.s | 6 TETRA 0 % Things end stops after the high part of the VMA.
|
/art/compiler/utils/arm/ |
managed_register_arm.cc | 30 Register high = AsRegisterPairHigh(); local 32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other); 38 SRegister high = AsOverlappingDRegisterHigh(); local 40 return (low == other_sreg) || (high == other_sreg);
|
/art/compiler/utils/mips/ |
managed_register_mips.cc | 31 Register high = AsRegisterPairHigh(); local 33 MipsManagedRegister::FromCoreRegister(high).Overlaps(other); 39 FRegister high = AsOverlappingDRegisterHigh(); local 41 return (low == other_freg) || (high == other_freg);
|
/art/runtime/interpreter/mterp/mips64/ |
op_const_wide.S | 5 lh a2, 6(rPC) # a2 <- hhhh (high middle) 6 lh a3, 8(rPC) # a3 <- HHHH (high)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
BitsStreamGenerator.java | 85 final long high = ((long) next(26)) << 26; local 87 return (high | low) * 0x1.0p-52d; 148 final long high = ((long) next(32)) << 32; local 150 return high | low;
|
/external/compiler-rt/test/builtins/Unit/ |
addvti3_test.c | 41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, 42 expectedt.s.high, expectedt.s.low);
|
absvti2_test.c | 42 at.s.high, at.s.low, xt.s.high, xt.s.low, 43 expectedt.s.high, expectedt.s.low);
|
/external/google-breakpad/src/google_breakpad/common/ |
breakpad_types.h | 73 uint64_t high; member in struct:__anon11391
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
LittleEndianInputStream.java | 62 int high = din.read();
local 63 return (short)((high << 8) | (low & 0xff));
68 int high = din.read();
local 69 return ((high & 0xff) << 8) | (low & 0xff);
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
wpa.h | 59 uint8 high; member in struct:__anon29174::__anon29175 71 uint8 high; member in struct:__anon29176::__anon29177 91 uint8 high; member in struct:__anon29179::__anon29180 100 uint8 high; member in struct:__anon29181::__anon29182
|
/toolchain/binutils/binutils-2.25/gas/ |
flonum.h | 53 LITTLENUM_TYPE *high; /* high order littlenum of a bignum */ member in struct:FLONUM_STRUCT
|
/art/compiler/utils/arm64/ |
managed_register_arm64.cc | 79 int high = RegNo(); local 81 high += kNumberOfXRegIds + kNumberOfWRegIds; 83 return high;
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_cbrt.c | 46 u_int32_t high,low; local 73 GET_HIGH_WORD(high,t); 74 INSERT_WORDS(t,sign|((high&0x7fffffff)/3+B2),0);
|
/external/compiler-rt/lib/builtins/ |
floatdidf.c | 40 const double high = (int32_t)(a >> 32) * twop32; local 43 const double result = (high - twop52) + low.d; 101 fb.u.high = ((su_int)s & 0x80000000) | /* sign */ 103 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
|
/external/elfutils/tests/ |
dwfl-bug-addr-overflow.c | 47 Dwfl_Module *high = dwfl_report_module (dwfl, "high", local 50 assert (high); 64 assert (mod == high);
|
/external/gptfdisk/ |
support.h | 75 int GetNumber(int low, int high, int def, const string & prompt); 77 uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize, const std::string& prompt); 78 uint64_t IeeeToInt(string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def = 0);
|
support.cc | 46 // Get a numeric value from the user, between low and high (inclusive). 49 // (If def is outside of the low-high range, an explicit response 51 int GetNumber(int low, int high, int def, const string & prompt) { 55 if (low != high) { // bother only if low and high differ... 63 if ((response < low) || (response > high)) 68 } while ((response < low) || (response > high)); 69 } else { // low == high, so return this value 92 // Obtains a sector number, between low and high, from the 96 // respectively. If a "-" prefix is used, use the high value minu [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/ |
MathUtils.java | 219 /** Returns the closest value to 'a' that is in between 'low' and 'high' */ 220 public final static float clamp(final float a, final float low, final float high) { 221 return max(low, min(a, high)); 224 public final static Vec2 clamp(final Vec2 a, final Vec2 low, final Vec2 high) { 226 min.x = a.x < high.x ? a.x : high.x; 227 min.y = a.y < high.y ? a.y : high.y; 233 public final static void clampToOut(final Vec2 a, final Vec2 low, final Vec2 high, final Vec2 dest) { 234 dest.x = a.x < high.x ? a.x : high.x [all...] |
/external/selinux/libsepol/include/sepol/ |
port_record.h | 26 int low, int high, int proto, 30 int *low, int *high, int *proto); 52 extern void sepol_port_set_range(sepol_port_t * port, int low, int high);
|
/external/vixl/examples/ |
check-bounds.cc | 33 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high) 37 // high -> x2 43 // Now we will compare 'value' and 'high' (x0 and x2) but only if the 'pl' 63 uint64_t value, uint64_t low, uint64_t high) { 66 simulator->set_xreg(2, high); 71 low, high);
|
/libcore/luni/src/test/java/libcore/java/nio/ |
CharBufferTest.java | 49 char high = '\uD83D', low = '\uDE02'; local 50 String surrogateCP = new String(new char[]{high, low, low, '0'}); 53 assertEquals(Character.toCodePoint(high, low), cb.codePoints().toArray()[0]);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/ |
pic2.s | 19 seth r12,#high(_GLOBAL_OFFSET_TABLE_) 35 seth r12,#high(sym2@GOTOFF) 52 seth r0,#high(gotoff@GOTOFF)
|
/toolchain/binutils/binutils-2.25/gprof/ |
symtab.c | 181 unsigned long low, mid, high; 188 for (low = 0, high = sym_tab->len - 1; low != high;) 190 mid = (high + low) >> 1; 192 fprintf (stderr, "[dbg_sym_lookup] low=0x%lx, mid=0x%lx, high=0x%lx\n", 193 low, mid, high); 202 high = mid; 220 long low, high; 231 for (low = 0, high = sym_tab->len - 1; low != high;) 180 unsigned long low, mid, high; local 219 long low, high; local [all...] |
/external/selinux/libsemanage/src/ |
ports_file.c | 30 int high = semanage_port_get_high(port); local 38 if (low == high) { 42 if (fprintf(str, "%d - %d ", low, high) < 0) 56 low, high, proto_str); 65 int low, high; local 114 if (parse_fetch_int(handle, info, &high, ' ') < 0) 118 semanage_port_set_range(port, low, high);
|