HomeSort by relevance Sort by last modified time
    Searched refs:lo (Results 326 - 350 of 1501) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nds32/
usr-spe-reg.d 10 0+0000 <[^>]*> mfusr \$r0, \$d0.lo
12 0+0008 <[^>]*> mfusr \$r0, \$d1.lo
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
pic-and-nonpic-1a.s 28 addiu $3,$pc,%lo(_gp_disp)
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalRandom8Test.java 126 final int lo = least, hi = bound; local
127 r.ints(size, lo, hi).parallel().forEach(
129 if (x < lo || x >= hi)
145 final long lo = least, hi = bound; local
146 r.longs(size, lo, hi).parallel().forEach(
148 if (x < lo || x >= hi)
164 final double lo = least, hi = bound; local
165 r.doubles(size, lo, hi).parallel().forEach(
167 if (x < lo || x >= hi)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
rewritedec64.go 611 // match: (Int64Lo (Int64Make _ lo))
613 // result: lo
619 lo := v_0.Args[1]
621 v.Type = lo.Type
622 v.AddArg(lo)
887 // match: (Lrot64 (Int64Make hi lo) [c])
889 // result: (Int64Make (Or32 <config.fe.TypeUInt32()> (Lsh32x32 <config.fe.TypeUInt32()> hi (Const32 <config.fe.TypeUInt32()> [c])) (Rsh32Ux32 <config.fe.TypeUInt32()> lo (Const32 <config.fe.TypeUInt32()> [32-c]))) (Or32 <config.fe.TypeUInt32()> (Lsh32x32 <config.fe.TypeUInt32()> lo (Const32 <config.fe.TypeUInt32()> [c])) (Rsh32Ux32 <config.fe.TypeUInt32()> hi (Const32 <config.fe.TypeUInt32()> [32-c]))))
897 lo := v_0.Args[1]
910 v3.AddArg(lo)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
rewritedec64.go 611 // match: (Int64Lo (Int64Make _ lo))
613 // result: lo
619 lo := v_0.Args[1]
621 v.Type = lo.Type
622 v.AddArg(lo)
887 // match: (Lrot64 (Int64Make hi lo) [c])
889 // result: (Int64Make (Or32 <config.fe.TypeUInt32()> (Lsh32x32 <config.fe.TypeUInt32()> hi (Const32 <config.fe.TypeUInt32()> [c])) (Rsh32Ux32 <config.fe.TypeUInt32()> lo (Const32 <config.fe.TypeUInt32()> [32-c]))) (Or32 <config.fe.TypeUInt32()> (Lsh32x32 <config.fe.TypeUInt32()> lo (Const32 <config.fe.TypeUInt32()> [c])) (Rsh32Ux32 <config.fe.TypeUInt32()> hi (Const32 <config.fe.TypeUInt32()> [32-c]))))
897 lo := v_0.Args[1]
910 v3.AddArg(lo)
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/
letter.go 30 // Range16 represents of a range of 16-bit Unicode code points. The range runs from Lo to Hi
33 Lo uint16
39 // more of the values will not fit in 16 bits. The range runs from Lo to Hi
40 // inclusive and has the specified stride. Lo and Hi must always be >= 1<<16.
42 Lo uint32
49 // The range runs from Lo to Hi inclusive, with a fixed stride of 1. Deltas
58 Lo uint32
96 if r < range_.Lo {
100 return (r-range_.Lo)%range_.Stride == 0
107 lo :=
    [all...]
  /prebuilts/go/linux-x86/src/unicode/
letter.go 30 // Range16 represents of a range of 16-bit Unicode code points. The range runs from Lo to Hi
33 Lo uint16
39 // more of the values will not fit in 16 bits. The range runs from Lo to Hi
40 // inclusive and has the specified stride. Lo and Hi must always be >= 1<<16.
42 Lo uint32
49 // The range runs from Lo to Hi inclusive, with a fixed stride of 1. Deltas
58 Lo uint32
96 if r < range_.Lo {
100 return (r-range_.Lo)%range_.Stride == 0
107 lo :=
    [all...]
  /prebuilts/go/darwin-x86/src/math/
exp.go 40 // Here r will be represented as r = hi-lo for better
117 // reduce; computed as r = hi - lo for extra precision.
126 lo := float64(k) * Ln2Lo
129 return expmulti(hi, lo, k)
159 // computed as r = hi - lo for extra precision.
169 lo := -t * Ln2Lo
172 return expmulti(hi, lo, k)
175 // exp1 returns e**r × 2**k where r = hi - lo and |r| ? ln(2)/2.
176 func expmulti(hi, lo float64, k int) float64 {
185 r := hi - lo
    [all...]
  /prebuilts/go/linux-x86/src/math/
exp.go 40 // Here r will be represented as r = hi-lo for better
117 // reduce; computed as r = hi - lo for extra precision.
126 lo := float64(k) * Ln2Lo
129 return expmulti(hi, lo, k)
159 // computed as r = hi - lo for extra precision.
169 lo := -t * Ln2Lo
172 return expmulti(hi, lo, k)
175 // exp1 returns e**r × 2**k where r = hi - lo and |r| ? ln(2)/2.
176 func expmulti(hi, lo float64, k int) float64 {
185 r := hi - lo
    [all...]
  /external/v8/src/arm/
constants-arm.h 93 lo = cc // C clear Unsigned lower. enumerator in enum:v8::internal::Condition
106 case lo:
109 return lo;
488 // Extract a bit field <hi:lo> from the instruction bits and return it in the
490 inline int Bits(int hi, int lo) const {
491 return (InstructionBits() >> lo) & ((2 << (hi - lo)) - 1);
494 // Read a bit field <hi:lo>, leaving its position unchanged in the result.
495 inline int BitField(int hi, int lo) const {
496 return InstructionBits() & (((2 << (hi - lo)) - 1) << lo)
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_packed_switch.S 12 FETCH r0, 1 @ r0<- bbbb (lo)
  /art/runtime/interpreter/mterp/mips/
op_packed_switch.S 12 FETCH(a0, 1) # a0 <- bbbb (lo)
  /art/runtime/interpreter/mterp/mips64/
op_packed_switch.S 13 lh a0, 2(rPC) # a0 <- bbbb (lo)
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_mips.h 72 uint64_t lo; member in struct:__anon19601
125 uint32_t lo[MD_CONTEXT_MIPS_DSP_COUNT]; member in struct:__anon19604
  /external/llvm/test/MC/Mips/
xgot.s 4 // For the xgot case we want to see R_MIPS_[GOT|CALL]_[HI|LO]16.
36 addiu $2, $2, %lo(_gp_disp)
49 addiu $4, $2, %lo($.str)
  /external/ltp/testcases/network/iproute/
ip_tests.sh 111 ip addr add 127.6.6.6/24 dev lo
118 ip addr show dev lo | grep 127.6.6.6 > /dev/null
125 ip addr del 127.6.6.6/24 dev lo
131 ip addr show dev lo | grep 127.6.6.6 > /dev/null
144 ip neigh replace 127.6.6.6 lladdr 00:00:00:00:00:00 dev lo nud reachable
152 127.6.6.6 dev lo lladdr 00:00:00:00:00:00 REACHABLE
169 ip neigh del 127.6.6.6 dev lo
194 $ip4_addr via 127.0.0.1 dev lo
197 ip route show | grep "$ip4_addr via 127.0.0.1 dev lo" > tst_ip.out 2>&1
  /external/syslinux/com32/libutil/
Makefile 39 LNXLIBOBJS = $(patsubst %.o,%.lo,$(LIBOBJS))
52 rm -f *.o *.lo *.lst *.elf .*.d *.tmp
  /external/syslinux/com32/rosh/
Makefile 43 rosh.lo: rosh.h
48 rm -f *.o *.lo *.a *.lst *.elf .*.d *.tmp
  /frameworks/base/core/java/android/net/metrics/
IpReachabilityEvent.java 94 int lo = eventType & 0x00ff; local
96 return String.format("IpReachabilityEvent(%s:%02x)", eventName, lo);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/amd64/
ggen.go 30 lo := hi
46 if lo != hi && n.Xoffset+n.Type.Width >= lo-int64(2*gc.Widthreg) {
48 lo = n.Xoffset
54 p = zerorange(p, int64(frame), lo, hi, &ax, &x0)
59 lo = n.Xoffset
63 zerorange(p, int64(frame), lo, hi, &ax, &x0)
103 func zerorange(p *obj.Prog, frame int64, lo int64, hi int64, ax *uint32, x0 *uint32) *obj.Prog {
104 cnt := hi - lo
118 p = gc.Appendpp(p, x86.AMOVL, obj.TYPE_REG, x86.REG_AX, 0, obj.TYPE_MEM, x86.REG_SP, frame+lo)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/amd64/
ggen.go 30 lo := hi
46 if lo != hi && n.Xoffset+n.Type.Width >= lo-int64(2*gc.Widthreg) {
48 lo = n.Xoffset
54 p = zerorange(p, int64(frame), lo, hi, &ax, &x0)
59 lo = n.Xoffset
63 zerorange(p, int64(frame), lo, hi, &ax, &x0)
103 func zerorange(p *obj.Prog, frame int64, lo int64, hi int64, ax *uint32, x0 *uint32) *obj.Prog {
104 cnt := hi - lo
118 p = gc.Appendpp(p, x86.AMOVL, obj.TYPE_REG, x86.REG_AX, 0, obj.TYPE_MEM, x86.REG_SP, frame+lo)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.clamp/
clamp.comp.pass.cpp 15 // clamp(const T& v, const T& lo, const T& hi, Compare comp);
23 test(const T& v, const T& lo, const T& hi, C c, const T& x)
25 assert(&std::clamp(v, lo, hi, c) == &x);
clamp.pass.cpp 15 // clamp(const T& v, const T& lo, const T& hi);
22 test(const T& a, const T& lo, const T& hi, const T& x)
24 assert(&std::clamp(a, lo, hi) == &x);
  /test/vts/utils/python/coverage/
parser.py 91 lo = self.ReadInt()
93 return (hi << 32) | lo
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/crx/
list_insn.s 15 pushx r6, {hi, lo}
25 popx r7, {lo, hi}

Completed in 2533 milliseconds

<<11121314151617181920>>