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

  /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 34 // Create the add1 function entry and insert this entry into module M. The
38 cast<Function>(M->getOrInsertFunction("add1",
50 // Get pointers to the integer argument of the add1 function...
61 // Now, function add1 is ready.
81 // Get pointer to the integer argument of the add1 function...
257 // Create one thread for add1 and two threads for fib
258 struct threadParams add1 = { EE, add1F, 1000 }; local
263 int result = pthread_create( &add1Thread, NULL, callFunc, &add1 );
291 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))
  /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 346 milliseconds