Home
last modified time | relevance | path

Searched refs:voidVoid (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/BlocksRuntime/
H A Dbyrefcopyint.c32 typedef void (^voidVoid)(void); typedef
34 voidVoid dummy;
36 void callVoidVoid(voidVoid closure) { in callVoidVoid()
41 voidVoid testRoutine(const char *whoami) { in testRoutine()
49 voidVoid copy = Block_copy(dummy); in testRoutine()
56 voidVoid array[100]; in main()
H A Drecursive-block.c28 typedef void (^voidVoid)(void); typedef
30 voidVoid testFunction() { in testFunction()
32 __block voidVoid inner = ^{ doSomething(i); }; in testFunction()
34 /*__block*/ voidVoid outer = ^{ in testFunction()
39 voidVoid result = Block_copy(outer); in testFunction()
46 voidVoid block = testFunction(); in main()