Searched defs:_Block_object_assign (Results 1 - 3 of 3) sorted by relevance
/external/compiler-rt/test/BlocksRuntime/ |
H A D | objectRRGC.c | 27 void _Block_object_assign(void *destAddr, const void *object, const int isWeak) { function 28 //printf("_Block_object_assign(%p, %p, %d) called\n", destAddr, object, isWeak);
|
H A D | objectassign.c | 26 void _Block_object_assign(void *destAddr, const void *object, const int isWeak) { function 27 //printf("_Block_object_assign(%p, %p, %d) called\n", destAddr, object, isWeak);
|
/external/compiler-rt/lib/BlocksRuntime/ |
H A D | runtime.c | 534 In these cases helper functions are synthesized by the compiler for use in Block_copy and Block_release, called the copy and dispose helpers. The copy helper emits a call to the C++ const copy constructor for C++ stack based objects and for the rest calls into the runtime support function _Block_object_assign. The dispose helper has a call to the C++ destructor for case 1 and a call into _Block_object_dispose for the rest. 536 The flags parameter of _Block_object_assign and _Block_object_dispose is set to 560 void _Block_object_assign(void *destAddr, const void *object, const int flags) { function 561 //printf("_Block_object_assign(*%p, %p, %x)\n", destAddr, object, flags);
|
Completed in 77 milliseconds