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

  /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
  /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))
  /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 432 Node* add1 = graph()->NewNode(&kIntAdd, ind1, c); local
433 Node* br2 = graph()->NewNode(common()->Branch(), add1, loop1);
  /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 2213 milliseconds