Home
last modified time | relevance | path

Searched refs:next_point (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/vulkan/runtime/
Dvk_sync_binary.c49 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()
Dvk_sync_binary.h51 uint64_t next_point; member
Dvk_queue.c346 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()
/third_party/ffmpeg/libavformat/
Dmux.c834 PacketList **next_point, *this_pktl; local
853 next_point = &(st->internal->last_in_packet_buffer->next);
855 next_point = &s->internal->packet_buffer;
875 if (*next_point) {
880 while ( *next_point
881 && ((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 …]
/third_party/skia/tests/
DSkPathRangeIterTest.cpp12 SkPoint next_point(SkRandom& rand) { return {rand.nextF(), rand.nextF()}; } in next_point() function