Home
last modified time | relevance | path

Searched refs:BRW_SHADER_TIME_STRIDE (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_program.c558 max_entries * BRW_SHADER_TIME_STRIDE * 3, in brw_init_shader_time()
743 uint32_t *times = bo_map + i * 3 * BRW_SHADER_TIME_STRIDE; in brw_collect_shader_time()
745 brw->shader_time.cumulative[i].time += times[BRW_SHADER_TIME_STRIDE * 0 / 4]; in brw_collect_shader_time()
746 brw->shader_time.cumulative[i].written += times[BRW_SHADER_TIME_STRIDE * 1 / 4]; in brw_collect_shader_time()
747 brw->shader_time.cumulative[i].reset += times[BRW_SHADER_TIME_STRIDE * 2 / 4]; in brw_collect_shader_time()
/external/mesa3d/src/intel/compiler/
Dbrw_compiler.h576 #define BRW_SHADER_TIME_STRIDE 64 macro
Dbrw_vec4.cpp1972 emit(MOV(offset, brw_imm_d(index * BRW_SHADER_TIME_STRIDE))); in emit_shader_time_write()
Dbrw_fs.cpp658 struct brw_reg offset = brw_imm_d(index * BRW_SHADER_TIME_STRIDE); in SHADER_TIME_ADD()