Searched refs:my_block (Results 1 – 4 of 4) sorted by relevance
188 size_t my_block; in resize_helper() local191 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()
7 typedef void (^my_block)(void); typedef8 static void useBlock(my_block block){} in useBlock()
22 int (^my_block)(int) = ^(int foo)27 printf("%d\n", my_block(2));