Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_batchbuffer.h78 ((uintptr_t)((_batch).map_next - (_batch).batch.map))
129 uint32_t *__map = brw->batch.map_next; \
130 brw->batch.map_next += (n)
135 uint32_t *__map = brw->batch.map_next; \
136 brw->batch.map_next += (n)
158 assert(__map == brw->batch.map_next); \
Dintel_batchbuffer.c262 batch->map_next = batch->batch.map; in intel_batchbuffer_reset()
299 brw->batch.saved.map_next = brw->batch.map_next; in intel_batchbuffer_save_state()
309 return (batch->saved.map_next == batch->batch.map); in intel_batchbuffer_saved_state_is_empty()
323 brw->batch.map_next = brw->batch.saved.map_next; in intel_batchbuffer_reset_to_saved()
545 batch->map_next = (void *) batch->batch.map + batch_used; in intel_batchbuffer_require_space()
654 *brw->batch.map_next++ = MI_BATCH_BUFFER_END; in brw_finish_batch()
656 *brw->batch.map_next++ = MI_NOOP; in brw_finish_batch()
1087 memcpy(brw->batch.map_next, data, bytes); in intel_batchbuffer_data()
1088 brw->batch.map_next += bytes >> 2; in intel_batchbuffer_data()
DgenX_boilerplate.h37 uint32_t *map = brw->batch.map_next; in emit_dwords()
38 brw->batch.map_next += n; in emit_dwords()
DgenX_blorp_exec.c48 uint32_t *map = brw->batch.map_next; in blorp_emit_dwords()
49 brw->batch.map_next += n; in blorp_emit_dwords()
Dbrw_urb.c263 *brw->batch.map_next++ = MI_NOOP; in brw_upload_urb_fence()
Dbrw_misc_state.c354 uint32_t *ds_map = brw->batch.map_next; in brw_emit_depthbuffer()
452 brw->batch.map_next += ds_dwords; in brw_emit_depthbuffer()
Dbrw_context.h499 uint32_t *map_next; member
522 uint32_t *map_next; member
/external/skqp/src/compute/hs/gen/
Dtranspose.c36 uint32_t * map_next = ALLOCA_MACRO(rows * sizeof(*map_next)); in hsg_transpose() local
58 map_next[jj] = stay; in hsg_transpose()
59 map_next[ii] = stay + (rows << (cc-1)); in hsg_transpose()
71 map_curr = map_next; in hsg_transpose()
72 map_next = tmp; in hsg_transpose()
/external/mesa3d/src/gallium/drivers/iris/
Diris_batch.h71 void *map_next; member
197 return batch->map_next - batch->map; in iris_batch_bytes_used()
227 void *map = batch->map_next; in iris_get_command_space()
228 batch->map_next += bytes; in iris_get_command_space()
Diris_batch.c361 batch->map_next = batch->map; in create_batch()
376 uint32_t *map = batch->map_next; in iris_batch_maybe_noop()
380 batch->map_next += 4; in iris_batch_maybe_noop()
440 batch->map_next = NULL; in iris_batch_free()
479 uint32_t *cmd = batch->map_next; in iris_chain_to_new_batch()
480 uint64_t *addr = batch->map_next + 4; in iris_chain_to_new_batch()
481 batch->map_next += 12; in iris_chain_to_new_batch()
541 uint32_t *map = batch->map_next; in iris_finish_batch()
545 batch->map_next += 4; in iris_finish_batch()
/external/protobuf/php/ext/google/protobuf/
Dmap.c207 for (map_begin_internal(intern, &it); !map_done(&it); map_next(&it)) {
500 void map_next(MapIter *iter) { in map_next() function
586 map_next(intern); in PHP_METHOD()
Dencode_decode.c1195 for (map_begin(map, &it TSRMLS_CC); !map_done(&it); map_next(&it)) { in putmap()
1830 !map_done(&map_it); map_next(&map_it)) { in discard_unknown_fields()
Dstorage.c1086 map_next(&map_it)) { in layout_merge()
Dprotobuf.h1074 void map_next(MapIter* iter);
/external/python/cpython3/Python/
Dbltinmodule.c1256 map_next(mapobject *lz) in map_next() function
1358 (iternextfunc)map_next, /* tp_iternext */
/external/mesa3d/docs/relnotes/
D19.1.0.rst3323 - iris: Fix batch chaining map_next increment.