Home
last modified time | relevance | path

Searched refs:map_next (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_batch.h75 void *map_next; member
220 return batch->command.map_next - batch->command.map; in crocus_batch_bytes_used()
243 batch->command.map_next = (void *)batch->command.map + used; in crocus_require_command_space()
258 void *map = batch->command.map_next; in crocus_get_command_space()
259 batch->command.map_next += bytes; in crocus_get_command_space()
Dcrocus_batch.c471 grow->map_next = grow->map; in recreate_growing_buffer()
508 uint32_t *map = batch->command.map_next; in crocus_batch_maybe_noop()
512 batch->command.map_next += 4; in crocus_batch_maybe_noop()
577 batch->command.map_next = NULL; in crocus_batch_free()
757 uint32_t *map = batch->command.map_next; in crocus_finish_batch()
761 batch->command.map_next += 4; in crocus_finish_batch()
Dcrocus_state.c817 *(uint32_t *)batch->command.map_next = 0; in crocus_upload_urb_fence()
818 batch->command.map_next += sizeof(uint32_t); in crocus_upload_urb_fence()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_batch.h75 void *map_next; member
225 return batch->map_next - batch->map; in iris_batch_bytes_used()
259 void *map = batch->map_next; in iris_get_command_space()
260 batch->map_next += bytes; in iris_get_command_space()
Diris_batch.c494 batch->map_next = batch->map; in create_batch()
510 uint32_t *map = batch->map_next; in iris_batch_maybe_noop()
514 batch->map_next += 4; in iris_batch_maybe_noop()
588 batch->map_next = NULL; in iris_batch_free()
650 uint32_t *cmd = batch->map_next; in iris_chain_to_new_batch()
651 uint64_t *addr = batch->map_next + 4; in iris_chain_to_new_batch()
652 batch->map_next += 12; in iris_chain_to_new_batch()
720 uint32_t *map = batch->map_next; in iris_finish_batch()
724 batch->map_next += 4; in iris_finish_batch()
/third_party/node/deps/ngtcp2/nghttp3/lib/
Dnghttp3_qpack.h73 nghttp3_qpack_entry *map_next; member
Dnghttp3_qpack.c755 ent->map_next = *bucket; in qpack_map_insert()
764 for (; *dst; dst = &(*dst)->map_next) { in qpack_map_remove()
769 *dst = ent->map_next; in qpack_map_remove()
770 ent->map_next = NULL; in qpack_map_remove()
802 p = p->map_next) { in encoder_qpack_map_find()
2219 ent->map_next = NULL; in nghttp3_qpack_entry_init()
/third_party/python/Python/
Dbltinmodule.c1317 map_next(mapobject *lz) in map_next() function
1419 (iternextfunc)map_next, /* tp_iternext */
/third_party/mesa3d/docs/relnotes/
D19.1.0.rst3323 - iris: Fix batch chaining map_next increment.