Home
last modified time | relevance | path

Searched refs:src_sz (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/microsoft/compiler/
Ddxil_nir_algebraic.py51 for src_sz in (16, 32, 64):
52 if (src_sz == bit_size):
55 orig_seq = (outer_op, (inner_op, 'a@' + str(int(src_sz))))
59 shift = src_sz - bit_size
62 if outer_op_sz != src_sz or outer_op[2] != inner_op[0]:
69 for src_sz in (16, 32, 64):
70 if (src_sz == bit_size):
72 orig_seq = (outer_op, (inner_op, 'a@' + str(int(src_sz))))
77 if outer_op_sz != src_sz:
/third_party/python/Python/
Dpyhash.c375 siphash24(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) { in siphash24() argument
376 uint64_t b = (uint64_t)src_sz << 56; in siphash24()
387 while (src_sz >= 8) { in siphash24()
392 src_sz -= sizeof(mi); in siphash24()
400 switch (src_sz) { in siphash24()
424 _Py_KeyedHash(uint64_t key, const void *src, Py_ssize_t src_sz) in _Py_KeyedHash() argument
426 return siphash24(key, 0, src, src_sz); in _Py_KeyedHash()
432 pysiphash(const void *src, Py_ssize_t src_sz) { in pysiphash() argument
435 src, src_sz); in pysiphash()
/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_surface_builder.cpp95 const src_reg &src, unsigned src_sz, in emit_send() argument
102 const unsigned sz = header_sz + addr_sz + src_sz; in emit_send()
116 for (unsigned i = 0; i < src_sz; i++) in emit_send()
Dbrw_lower_logical_sends.cpp758 unsigned src_sz = in emit_load_payload_with_padding() local
769 if (src_sz < requested_alignment_sz) { in emit_load_payload_with_padding()
770 for (unsigned j = 0; j < (requested_alignment_sz / src_sz) - 1; j++) { in emit_load_payload_with_padding()
1377 const unsigned src_sz = inst->components_read(SURFACE_LOGICAL_SRC_DATA); in lower_surface_logical_send() local
1432 payload2 = bld.move_to_vgrf(src, src_sz); in lower_surface_logical_send()
1434 ex_mlen = src_sz * (inst->exec_size / 8); in lower_surface_logical_send()
1444 const unsigned sz = header_sz + addr_sz + src_sz; in lower_surface_logical_send()
1456 for (unsigned i = 0; i < src_sz; i++) in lower_surface_logical_send()
1460 mlen = header_sz + (addr_sz + src_sz) * inst->exec_size / 8; in lower_surface_logical_send()
1692 const unsigned src_sz = type_sz(src.type); in lower_lsc_surface_logical_send() local
[all …]
/third_party/mesa3d/src/panfrost/bifrost/
Dbifrost_compile.c2278 unsigned src_sz = srcs > 0 ? nir_src_bit_size(instr->src[0].src) : 0; in bi_emit_alu() local
2355 assert(sz == 32 && src_sz == 32); in bi_emit_alu()
2364 assert(sz == 32 && src_sz == 32); in bi_emit_alu()
2383 bi_make_vec_to(b, dst, unoffset_srcs, channels, comps, src_sz); in bi_emit_alu()
2406 assert(src_sz == 32); in bi_emit_alu()
2430 if (!(src_sz == 32 && comps == 2)) in bi_emit_alu()
2449 if (!(src_sz == 32 && comps == 2)) in bi_emit_alu()
2475 unsigned factor = src_sz / 8; in bi_emit_alu()
2741 if (src_sz == 32) in bi_emit_alu()
2749 if (src_sz == 32) in bi_emit_alu()
[all …]
/third_party/mesa3d/src/asahi/compiler/
Dagx_compile.c632 unsigned src_sz = srcs ? nir_src_bit_size(instr->src[0].src) : 0; in agx_emit_alu() local
805 if (src_sz == 64) in agx_emit_alu()
809 (src_sz == 32) ? AGX_CONVERT_U32_TO_F : in agx_emit_alu()
810 (src_sz == 16) ? AGX_CONVERT_U16_TO_F : in agx_emit_alu()
819 if (src_sz == 64) in agx_emit_alu()
823 (src_sz == 32) ? AGX_CONVERT_S32_TO_F : in agx_emit_alu()
824 (src_sz == 16) ? AGX_CONVERT_S16_TO_F : in agx_emit_alu()