/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | typedef-pointer-overlap.h | 15 typedef enum mad { scientist } *mad; typedef 29 void takes_mad_ptr(mad); 30 void takes_mad_enum(enum mad);
|
/third_party/skia/src/opts/ |
H A D | SkRasterPipeline_opts.h | 124 SI F mad(F f, F m, F a) { return f*m+a; } in mad() function 214 SI F mad(F f, F m, F a) { return vfmaq_f32(a,f,m); } 219 SI F mad(F f, F m, F a) { return vmlaq_f32(a,f,m); } 233 return vcvtq_u32_f32(mad(v,scale,0.5f)); 355 SI F mad(F f, F m, F a) { 702 SI F mad(F f, F m, F a) { return f*m+a; } 1414 BLEND_MODE(srcover) { return mad(d, inv(sa), s); } 1415 BLEND_MODE(dstover) { return mad(s, inv(da), d); } 1431 a = mad(da, inv(a), a); \ 1592 r = mad(d [all...] |
/third_party/mesa3d/src/imagination/vulkan/pds/ |
H A D | pvr_pds_disasm.c | 830 struct pvr_mad *mad = malloc(sizeof(*mad)); in pvr_pds_disassemble_instruction_mad() local 831 assert(mad); in pvr_pds_disassemble_instruction_mad() 833 mad->instruction.next = NULL; in pvr_pds_disassemble_instruction_mad() 834 mad->instruction.type = INS_MAD; in pvr_pds_disassemble_instruction_mad() 836 mad->cc = instruction & PVR_ROGUE_PDSINST_MAD_CC_ENABLE; in pvr_pds_disassemble_instruction_mad() 837 mad->sna = instruction & PVR_ROGUE_PDSINST_MAD_SNA_SUB; in pvr_pds_disassemble_instruction_mad() 838 mad->alum = (instruction & PVR_ROGUE_PDSINST_MAD_ALUM_SIGNED); in pvr_pds_disassemble_instruction_mad() 840 mad->src0 = pvr_pds_disassemble_regs32(context, in pvr_pds_disassemble_instruction_mad() 846 mad in pvr_pds_disassemble_instruction_mad() [all...] |
H A D | pvr_pds_printer.c | 482 static void pvr_pds_disassemble_instruction_mad(struct pvr_mad *mad, in pvr_pds_disassemble_instruction_mad() argument 491 pvr_pds_disassemble_operand(mad->src0, src0, sizeof(src0)); in pvr_pds_disassemble_instruction_mad() 492 pvr_pds_disassemble_operand(mad->src1, src1, sizeof(src1)); in pvr_pds_disassemble_instruction_mad() 493 pvr_pds_disassemble_operand(mad->src2, src2, sizeof(src2)); in pvr_pds_disassemble_instruction_mad() 494 pvr_pds_disassemble_operand(mad->dst, dst, sizeof(dst)); in pvr_pds_disassemble_instruction_mad() 500 mad->cc ? "? " : "", in pvr_pds_disassemble_instruction_mad() 504 mad->sna ? "-" : "+", in pvr_pds_disassemble_instruction_mad() 506 mad->alum ? " [signed]" : ""); in pvr_pds_disassemble_instruction_mad()
|
/third_party/ffmpeg/tests/fate/ |
H A D | ea.mak | 7 FATE_SAMPLES_EA-$(call FRAMECRC, EA, EAMAD) += fate-ea-mad 8 fate-ea-mad: CMD = framecrc -i $(TARGET_SAMPLES)/ea-mad/NFS6LogoE.mad -an
|
H A D | pcm.mak | 8 fate-pcm-planar: CMD = framecrc -i $(TARGET_SAMPLES)/ea-mad/xeasport.mad -vn -af aresample
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | typedef-pointer-overlap.rs | 121 pub const mad_scientist: mad = 0; 122 pub type mad = ::std::os::raw::c_uint; types 123 pub type mad_ptr = *mut mad; 152 pub fn takes_mad_enum(arg1: mad); in takes_mad_enum()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/shaders/compiled/ |
H A D | standardvs.h | 23 mad r0, v0, c2.xyzz, c2.xxww
25 mad oT0.xy, r0, c1.zwzw, c1
|
H A D | luminanceps.h | 26 mad r0.x, r0.x, r1.x, c1.x
27 mad r0.y, r0.w, r1.w, c1.w
|
H A D | componentmaskps.h | 26 mad r0, r0, r1, c1
|
H A D | componentmaskpremultps.h | 27 mad r0, r0, r1, c1
|
H A D | luminancepremultps.h | 27 mad r0, r0, r1, c1
|
H A D | componentmaskunmultps.h | 29 mad r0, r0, r1, c1
|
H A D | luminanceunmultps.h | 29 mad r0, r0, r1, c1
|
/third_party/skia/src/shaders/ |
H A D | SkShader.cpp | 260 x = p->mad(x, p->uniformF(uniforms->pushF(m[0])), p->uniformF(uniforms->pushF(m[2]))); in ApplyMatrix() 261 y = p->mad(y, p->uniformF(uniforms->pushF(m[4])), p->uniformF(uniforms->pushF(m[5]))); in ApplyMatrix() 264 return p->mad(x, p->uniformF(uniforms->pushF(m[3*row+0])), in ApplyMatrix() 265 p->mad(y, p->uniformF(uniforms->pushF(m[3*row+1])), in ApplyMatrix()
|
H A D | SkTransformShader.cpp | 34 return b->mad(x, b->arrayF(fMatrix, 3*row+0), in applyMatrix() 35 b->mad(y, b->arrayF(fMatrix, 3*row+1), in applyMatrix()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/compiled/ |
H A D | clear11_fl9vs.h | 36 mad oPos.xy, v0.w, c0, v0
|
H A D | passthroughlum2d11ps.h | 48 mad r0, r0.x, c0.xxxy, c0.yyyx
|
H A D | passthroughr2d11ps.h | 48 mad r0, r0.x, c0.xyyy, c0.yyyx
|
H A D | passthroughrg2d11ps.h | 48 mad r0, r0.xyxx, c0.xxyy, c0.yyyx
|
H A D | passthroughrgb2d11ps.h | 48 mad r0, r0.xyzx, c0.xxxy, c0.yyyx
|
H A D | passthroughrgba2d_5551_11ps.h | 48 mad r0, r0, c0.xxxy, c0.z
|
H A D | passthroughrgba2d_4444_11ps.h | 48 mad r0, r0, c0.x, c0.y
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | disasm-a3xx.c | 247 OPC(3, OPC_MAD_U16, mad.u16), 249 OPC(3, OPC_MAD_S16, mad.s16), 251 OPC(3, OPC_MAD_U24, mad.u24), 252 OPC(3, OPC_MAD_S24, mad.s24), 253 OPC(3, OPC_MAD_F16, mad.f16), 254 OPC(3, OPC_MAD_F32, mad.f32),
|
/third_party/skia/src/core/ |
H A D | SkDraw_vertices.cpp | 134 return b->mad(x, b->arrayF(fCoordMatrix, row), in onProgram() 135 b->mad(y, b->arrayF(fCoordMatrix, row + 3), in onProgram() 146 return b->mad(x, b->arrayF(fColorMatrix, row), in onProgram() 147 b->mad(y, b->arrayF(fColorMatrix, row + 4), in onProgram()
|