| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/jitter/ |
| builder_math.h | 32 Value* VLOG2PS(Value* src); 33 Value* VPOW24PS(Value* src); 34 Value* VEXP2PS(Value* src);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/jitter/ |
| builder_math.h | 32 Value* VLOG2PS(Value* src); 33 Value* VPOW24PS(Value* src); 34 Value* VEXP2PS(Value* src);
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| bi_lower_swizzle.c | 34 bi_lower_swizzle_16(bi_context *ctx, bi_instr *ins, unsigned src) 37 if (ins->src[src].swizzle == BI_SWIZZLE_H01) 72 if (src == 0 && ins->src[src].swizzle != BI_SWIZZLE_H10) 82 if (src == 2) 96 bi_swz_v2i16_to(&b, dest, bi_replace_index(ins->src[0], tmp)); 106 ins->src[src].swizzle == BI_SWIZZLE_H00 [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_opt_copy_propagate.c | 40 if (instr->src[0].src.ssa->num_components != num_comp) 45 if (instr->src[0].swizzle[i] != i) 50 if (instr->src[i].swizzle[0] != i || 51 instr->src[i].src.ssa != instr->src[0].src.ssa) 72 new_vec->src[i] = vec->src[mov->src[0].swizzle[i]] [all...] |
| nir_search_helpers.h | 37 unsigned src, unsigned num_components, 41 if (!nir_src_is_const(instr->src[src].src)) 45 nir_alu_type type = nir_op_infos[instr->op].input_types[src]; 48 int64_t val = nir_src_comp_as_int(instr->src[src].src, swizzle[i]); 54 uint64_t val = nir_src_comp_as_uint(instr->src[src].src, swizzle[i]) [all...] |
| nir_lower_packing.c | 38 lower_pack_64_from_32(nir_builder *b, nir_ssa_def *src) 40 return nir_pack_64_2x32_split(b, nir_channel(b, src, 0), 41 nir_channel(b, src, 1)); 45 lower_unpack_64_to_32(nir_builder *b, nir_ssa_def *src) 47 return nir_vec2(b, nir_unpack_64_2x32_split_x(b, src), 48 nir_unpack_64_2x32_split_y(b, src)); 52 lower_pack_32_from_16(nir_builder *b, nir_ssa_def *src) 54 return nir_pack_32_2x16_split(b, nir_channel(b, src, 0), 55 nir_channel(b, src, 1)); 59 lower_unpack_32_to_16(nir_builder *b, nir_ssa_def *src) 117 nir_ssa_def *src = nir_ssa_for_alu_src(b, alu_instr, 0); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/ |
| r300_fragprog_swizzle.h | 35 unsigned int r300FPTranslateRGBSwizzle(unsigned int src, unsigned int swizzle); 36 unsigned int r300FPTranslateAlphaSwizzle(unsigned int src, unsigned int swizzle);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/ |
| r300_fragprog_swizzle.h | 35 unsigned int r300FPTranslateRGBSwizzle(unsigned int src, unsigned int swizzle); 36 unsigned int r300FPTranslateAlphaSwizzle(unsigned int src, unsigned int swizzle);
|
| /xsrc/external/mit/xf86-input-ws/dist/ |
| Makefile.am | 17 SUBDIRS= src man include
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_search_helpers.h | 35 is_pos_power_of_two(nir_alu_instr *instr, unsigned src, unsigned num_components, 39 if (!nir_src_is_const(instr->src[src].src)) 43 switch (nir_op_infos[instr->op].input_types[src]) { 45 int64_t val = nir_src_comp_as_int(instr->src[src].src, swizzle[i]); 51 uint64_t val = nir_src_comp_as_uint(instr->src[src].src, swizzle[i]) [all...] |
| nir_lower_vec_to_movs.c | 36 src_matches_dest_reg(nir_dest *dest, nir_src *src) 38 if (dest->is_ssa || src->is_ssa) 41 return (dest->reg.reg == src->reg.reg && 42 dest->reg.base_offset == src->reg.base_offset && 44 !src->reg.indirect); 50 * writemask channels that get read from the same src reg. 61 nir_alu_src_copy(&mov->src[0], &vec->src[start_idx], mov); 65 mov->src[0].swizzle[start_idx] = vec->src[start_idx].swizzle[0] [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_asm.c | 43 const struct etna_inst_src *src = &inst->src[i]; local 45 if (!etna_rgroup_is_uniform(src->rgroup)) 49 uni_rgroup = src->rgroup; 50 uni_reg = src->reg; 52 if (uni_rgroup != src->rgroup || uni_reg != src->reg) { 65 if (inst->imm && inst->src[2].use) 83 COND(inst->src[0].use, VIV_ISA_WORD_1_SRC0_USE) | 84 VIV_ISA_WORD_1_SRC0_REG(inst->src[0].reg) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/ |
| vtn_amd.c | 71 nir_ssa_def *src[3] = { NULL, }; local 73 src[i] = vtn_ssa_value(b, w[i + 5])->def; 77 val->ssa->def = nir_fmin3(nb, src[0], src[1], src[2]); 80 val->ssa->def = nir_umin3(nb, src[0], src[1], src[2]); 83 val->ssa->def = nir_imin3(nb, src[0], src[1], src[2]) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_asm.c | 43 const struct etna_inst_src *src = &inst->src[i]; local 45 if (!etna_rgroup_is_uniform(src->rgroup)) 49 uni_rgroup = src->rgroup; 50 uni_reg = src->reg; 52 if (uni_rgroup != src->rgroup || uni_reg != src->reg) { 65 if (inst->imm && inst->src[2].use) 83 COND(inst->src[0].use, VIV_ISA_WORD_1_SRC0_USE) | 84 VIV_ISA_WORD_1_SRC0_REG(inst->src[0].reg) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/util/ |
| nir_mod_helpers.c | 40 pan_has_source_mod(nir_alu_src *src, nir_op op) 42 if (!src->src.is_ssa || src->src.ssa->parent_instr->type != nir_instr_type_alu) 45 nir_alu_instr *alu = nir_instr_as_alu(src->src.ssa->parent_instr); 54 if (!alu->src[0].src.is_ssa) 58 * src. In a scalar world, this is just psrc, but for vector archs we nee [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| streaming-load-memcpy.h | 29 /* Copies memory from src to dst, using SSE 4.1's MOVNTDQA to get streaming 37 _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len);
|
| format_pack.h | 34 typedef void (*gl_pack_ubyte_rgba_func)(const GLubyte src[4], void *dst); 37 typedef void (*gl_pack_float_rgba_func)(const GLfloat src[4], void *dst); 40 typedef void (*gl_pack_float_z_func)(const GLfloat *src, void *dst); 43 typedef void (*gl_pack_uint_z_func)(const GLuint *src, void *dst); 46 typedef void (*gl_pack_ubyte_stencil_func)(const GLubyte *src, void *dst); 73 const GLfloat src[][4], void *dst); 77 const GLubyte src[][4], void *dst); 81 const GLuint src[][4], void *dst); 85 const GLubyte *src, GLint srcRowStride, 90 const GLfloat *src, void *dst) [all...] |
| /xsrc/external/mit/libXmu/dist/include/X11/Xmu/ |
| CharSet.h | 42 _Xconst char *src 48 _Xconst char *src 60 _Xconst char *src, 67 _Xconst char *src,
|
| /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/ |
| agx_builder.h.py | 53 % for src in range(srcs): 54 , agx_index src${src} 68 % for src in range(srcs): 69 I->src[${src}] = src${src}; 88 % for src in range(srcs): 89 , agx_index src${src [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_bld_blend_logicop.c | 46 LLVMValueRef src, 52 type = LLVMTypeOf(src); 59 res = LLVMBuildNot(builder, LLVMBuildOr(builder, src, dst, ""), ""); 62 res = LLVMBuildAnd(builder, LLVMBuildNot(builder, src, ""), dst, ""); 65 res = LLVMBuildNot(builder, src, ""); 68 res = LLVMBuildAnd(builder, src, LLVMBuildNot(builder, dst, ""), ""); 74 res = LLVMBuildXor(builder, src, dst, ""); 77 res = LLVMBuildNot(builder, LLVMBuildAnd(builder, src, dst, ""), ""); 80 res = LLVMBuildAnd(builder, src, dst, ""); 83 res = LLVMBuildNot(builder, LLVMBuildXor(builder, src, dst, ""), "") [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| lp_bld_blend_logicop.c | 46 LLVMValueRef src, 52 type = LLVMTypeOf(src); 59 res = LLVMBuildNot(builder, LLVMBuildOr(builder, src, dst, ""), ""); 62 res = LLVMBuildAnd(builder, LLVMBuildNot(builder, src, ""), dst, ""); 65 res = LLVMBuildNot(builder, src, ""); 68 res = LLVMBuildAnd(builder, src, LLVMBuildNot(builder, dst, ""), ""); 74 res = LLVMBuildXor(builder, src, dst, ""); 77 res = LLVMBuildNot(builder, LLVMBuildAnd(builder, src, dst, ""), ""); 80 res = LLVMBuildAnd(builder, src, dst, ""); 83 res = LLVMBuildNot(builder, LLVMBuildXor(builder, src, dst, ""), "") [all...] |
| /xsrc/external/mit/MesaLib.old/src/mesa/main/ |
| format_pack.c | 50 #define UNPACK(SRC, OFFSET, BITS) (((SRC) >> (OFFSET)) & MAX_UINT(BITS)) 51 #define PACK(SRC, OFFSET, BITS) (((SRC) & MAX_UINT(BITS)) << (OFFSET)) 59 pack_ubyte_a8b8g8r8_unorm(const GLubyte src[4], void *dst) 64 _mesa_unorm_to_unorm(src[3], 8, 8); 68 _mesa_unorm_to_unorm(src[2], 8, 8); 72 _mesa_unorm_to_unorm(src[1], 8, 8); 76 _mesa_unorm_to_unorm(src[0], 8, 8); 87 pack_ubyte_x8b8g8r8_unorm(const GLubyte src[4], void *dst [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| brw_fs_saturate_propagation.cpp | 34 * MOV's src and dst to be coalesced and the MOV removed. 59 inst->dst.type != inst->src[0].type || 60 inst->src[0].file != VGRF || 61 inst->src[0].abs) 64 int src_var = live.var_from_reg(inst->src[0]); 71 inst->src[0], inst->size_read(0))) { 80 } else if (src_end_ip == ip || inst->dst.equals(inst->src[0])) { 85 scan_inst->src[i].type = inst->dst.type; 89 if (inst->src[0].negate) { 91 scan_inst->src[0].negate = !scan_inst->src[0].negate [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| brw_fs_saturate_propagation.cpp | 32 * MOV's src and dst to be coalesced and the MOV removed. 57 inst->dst.type != inst->src[0].type || 58 inst->src[0].file != VGRF || 59 inst->src[0].abs) 62 int src_var = v->live_intervals->var_from_reg(inst->src[0]); 69 inst->src[0], inst->size_read(0))) { 78 } else if (src_end_ip == ip || inst->dst.equals(inst->src[0])) { 83 scan_inst->src[i].type = inst->dst.type; 87 if (inst->src[0].negate) { 89 scan_inst->src[0].negate = !scan_inst->src[0].negate [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| format_unpack.h | 37 const void *src, float dst[][4]) 39 util_format_unpack_rgba(format, dst, src, n); 44 const void *src, uint8_t dst[][4]); 48 const void *src, uint32_t dst[][4]) 50 util_format_unpack_rgba(format, dst, src, n); 55 const void *src, float *dst) 57 util_format_unpack_z_float((enum pipe_format)format, dst, src, n); 63 const void *src, uint32_t *dst) 65 util_format_unpack_z_32unorm((enum pipe_format)format, dst, src, n); 70 const void *src, uint8_t *dst [all...] |