Home
last modified time | relevance | path

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

/external/llvm-project/llvm/test/MC/AArch64/SVE/
Dmad.s10 mad z0.b, p7/m, z1.b, z31.b label
16 mad z0.h, p7/m, z1.h, z31.h label
22 mad z0.s, p7/m, z1.s, z31.s label
28 mad z0.d, p7/m, z1.d, z31.d label
44 mad z0.d, p7/m, z1.d, z31.d label
56 mad z0.d, p7/m, z1.d, z31.d label
Dmad-diagnostics.s7 mad z0.h, p8/m, z1.h, z2.h label
16 mad z0.s, p7/m, z1.h, z2.h label
/external/libchrome/base/trace_event/
Dprocess_memory_dump.cc254 std::unique_ptr<MemoryAllocatorDump> mad) { in AddAllocatorDumpInternal()
280 MemoryAllocatorDump* mad = GetAllocatorDump(absolute_name); in GetOrCreateAllocatorDump() local
288 MemoryAllocatorDump* mad = GetSharedGlobalAllocatorDump(guid); in CreateSharedGlobalAllocatorDump() local
300 MemoryAllocatorDump* mad = GetSharedGlobalAllocatorDump(guid); in CreateWeakSharedGlobalAllocatorDump() local
Dtrace_event_memory_overhead.cc167 MemoryAllocatorDump* mad = pmd->CreateAllocatorDump(dump_name); in DumpInto() local
Dmemory_allocator_dump_unittest.cc79 std::unique_ptr<MemoryAllocatorDump> mad(new MemoryAllocatorDump( in TEST() local
/external/libchrome/mojo/core/
Dhandle_table_unittest.cc44 base::trace_event::MemoryAllocatorDump* mad = pmd->GetAllocatorDump(name); in CheckNameAndValue() local
/external/tensorflow/tensorflow/core/grappler/costs/
Drobust_stats.cc75 double mad = Median(std::move(deviations)) * 1.4826; in ScaledMedianAbsoluteDeviation() local
/external/rust/crates/criterion/src/analysis/
Dmod.rs305 let mad = sample.median_abs_dev(Some(median)); in estimates() localVariable
/external/rust/crates/criterion/src/stats/univariate/
Dsample.rs87 let mad = self.median_abs_dev(Some(median)); in median_abs_dev_pct() localVariable
/external/skia/src/core/
DSkVM.h704 F32 mad(F32 x, F32 y, F32 z) { return add(mul(x,y), z); } in mad() function
705 F32 mad(F32 x, F32 y, float z) { return mad( x , y , splat(z)); } in mad() function
706 F32 mad(F32 x, float y, F32 z) { return mad( x , splat(y), z ); } in mad() function
707 F32 mad(F32 x, float y, float z) { return mad( x , splat(y), splat(z)); } in mad() function
708 F32 mad(float x, F32 y, F32 z) { return mad(splat(x), y , z ); } in mad() function
709 F32 mad(float x, F32 y, float z) { return mad(splat(x), y , splat(z)); } in mad() function
710 F32 mad(float x, float y, F32 z) { return mad(splat(x), splat(y), z ); } in mad() function
/external/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
2725 Instruction *mad = emit(sw::Shader::OPCODE_IMAD, &address, &address, &oldScale, right); in lvalue() local
/external/mesa3d/src/intel/compiler/
Dtest_fs_saturate_propagation.cpp408 fs_inst *mad = bld.MAD(dst0, src2, src2, src2); in TEST_F() local
/external/vixl/test/aarch64/
Dtest-api-movprfx-aarch64.cc158 __ mad(z17.VnS(), p4.Merging(), z17.VnS(), z23.VnS()); in TEST() local
161 __ mad(z7.VnD(), p5.Merging(), z4.VnD(), z7.VnD()); in TEST() local
715 __ mad(z30.VnB(), p2.Merging(), z20.VnB(), z14.VnB()); in TEST() local
1404 __ mad(z24.VnB(), p2.Merging(), z5.VnB(), z10.VnB()); in TEST() local
/external/rust/crates/criterion/src/html/
Dmod.rs45 mad: ConfidenceInterval, field
/external/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler_tgsi.c1362 struct etna_inst mad[2] = { }; in trans_lrp() local
/external/mesa3d/src/amd/compiler/
Daco_optimizer.cpp2814 …aco_ptr<VOP3A_instruction> mad{create_instruction<VOP3A_instruction>(mad_op, Format::VOP3A, 3, 1)}; in combine_instruction() local
Daco_instruction_selection.cpp7514 …aco_opcode mad = ctx->program->chip_class >= GFX10_3 ? aco_opcode::v_fma_f32 : aco_opcode::v_mad_f… in emit_interp_center() local
/external/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
/external/skqp/src/opts/
DSkRasterPipeline_opts.h133 SI F mad(F f, F m, F a) { return f*m+a; } in mad() function
/external/skia/src/opts/
DSkRasterPipeline_opts.h118 SI F mad(F f, F m, F a) { return f*m+a; } in mad() function
/external/vixl/src/aarch64/
Dassembler-sve-aarch64.cc3153 void Assembler::mad(const ZRegister& zdn, in mad() function in vixl::aarch64::Assembler