Home
last modified time | relevance | path

Searched refs:dmul (Results 1 – 25 of 44) sorted by relevance

12

/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
Docteon-instructions.s20 # CHECK: dmul $9, $6, $7 # encoding: [0x70,0xc7,0x48,0x03]
21 # CHECK: dmul $19, $24, $25 # encoding: [0x73,0x19,0x98,0x03]
22 # CHECK: dmul $9, $9, $6 # encoding: [0x71,0x26,0x48,0x03]
23 # CHECK: dmul $21, $21, $25 # encoding: [0x72,0xb9,0xa8,0x03]
79 dmul $9, $6, $7
80 dmul $19, $24, $25
81 dmul $9, $6
82 dmul $21, $25
Dmul-macro-variants.s117 dmul $4, $5, $6
122 dmul $4, $5, 1
/external/llvm/test/MC/Mips/
Docteon-instructions.s20 # CHECK: dmul $9, $6, $7 # encoding: [0x70,0xc7,0x48,0x03]
21 # CHECK: dmul $19, $24, $25 # encoding: [0x73,0x19,0x98,0x03]
22 # CHECK: dmul $9, $9, $6 # encoding: [0x71,0x26,0x48,0x03]
23 # CHECK: dmul $21, $21, $25 # encoding: [0x72,0xb9,0xa8,0x03]
79 dmul $9, $6, $7
80 dmul $19, $24, $25
81 dmul $9, $6
82 dmul $21, $25
/external/mesa3d/src/mesa/vbo/
Dvbo_save_draw.c58 int dmul = 1; in copy_vao() local
62 dmul = 2; in copy_vao()
64 if (dmul == 2) in copy_vao()
65 memcpy(tmp, *data, size * dmul * sizeof(GLfloat)); in copy_vao()
70 memcmp(currval->Ptr, tmp, 4 * sizeof(GLfloat) * dmul) != 0) { in copy_vao()
71 memcpy((fi_type*)currval->Ptr, tmp, 4 * sizeof(GLfloat) * dmul); in copy_vao()
Dvbo_exec_api.c190 int dmul = 1; in vbo_exec_copy_to_current() local
194 dmul = 2; in vbo_exec_copy_to_current()
210 memcmp(current, tmp, 4 * sizeof(GLfloat) * dmul) != 0) { in vbo_exec_copy_to_current()
211 memcpy(current, tmp, 4 * sizeof(GLfloat) * dmul); in vbo_exec_copy_to_current()
220 exec->vtx.attr[i].size / dmul, in vbo_exec_copy_to_current()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/lib/
Dgm107.asm161 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
/external/mesa3d/src/compiler/glsl/
Dgl_nir_link_uniform_initializers.c121 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()
173 i += dmul; in copy_constant_to_storage()
224 unsigned dmul = glsl_base_type_is_64bit(base_type) ? 2 : 1; in set_uniform_initializer() local
233 idx += elements * dmul; in set_uniform_initializer()
Dlink_varyings.h127 bool is_aligned(unsigned dmul, unsigned offset) const in is_aligned() argument
129 return (dmul * (this->array_subscript + offset)) % 4 == 0; in is_aligned()
Dlink_uniform_initializers.cpp227 unsigned dmul = glsl_base_type_is_64bit(base_type) ? 2 : 1; in set_uniform_initializer() local
237 idx += elements * dmul; in set_uniform_initializer()
Dlower_packed_varyings.cpp521 unsigned dmul = rvalue->type->is_64bit() ? 2 : 1; in lower_rvalue() local
555 } else if (rvalue->type->vector_elements * dmul + in lower_rvalue()
607 unsigned components = rvalue->type->vector_elements * dmul; in lower_rvalue()
Dlink_varyings.cpp483 unsigned dmul = type_without_array->is_64bit() ? 2 : 1; in check_location_aliasing() local
484 last_comp = component + type_without_array->vector_elements * dmul; in check_location_aliasing()
1084 const unsigned dmul = in assign_location() local
1125 1 : vector_elements * matrix_cols * dmul; in assign_location()
1175 unsigned array_offset = this->array_subscript * 4 * dmul; in assign_location()
1176 unsigned struct_offset = this->matched_candidate->offset * 4 * dmul; in assign_location()
2836 const unsigned dmul = in assign_varying_locations() local
2840 !tfeedback_decls[i].is_aligned(dmul, matched_candidate->offset)) || in assign_varying_locations()
/external/llvm/test/CodeGen/Mips/
Dmadd-msub.ll43 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
83 ; 64R6-DAG: dmul $[[T0:[0-9]+]], $5, $4
125 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
168 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
209 ; 64R6-DAG: dmul $[[T0:[0-9]+]], $5, $4
252 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
Dmips64instrs.ll94 ; GPRMULDIV: dmul $2, ${{[45]}}, ${{[45]}}
105 ; GPRMULDIV: dmul $2, ${{[45]}}, ${{[45]}}
Dmips64muldiv.ll16 ; GPR: dmul $2, ${{[45]}}, ${{[45]}}
Docteon.ll21 ; OCTEON: dmul $2, $4, $5
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/
Dmadd-msub.ll43 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
83 ; 64R6-DAG: dmul $[[T0:[0-9]+]], $5, $4
125 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
179 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
219 ; 64R6-DAG: dmul $[[T0:[0-9]+]], $5, $4
262 ; 64R6-DAG: dmul $[[T2:[0-9]+]], $[[T1]], $[[T0]]
Dmips64instrs.ll94 ; GPRMULDIV: dmul $2, ${{[45]}}, ${{[45]}}
105 ; GPRMULDIV: dmul $2, ${{[45]}}, ${{[45]}}
Dmips64muldiv.ll16 ; GPR: dmul $2, ${{[45]}}, ${{[45]}}
Docteon.ll22 ; OCTEON: dmul $2, $4, $5
/external/compiler-rt/lib/builtins/
Dmuldf3.c18 ARM_EABI_FNALIAS(dmul, muldf3) in ARM_EABI_FNALIAS() argument
/external/llvm/test/CodeGen/Mips/llvm-ir/
Dmul.ll206 ; 64R6: dmul $2, $4, $5
243 ; 64R6-DAG: dmul $3, $5, $7
244 ; 64R6-DAG: dmul $[[T0:[0-9]+]], $4, $7
245 ; 64R6-DAG: dmul $[[T1:[0-9]+]], $5, $6
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/llvm-ir/
Dmul.ll205 ; 64R6: dmul $2, $4, $5
242 ; 64R6-DAG: dmul $[[T1:[0-9]+]], $5, $6
245 ; 64R6-DAG: dmul $[[T0:[0-9]+]], $4, $7
247 ; 64R6-DAG: dmul $3, $5, $7
/external/mesa3d/src/mesa/main/
Duniform_query.cpp326 int dmul = (uni->type->is_64bit()) ? 2 : 1; in _mesa_get_uniform() local
333 dmul = 1; in _mesa_get_uniform()
343 (offset * elements * dmul); in _mesa_get_uniform()
345 src = &uni->storage[offset * elements * dmul]; in _mesa_get_uniform()
378 int sidx = i * dmul; in _mesa_get_uniform()
770 const int dmul = uni->type->is_64bit() ? 2 : 1; in _mesa_propagate_uniforms_to_driver_storage() local
775 unsigned src_vector_byte_stride = components * 4 * dmul; in _mesa_propagate_uniforms_to_driver_storage()
783 (uint8_t *) (&uni->storage[array_index * (dmul * components * vectors)].i); in _mesa_propagate_uniforms_to_driver_storage()
/external/mesa3d/src/mesa/program/
Dir_to_mesa.cpp2399 unsigned dmul = type->without_array()->is_64bit() ? 2 : 1; in visit_field() local
2400 unsigned comps = type->without_array()->vector_elements * dmul; in visit_field()
2499 int dmul; in _mesa_associate_uniform_storage() local
2501 dmul = storage->type->vector_elements * sizeof(float); in _mesa_associate_uniform_storage()
2503 dmul = 4 * sizeof(float); in _mesa_associate_uniform_storage()
2509 dmul *= 2; in _mesa_associate_uniform_storage()
2520 dmul *= 2; in _mesa_associate_uniform_storage()
2531 dmul *= 2; in _mesa_associate_uniform_storage()
2560 _mesa_uniform_attach_driver_storage(storage, dmul * columns, dmul, in _mesa_associate_uniform_storage()
2595 const int dmul = storage->type->is_64bit() ? 2 : 1; in _mesa_associate_uniform_storage() local
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_linking_helpers.c301 unsigned dmul = glsl_type_is_64bit(glsl_without_array(type)) ? 2 : 1; in get_unmoveable_components_masks() local
309 comps_slot2 = (elements * dmul) - num_comps; in get_unmoveable_components_masks()
321 ((1 << (elements * dmul)) - 1) << var->data.location_frac; in get_unmoveable_components_masks()

12