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.c471 max_entries * BRW_SHADER_TIME_STRIDE * 3, 4096); in brw_init_shader_time()
649 uint32_t *times = bo_map + i * 3 * BRW_SHADER_TIME_STRIDE; in brw_collect_shader_time()
651 brw->shader_time.cumulative[i].time += times[BRW_SHADER_TIME_STRIDE * 0 / 4]; in brw_collect_shader_time()
652 brw->shader_time.cumulative[i].written += times[BRW_SHADER_TIME_STRIDE * 1 / 4]; in brw_collect_shader_time()
653 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.h499 #define BRW_SHADER_TIME_STRIDE 64 macro
Dbrw_vec4.cpp1921 emit(MOV(offset, brw_imm_d(index * BRW_SHADER_TIME_STRIDE))); in emit_shader_time_write()
Dbrw_fs.cpp595 struct brw_reg offset = brw_imm_d(index * BRW_SHADER_TIME_STRIDE); in SHADER_TIME_ADD()