HomeSort by relevance Sort by last modified time
    Searched defs:add1 (Results 1 - 20 of 20) sorted by null

  /prebuilts/go/darwin-x86/test/
inline.go 15 return (*byte)(add1(unsafe.Pointer(p), n)) // ERROR "inlining call to add1"
18 func add1(p unsafe.Pointer, x uintptr) unsafe.Pointer { // ERROR "can inline add1" "leaking param: p to result" func
23 return add2(x, 1) // ERROR "inlining call to add2" "inlining call to add1"
peano.go 25 func add1(x *Number) *Number { func
40 return add(add1(x), sub1(y))
53 return add1(zero())
64 return add1(gen(n - 1))
91 check(add1(zero()), 1)
101 check(mul(gen(3), add1(zero())), 3)
102 check(mul(add1(zero()), gen(4)), 4)
106 check(fact(add1(zero())), 1)
  /prebuilts/go/linux-x86/test/
inline.go 15 return (*byte)(add1(unsafe.Pointer(p), n)) // ERROR "inlining call to add1"
18 func add1(p unsafe.Pointer, x uintptr) unsafe.Pointer { // ERROR "can inline add1" "leaking param: p to result" func
23 return add2(x, 1) // ERROR "inlining call to add2" "inlining call to add1"
peano.go 25 func add1(x *Number) *Number { func
40 return add(add1(x), sub1(y))
53 return add1(zero())
64 return add1(gen(n - 1))
91 check(add1(zero()), 1)
101 check(mul(gen(3), add1(zero())), 3)
102 check(mul(add1(zero()), gen(4)), 4)
106 check(fact(add1(zero())), 1)
  /external/llvm/test/ExecutionEngine/RuntimeDyld/AArch64/
MachO_ARM64_relocations.s 58 # rtdyld-check: decode_operand(add1, 2) = (tgt+8)[11:2] << 2
62 add1: label
  /prebuilts/go/darwin-x86/doc/play/
peano.go 32 func add1(x *Number) *Number { func
46 return add(add1(x), sub1(y))
58 return add1(zero())
68 return add1(gen(n - 1))
  /prebuilts/go/darwin-x86/test/bench/garbage/
peano.go 26 func add1(x *Number) *Number { func
39 return add(add1(x), sub1(y))
52 return add1(zero())
63 return add1(gen(n - 1))
89 check(add1(zero()), 1)
99 check(mul(gen(3), add1(zero())), 3)
100 check(mul(add1(zero()), gen(4)), 4)
104 check(fact(add1(zero())), 1)
  /prebuilts/go/linux-x86/doc/play/
peano.go 32 func add1(x *Number) *Number { func
46 return add(add1(x), sub1(y))
58 return add1(zero())
68 return add1(gen(n - 1))
  /prebuilts/go/linux-x86/test/bench/garbage/
peano.go 26 func add1(x *Number) *Number { func
39 return add(add1(x), sub1(y))
52 return add1(zero())
63 return add1(gen(n - 1))
89 check(add1(zero()), 1)
99 check(mul(gen(3), add1(zero())), 3)
100 check(mul(add1(zero()), gen(4)), 4)
104 check(fact(add1(zero())), 1)
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 187 Integer add1 = new Integer(600); local
189 li.add(add1);
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 187 Integer add1 = new Integer(600); local
189 li.add(add1);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_addrhashmap.h 266 AddBucket *add1 = (AddBucket*)InternalAlloc(newsize); local
267 internal_memset(add1, 0, newsize);
268 add1->cap = (newsize - sizeof(*add)) / sizeof(add->cells[0]) + 1;
269 add1->size = add->size;
270 internal_memcpy(add1->cells, add->cells, add->size * sizeof(add->cells[0]));
272 atomic_store(&b->add, (uptr)add1, memory_order_relaxed);
273 add = add1;
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 35 // Create the add1 function entry and insert this entry into module M. The
39 cast<Function>(M->getOrInsertFunction("add1",
51 // Get pointers to the integer argument of the add1 function...
62 // Now, function add1 is ready.
82 // Get pointer to the integer argument of the add1 function...
259 // Create one thread for add1 and two threads for fib
260 struct threadParams add1 = { EE, add1F, 1000 }; local
265 int result = pthread_create( &add1Thread, nullptr, callFunc, &add1 );
293 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
basic_op.h 46 #define add1(a,b) (a + b) macro
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalArithmeticTest.java 523 BigDecimal add1 = new BigDecimal("23.456"); local
525 BigDecimal sum = add1.add(add2);
532 assertTrue("the sum of 23.456 + 12.34E02 is not printed correctly", (add1.add(add3))
  /prebuilts/go/darwin-x86/src/runtime/
mbitmap.go 101 // add1 returns the byte pointer p+1.
103 func add1(p *byte) *byte { func
492 bitp = add1(bitp)
843 p = add1(p)
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mbitmap.go 101 // add1 returns the byte pointer p+1.
103 func add1(p *byte) *byte { func
492 bitp = add1(bitp)
843 p = add1(p)
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/msa/
postproc_msa.c 712 v4i32 add0, add1, add2, add3; local
    [all...]
  /external/v8/test/unittests/compiler/
scheduler-unittest.cc 933 Node* add1 = graph()->NewNode(&kIntAdd, ind1, c); local
934 Node* br2 = graph()->NewNode(common()->Branch(), add1, loop1);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalTest.java 185 BigDecimal add1 = new BigDecimal("23.456"); local
187 BigDecimal sum = add1.add(add2);
195 (add1.add(add3)).toString().equals("1257.456"));
    [all...]

Completed in 1547 milliseconds