Home
last modified time | relevance | path

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

/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.h763 F32 mad(F32 x, F32 y, F32 z) { return add(mul(x,y), z); } in mad() function
764 F32 mad(F32 x, F32 y, float z) { return mad( x , y , splat(z)); } in mad() function
765 F32 mad(F32 x, float y, F32 z) { return mad( x , splat(y), z ); } in mad() function
766 F32 mad(F32 x, float y, float z) { return mad( x , splat(y), splat(z)); } in mad() function
767 F32 mad(float x, F32 y, F32 z) { return mad(splat(x), y , z ); } in mad() function
768 F32 mad(float x, F32 y, float z) { return mad(splat(x), y , splat(z)); } in mad() function
769 F32 mad(float x, float y, F32 z) { return mad(splat(x), splat(y), z ); } in mad() function
/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/skia/src/opts/
DSkRasterPipeline_opts.h124 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