Searched refs:load_size (Results 1 - 8 of 8) sorted by relevance
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_nir_lower_ubo_loads.c | 87 unsigned load_size = byte_size * load->num_components; in lower_ubo_load_instr() local 89 nir_ilt(b, nir_iadd_imm(b, offset, load_size - 1), bound); in lower_ubo_load_instr()
|
H A D | anv_nir_apply_pipeline_layout.c | 1076 unsigned load_size = intrin->dest.ssa.num_components * in lower_load_constant() local 1080 assert(load_size < b->shader->constant_data_size); in lower_load_constant() 1081 unsigned max_offset = b->shader->constant_data_size - load_size; in lower_load_constant()
|
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | dxil_nir.c | 132 unsigned load_size = MAX2(32, bit_size); in lower_load_deref() local 142 for (unsigned i = 0; i < num_bits; i += load_size) { in lower_load_deref() 143 unsigned subload_num_bits = MIN2(num_bits - i, load_size); in lower_load_deref() 147 if (load_size == 64) { in lower_load_deref()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_program.c | 517 unsigned load_size = intrin->dest.ssa.num_components * in iris_setup_uniforms() local 530 assert(load_size < b.shader->constant_data_size); in iris_setup_uniforms() 531 unsigned max_offset = b.shader->constant_data_size - load_size; in iris_setup_uniforms()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_io.c | 1545 const unsigned load_size = (bit_size / 8) * load->num_components; in build_explicit_io_load() local 1546 nir_push_if(b, addr_is_in_bounds(b, addr, addr_format, load_size)); in build_explicit_io_load()
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_exec.c | 3737 uint32_t load_size = util_last_bit(inst->Dst[0].Register.WriteMask) * 4; in exec_load_membuf() local 3742 if (size >= load_size && offset.u[j] <= (size - load_size)) { in exec_load_membuf() 3743 for (int chan = 0; chan < load_size / 4; chan++) in exec_load_membuf()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 3976 unsigned load_size = num_components * component_size; 3977 int new_size = align(load_size + (4 - align_), 4); 3978 return new_size == align(load_size, 4) && (new_size != 12 || support_12_byte); 4016 unsigned load_size = info.num_components * info.component_size; 4028 while (bytes_read < load_size) { 4029 unsigned bytes_needed = load_size - bytes_read; 4153 assert(val.bytes() >= load_size && "unimplemented");
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-compiler.cc | 67 #define LOAD_INSTANCE_FIELD(dst, name, load_size, pinned) \ 71 load_size>::size);
|
Completed in 42 milliseconds