Home
last modified time | relevance | path

Searched defs:mul (Results 1 – 25 of 358) sorted by relevance

12345678910>>...15

/external/mesa3d/src/nouveau/codegen/lib/
Dgk104.asm110 mul f32 $r3 $r3 0x37800074 label
113 mul f32 $r2 $r2 0x37800074 label
115 mul f32 $r1 $r1 0x37800074 label
116 mul f32 $r0 $r0 0x37800074 label
126 mul f32 $r3 $r3 0x38000187 label
129 mul f32 $r2 $r2 0x38000187 label
131 mul f32 $r1 $r1 0x38000187 label
132 mul f32 $r0 $r0 0x38000187 label
199 mul f32 $r2 $r2 0x3a802007 label
201 mul f32 $r1 $r1 0x3a802007 label
[all …]
/external/rust/crates/num-bigint/src/bigint/
Dmultiplication.rs15 fn mul(self, other: Sign) -> Sign { in mul() method
78 fn mul(self, other: u32) -> BigInt { in mul() method
97 fn mul(self, other: u64) -> BigInt { in mul() method
116 fn mul(self, other: u128) -> BigInt { in mul() method
139 fn mul(self, other: i32) -> BigInt { in mul() method
164 fn mul(self, other: i64) -> BigInt { in mul() method
189 fn mul(self, other: i128) -> BigInt { in mul() method
/external/tensorflow/tensorflow/lite/delegates/gpu/common/transformations/
Dfuse_mul_to_conv.cc178 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseConvolution2DWithMultiply() local
199 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseDepthwiseConvolution2DWithMultiply() local
221 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseConvolutionTransposedWithMultiply() local
241 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseFullyConnectedWithMultiply() local
257 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseMultiplyWithConvolution2D() local
275 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseMultiplyWithDepthwiseConvolution2D() local
293 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseMultiplyWithConvolutionTransposed() local
310 auto mul = absl::get_if<Tensor<Linear, DataType::FLOAT32>>(&mul_attr.param); in FuseMultiplyWithFullyConnected() local
/external/guava/guava/src/com/google/common/hash/
DFarmHashFingerprint64.java87 private static long hashLength16(long u, long v, long mul) { in hashLength16()
120 long mul = K2 + length * 2L; in hashLength0to16() local
128 long mul = K2 + length * 2; in hashLength0to16() local
144 long mul = K2 + length * 2L; in hashLength17to32() local
154 long mul = K2 + length * 2L; in hashLength33To64() local
199 long mul = K1 + ((z & 0xFF) << 1); in hashLength65Plus() local
/external/guava/android/guava/src/com/google/common/hash/
DFarmHashFingerprint64.java87 private static long hashLength16(long u, long v, long mul) { in hashLength16()
120 long mul = K2 + length * 2L; in hashLength0to16() local
128 long mul = K2 + length * 2; in hashLength0to16() local
144 long mul = K2 + length * 2L; in hashLength17to32() local
154 long mul = K2 + length * 2L; in hashLength33To64() local
199 long mul = K1 + ((z & 0xFF) << 1); in hashLength65Plus() local
/external/libaom/aom_dsp/
Dfft_common.h148 #define GEN_FFT_8(ret, suffix, T, T_VEC, load, store, constant, add, sub, mul) \ argument
184 mul) \ argument
276 mul) \ argument
545 mul) \ argument
589 mul) \ argument
704 mul) \ argument
/external/mesa3d/src/intel/compiler/
Dtest_fs_scoreboard.cpp495 fs_inst *mul = instruction(last_block, 0); in TEST_F() local
530 fs_inst *mul = instruction(last_block, 0); in TEST_F() local
566 fs_inst *mul = instruction(last_block, 0); in TEST_F() local
596 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
628 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
660 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
692 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
729 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
773 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
817 fs_inst *mul = instruction(last_block, 1); in TEST_F() local
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_live_range_test.cc93 auto mul = builder.AddInstruction(HloInstruction::CreateBinary( in TEST_F() local
118 auto mul = builder.AddInstruction(HloInstruction::CreateBinary( in TEST_F() local
154 auto mul = builder.AddInstruction(HloInstruction::CreateBinary( in TEST_F() local
191 auto mul = builder.AddInstruction(HloInstruction::CreateBinary( in TEST_F() local
232 auto mul = builder.AddInstruction(HloInstruction::CreateBinary( in TEST_F() local
/external/tensorflow/tensorflow/tools/graph_transforms/
Dfold_constants_test.cc67 Output mul = in TestSimpleAdd() local
104 Output mul = in TestOpExclusionAdd() local
128 Output mul = in TestShapePropagation() local
157 Output mul = in TestPreserveOutputShapes() local
310 Output mul = Mul(root.WithOpName("output"), add, placeholder); in TestRemoveUnusedNodes() local
354 Output mul = ::tensorflow::ops::Mul( in TestMaxConstantSizeInBytes() local
/external/mesa3d/src/util/tools/
Dfind_hash_func.c63 for (unsigned mul = 1; mul < (1 << 16); mul++) { in find_perfect_hash_func() local
110 for (unsigned mul = start_mul; mul < end_mul; mul += num_threads) { in find_translate_func() local
147 unsigned mul, rshift, mask, max; in print_hash_code() local
/external/rust/crates/ryu/src/
Dd2s_small_table.rs105 let mul = *DOUBLE_POW5_SPLIT2.get_unchecked(base as usize); in compute_pow5() localVariable
128 let mul = *DOUBLE_POW5_INV_SPLIT2.get_unchecked(base as usize); // 1/5^base2 in compute_inv_pow5() localVariable
/external/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/tensorflow/third_party/absl/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/angle/third_party/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/cronet/third_party/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/libtextclassifier/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/webrtc/third_party/abseil-cpp/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/mesa3d/src/compiler/nir/tests/
Dmod_analysis_tests.cpp135 nir_def *mul = nir_imul(b, v[c1], v[c2]); in TEST_F() local
151 nir_def *mul = nir_imul(b, invocation, v[c]); in TEST_F() local
171 nir_def *mul = nir_imul_vec2y(b, invocation, vec2); in TEST_F() local
192 nir_def *mul = nir_imul_32x16(b, invocation, v[c]); in TEST_F() local
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
DDynamicSymmetry.h125 inline GroupElement mul(Generator g1, GroupElement g2) const in mul() function
130 inline GroupElement mul(GroupElement g1, Generator g2) const in mul() function
135 inline GroupElement mul(Generator g1, Generator g2) const in mul() function
179 inline DynamicSGroup::GroupElement DynamicSGroup::mul(GroupElement g1, GroupElement g2) const in mul() function
/external/mesa3d/src/intel/compiler/elk/
Delk_test_vec4_register_coalesce.cpp151 vec4_instruction *mul = v->emit(v->MUL(temp, something, elk_imm_f(1.0f))); in TEST_F() local
175 vec4_instruction *mul = v->emit(v->MUL(temp, something, elk_imm_f(1.0f))); in TEST_F() local
242 vec4_instruction *mul = v->emit(v->MUL(temp, some_src_1, some_src_2)); in TEST_F() local
/external/rust/crates/glam/src/f32/
Daffine2.rs381 fn mul(self, rhs: Affine2) -> Self::Output { in mul() method
411 fn mul(self, rhs: Mat3) -> Self::Output { in mul() method
420 fn mul(self, rhs: Affine2) -> Self::Output { in mul() method
440 fn mul(self, rhs: Mat3A) -> Self::Output { in mul() method
449 fn mul(self, rhs: Affine2) -> Self::Output { in mul() method
/external/openscreen/third_party/abseil/src/absl/hash/internal/
Dcity.cc203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16()
220 uint64_t mul = k2 + len * 2; in HashLen0to16() local
228 uint64_t mul = k2 + len * 2; in HashLen0to16() local
246 uint64_t mul = k2 + len * 2; in HashLen17to32() local
278 uint64_t mul = k2 + len * 2; in HashLen33to64() local
/external/skia/include/effects/
DSkColorMatrixFilter.h17 static sk_sp<SkColorFilter> MakeLightingFilter(SkColor mul, SkColor add) { in MakeLightingFilter()

12345678910>>...15