Searched refs:next_point (Results 1 – 5 of 5) sorted by relevance
49 binary->next_point = (initial_value == 0); in vk_sync_binary_init()70 binary->next_point++; in vk_sync_binary_reset()84 return vk_sync_signal(device, &binary->timeline, binary->next_point); in vk_sync_binary_signal()102 .wait_value = binary->next_point, in vk_sync_binary_wait_many()
51 uint64_t next_point; member
346 submit->waits[i].wait_value = binary->next_point; in vk_queue_submit_final()373 submit->signals[i].signal_value = ++binary->next_point; in vk_queue_submit_final()
834 PacketList **next_point, *this_pktl; local853 next_point = &(st->internal->last_in_packet_buffer->next);855 next_point = &s->internal->packet_buffer;875 if (*next_point) {880 while ( *next_point881 && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))882 || !compare(s, &(*next_point)->pkt, pkt)))883 next_point = &(*next_point)->next;884 if (*next_point)887 next_point = &(s->internal->packet_buffer_end->next);[all …]
12 SkPoint next_point(SkRandom& rand) { return {rand.nextF(), rand.nextF()}; } in next_point() function