/third_party/mesa3d/src/compiler/glsl/ |
H A D | gl_nir_link_uniform_initializers.c | 121 unsigned dmul = glsl_base_type_is_64bit(base_type) ? 2 : 1; in copy_constant_to_storage() local 129 i += n_rows * dmul; in copy_constant_to_storage() 174 i += dmul; in copy_constant_to_storage() 225 unsigned dmul = glsl_base_type_is_64bit(base_type) ? 2 : 1; in set_uniform_initializer() local 234 idx += elements * dmul; in set_uniform_initializer()
|
H A D | gl_nir_lower_packed_varyings.c | 625 unsigned dmul = glsl_type_is_64bit(glsl_without_array(type)) ? 2 : 1; in lower_arraylike() local 626 if (array_size * dmul + fine_location % 4 > 4) { in lower_arraylike() 627 fine_location = ALIGN_POT(fine_location, dmul); in lower_arraylike() 688 unsigned dmul = glsl_type_is_64bit(type) ? 2 : 1; in lower_varying() local 726 } else if (glsl_get_vector_elements(type) * dmul + fine_location % 4 > 4) { in lower_varying() 730 unsigned aligned_fine_location = ALIGN_POT(fine_location, dmul); in lower_varying() 831 unsigned components = glsl_get_vector_elements(type) * dmul; in lower_varying()
|
H A D | link_varyings.cpp | 356 unsigned dmul = type_without_array->is_64bit() ? 2 : 1; in check_location_aliasing() local 357 last_comp = component + type_without_array->vector_elements * dmul; in check_location_aliasing()
|
H A D | gl_nir_link_varyings.c | 321 const unsigned dmul = in xfb_decl_assign_location() local 362 1 : vector_elements * matrix_cols * dmul; in xfb_decl_assign_location() 412 unsigned array_offset = xfb_decl->array_subscript * 4 * dmul; in xfb_decl_assign_location() 429 unsigned dmul = _mesa_gl_datatype_is_64bit(xfb_decl->type) ? 2 : 1; in xfb_decl_get_num_outputs() local 430 unsigned rows_per_element = DIV_ROUND_UP(xfb_decl->vector_elements * dmul, 4); in xfb_decl_get_num_outputs()
|
H A D | gl_nir_link_uniforms.c | 693 unsigned dmul = glsl_type_is_64bit(glsl_without_array(type)) ? 2 : 1; in add_parameter() local 694 unsigned comps = glsl_get_vector_elements(glsl_without_array(type)) * dmul; in add_parameter()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | uniform_query.cpp | 352 int dmul = (uni->type->is_64bit()) ? 2 : 1; in _mesa_get_uniform() local 359 dmul = 1; in _mesa_get_uniform() 377 (offset * dword_elements * dmul); in _mesa_get_uniform() 379 src = &uni->storage[offset * elements * dmul]; in _mesa_get_uniform() 412 int sidx = i * dmul; in _mesa_get_uniform() 839 const int dmul = uni->type->is_64bit() ? 2 : 1; in _mesa_propagate_uniforms_to_driver_storage() local 844 unsigned src_vector_byte_stride = components * 4 * dmul; in _mesa_propagate_uniforms_to_driver_storage() 852 (uint8_t *) (&uni->storage[array_index * (dmul * components * vectors)].i); in _mesa_propagate_uniforms_to_driver_storage() 958 int dmul; in associate_uniform_storage() local 960 dmul in associate_uniform_storage() 1055 const int dmul = storage->type->is_64bit() ? 2 : 1; associate_uniform_storage() local [all...] |
/third_party/mesa3d/src/nouveau/codegen/lib/ |
H A D | gm107.asm | 161 dmul $r0 $r0 0x4350000000000000 268 dmul $r0 $r0 $r6 297 $p1 dmul $r0 $r0 0x4350000000000000 327 dmul $r2 $r0 $r8 329 dmul $r0 $r2 $r4 333 dmul $r0 $r2 $r4 337 dmul $r0 $r2 $r4 341 dmul $r0 $r2 $r4 346 $p1 dmul $r4 $r4 0x41a0000000000000
|
/third_party/ltp/tools/sparse/sparse-src/validation/backend/ |
H A D | arithmetic-ops.c | 56 static double dmul(double x, double y) in dmul() function
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_route.c | 937 unsigned int sused, dused, smul, dmul; in route_load_ttable() local 942 dmul = 1; in route_load_ttable() 947 dmul = tt_ssize; in route_load_ttable() 962 v = ttable[src_channel * smul + dst_channel * dmul]; in route_load_ttable()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_linking_helpers.c | 335 unsigned dmul = glsl_type_is_64bit(glsl_without_array(type)) ? 2 : 1; in get_unmoveable_components_masks() local 343 comps_slot2 = (elements * dmul) - num_comps; in get_unmoveable_components_masks() 355 ((1 << (elements * dmul)) - 1) << var->data.location_frac; in get_unmoveable_components_masks()
|
/third_party/node/deps/v8/src/diagnostics/mips64/ |
H A D | disasm-mips64.cc | 1396 Format(instr, "dmul 'rd, 'rs, 'rt"); in DecodeTypeRegisterSPECIAL()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_nir_soa.c | 362 int dmul = bit_size == 64 ? 2 : 1; in emit_load_var() local 376 int idx = (i * dmul) + location_frac; in emit_load_var() 516 int idx = (i * dmul) + location_frac; in emit_load_var()
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 521 void dmul(Register rd, Register rs, Register rt);
|
H A D | macro-assembler-mips64.cc | 488 dmul(rd, rs, rt.rm()); in CallRecordWriteStub() 500 dmul(rd, rs, scratch); in CallRecordWriteStub()
|
H A D | assembler-mips64.cc | 1754 void Assembler::dmul(Register rd, Register rs, Register rt) { in dmul() function in v8::internal::Assembler
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | constants-ppc.h | 1399 V(dmul, DMUL, 0xEC000044) \
|