Searched defs:add1 (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h266 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/
H A DParallelJIT.cpp34 // 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 );

Completed in 176 milliseconds