Home
last modified time | relevance | path

Searched refs:mul2 (Results 1 – 13 of 13) sorted by relevance

/third_party/cmsis/CMSIS/DSP/Source/ComplexMathFunctions/
Darm_cmplx_mult_real_q15.c123 … q31_t mul1, mul2, mul3, mul4; /* Temporary variables to hold intermediate data */ in arm_cmplx_mult_real_q15() local
144 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1)); in arm_cmplx_mult_real_q15()
148 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1 >> 16)); in arm_cmplx_mult_real_q15()
156 out2 = (q15_t) __SSAT(mul2 >> 15U, 16); in arm_cmplx_mult_real_q15()
170 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1)); in arm_cmplx_mult_real_q15()
174 mul2 = (q31_t) ((q15_t) (inA1 >> 16) * (q15_t) (inB1 >> 16)); in arm_cmplx_mult_real_q15()
181 out2 = (q15_t) __SSAT(mul2 >> 15U, 16); in arm_cmplx_mult_real_q15()
/third_party/cmsis/CMSIS/DSP/Source/BasicMathFunctions/
Darm_mult_q15.c114 q31_t mul1, mul2, mul3, mul4; /* Temporary variables */ in arm_mult_q15() local
136 mul2 = (q31_t) ((q15_t) (inA1 ) * (q15_t) (inB1 )); in arm_mult_q15()
142 out2 = (q15_t) __SSAT(mul2 >> 15, 16); in arm_mult_q15()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/simd/
Dgeometric.h110 glm_vec4 const mul2 = _mm_mul_ps(sub0, sub1); in glm_vec4_refract() local
112 if(_mm_movemask_ps(_mm_cmplt_ss(mul2, _mm_set1_ps(0.0f))) == 0) in glm_vec4_refract()
115 glm_vec4 const sqt0 = _mm_sqrt_ps(mul2); in glm_vec4_refract()
Dcommon.h214 glm_vec4 const mul2 = glm_vec4_mul(mul1, sub2); in glm_vec4_smoothstep() local
215 return mul2; in glm_vec4_smoothstep()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/parse-number-fxx-test-data/slowstrconv/
Dslowstrconv.go102 h.mul2()
284 func (h *highPrecisionDecimal) mul2() { func
324 h.mul2()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dsimd_quat.inl122 __m128 mul2 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(2, 3, 0, 1))); local
128 __m128 add2 = _mm_dp_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f), 0xff);
139 mul2 = _mm_mul_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f));
140 __m128 add2 = _mm_add_ps(mul2, _mm_movehl_ps(mul2, mul2));
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dquaternion_simd.inl20 …__m128 const mul2 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(2, 3, 0, 1)));
26 __m128 const add2 = _mm_dp_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f), 0xff);
37 __m128 const mul6 = _mm_mul_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f));
/third_party/openssl/crypto/rsa/
Drsa_lib.c234 static ossl_inline uint64_t mul2(uint64_t a, uint64_t b) in mul2() function
286 v = mul2(v, v); in ilog_e()
366 y = (uint16_t)((mul2(c1_923, icbrt64(mul2(mul2(x, lx), lx))) - c4_690) in ossl_ifc_ffc_compute_security_bits()
/third_party/mesa3d/src/nouveau/codegen/
Dnv50_ir_peephole.cpp906 ConstantFolding::tryCollapseChainedMULs(Instruction *mul2, in tryCollapseChainedMULs() argument
913 float f = imm2.reg.data.f32 * exp2f(mul2->postFactor); in tryCollapseChainedMULs()
916 assert(mul2->op == OP_MUL && mul2->dType == TYPE_F32); in tryCollapseChainedMULs()
918 if (mul2->getSrc(t)->refCount() == 1) { in tryCollapseChainedMULs()
919 insn = mul2->getSrc(t)->getInsn(); in tryCollapseChainedMULs()
920 if (!mul2->src(t).mod && insn->op == OP_MUL && insn->dType == TYPE_F32) in tryCollapseChainedMULs()
932 mul2->def(0).replace(mul1->getDef(0), false); in tryCollapseChainedMULs()
933 mul1->saturate = mul2->saturate; in tryCollapseChainedMULs()
939 mul2->def(0).replace(mul1->getDef(0), false); in tryCollapseChainedMULs()
942 mul1->saturate = mul2->saturate; in tryCollapseChainedMULs()
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_load_store_vectorize.c327 uint64_t mul2 = 1, add2 = 0; in parse_offset() local
329 progress = parse_alu(base, nir_op_imul, &mul2); in parse_offset()
330 mul *= mul2; in parse_offset()
332 mul2 = 0; in parse_offset()
333 progress |= parse_alu(base, nir_op_ishl, &mul2); in parse_offset()
334 mul <<= mul2; in parse_offset()
/third_party/mbedtls/library/
Decp.c2673 goto mul2; in mbedtls_ecp_muladd_restartable()
2686 mul2: in mbedtls_ecp_muladd_restartable()
/third_party/ffmpeg/libavcodec/x86/
Dvp9itxfm.asm105 %macro VP9_UNPACK_MULSUB_2D_4X 6 ; dst1 [src1], dst2 [src2], dst3, dst4, mul1, mul2
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h59267 void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); member
59275 void (*mul2)(MPI, MPI, struct mpi_ec_ctx *); member