Home
last modified time | relevance | path

Searched defs:mad (Results 1 – 13 of 13) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dtypedef-pointer-overlap.h15 typedef enum mad { scientist } *mad; typedef
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dtypedef-pointer-overlap.rs122 pub type mad = ::std::os::raw::c_uint; typedef
152 pub fn takes_mad_enum(arg1: mad); in takes_mad_enum()
/third_party/mesa3d/src/imagination/vulkan/pds/
Dpvr_pds_printer.c482 static void pvr_pds_disassemble_instruction_mad(struct pvr_mad *mad, in pvr_pds_disassemble_instruction_mad()
Dpvr_pds_disasm.c830 struct pvr_mad *mad = malloc(sizeof(*mad)); in pvr_pds_disassemble_instruction_mad() local
/third_party/skia/src/core/
DSkVM.h748 F32 mad(F32 x, F32 y, F32 z) { return add(mul(x,y), z); } in mad() function
749 F32 mad(F32 x, F32 y, float z) { return mad( x , y , splat(z)); } in mad() function
750 F32 mad(F32 x, float y, F32 z) { return mad( x , splat(y), z ); } in mad() function
751 F32 mad(F32 x, float y, float z) { return mad( x , splat(y), splat(z)); } in mad() function
752 F32 mad(float x, F32 y, F32 z) { return mad(splat(x), y , z ); } in mad() function
753 F32 mad(float x, F32 y, float z) { return mad(splat(x), y , splat(z)); } in mad() function
754 F32 mad(float x, float y, F32 z) { return mad(splat(x), splat(y), z ); } in mad() function
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp781 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, i, left, j, right, i, result, i); in visitBinary() local
920 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, 0, left, i, right, 0, result); in visitBinary() local
938 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, i, left, j, right, i, result, i); in visitBinary() local
2723 Instruction *mad = emit(sw::Shader::OPCODE_IMAD, &address, &address, &oldScale, right); in lvalue() local
/third_party/mesa3d/src/intel/compiler/
Dtest_fs_saturate_propagation.cpp421 fs_inst *mad = bld.MAD(dst0, src2, src2, src2); in TEST_F() local
/third_party/mesa3d/src/amd/compiler/
Daco_optimizer.cpp3568 aco_opcode mad = fadd ? aco_opcode::v_pk_fma_f16 : aco_opcode::v_pk_mad_u16; in combine_vop3p() local
4072 aco_ptr<VOP3P_instruction> mad{ in combine_instruction() local
4098 aco_ptr<VOP3_instruction> mad{ in combine_instruction() local
Daco_instruction_selection.cpp8210 aco_opcode mad = in emit_interp_center() local
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DShaderCore.cpp798 …void ShaderCore::mad(Vector4f &dst, const Vector4f &src0, const Vector4f &src1, const Vector4f &sr… in mad() function in sw::ShaderCore
/third_party/flutter/skia/src/core/
DSkVM.cpp148 F32 Builder::mad(F32 x, F32 y, F32 z) { in mad() function in skvm::Builder
/third_party/flutter/skia/src/opts/
DSkRasterPipeline_opts.h122 SI F mad(F f, F m, F a) { return f*m+a; } in mad() function
/third_party/skia/src/opts/
DSkRasterPipeline_opts.h124 SI F mad(F f, F m, F a) { return f*m+a; } in mad() function