Home
last modified time | relevance | path

Searched refs:my_block (Results 1 – 4 of 4) sorted by relevance

/external/elfutils/lib/
Ddynamicsizehash_concurrent.c188 size_t my_block; in resize_helper() local
191 while ((my_block = atomic_fetch_add_explicit(&htab->next_init_block, 1, in resize_helper()
195 size_t record_it = my_block * INITIALIZATION_BLOCK_SIZE; in resize_helper()
196 size_t record_end = (my_block + 1) * INITIALIZATION_BLOCK_SIZE; in resize_helper()
216 while ((my_block = atomic_fetch_add_explicit(&htab->next_move_block, 1, in resize_helper()
220 size_t record_it = my_block * MOVE_BLOCK_SIZE; in resize_helper()
221 size_t record_end = (my_block + 1) * MOVE_BLOCK_SIZE; in resize_helper()
/external/clang/test/Analysis/
Dtemplates.cpp7 typedef void (^my_block)(void); typedef
8 static void useBlock(my_block block){} in useBlock()
/external/llvm-project/clang/test/Analysis/
Dtemplates.cpp7 typedef void (^my_block)(void); typedef
8 static void useBlock(my_block block){} in useBlock()
/external/llvm-project/lldb/test/API/lang/objc/blocks/
Divars-in-blocks.m22 int (^my_block)(int) = ^(int foo)
27 printf("%d\n", my_block(2));