Home
last modified time | relevance | path

Searched refs:qValue (Results 1 – 25 of 87) sorted by relevance

1234

/dports/devel/volk/volk-2.2.1/kernels/volk/
H A Dvolk_32f_x2_s32f_interleave_16ic.h97 __m256 iValue, qValue, cplxValue1, cplxValue2; in volk_32f_x2_s32f_interleave_16ic_a_avx2() local
104 qValue = _mm256_load_ps(qBufferPtr); in volk_32f_x2_s32f_interleave_16ic_a_avx2()
151 __m128 iValue, qValue, cplxValue1, cplxValue2; in volk_32f_x2_s32f_interleave_16ic_a_sse2() local
158 qValue = _mm_load_ps(qBufferPtr); in volk_32f_x2_s32f_interleave_16ic_a_sse2()
161 cplxValue1 = _mm_unpacklo_ps(iValue, qValue); in volk_32f_x2_s32f_interleave_16ic_a_sse2()
165 cplxValue2 = _mm_unpackhi_ps(iValue, qValue); in volk_32f_x2_s32f_interleave_16ic_a_sse2()
205 __m128 iValue, qValue, cplxValue; in volk_32f_x2_s32f_interleave_16ic_a_sse() local
213 qValue = _mm_load_ps(qBufferPtr); in volk_32f_x2_s32f_interleave_16ic_a_sse()
216 cplxValue = _mm_unpacklo_ps(iValue, qValue); in volk_32f_x2_s32f_interleave_16ic_a_sse()
227 cplxValue = _mm_unpackhi_ps(iValue, qValue); in volk_32f_x2_s32f_interleave_16ic_a_sse()
[all …]
H A Dvolk_32f_x2_interleave_32fc.h93 __m256 iValue, qValue, cplxValue1, cplxValue2, cplxValue; in volk_32f_x2_interleave_32fc_a_avx() local
96 qValue = _mm256_load_ps(qBufferPtr); in volk_32f_x2_interleave_32fc_a_avx()
99 cplxValue1 = _mm256_unpacklo_ps(iValue, qValue); in volk_32f_x2_interleave_32fc_a_avx()
101 cplxValue2 = _mm256_unpackhi_ps(iValue, qValue); in volk_32f_x2_interleave_32fc_a_avx()
138 __m128 iValue, qValue, cplxValue; in volk_32f_x2_interleave_32fc_a_sse() local
141 qValue = _mm_load_ps(qBufferPtr); in volk_32f_x2_interleave_32fc_a_sse()
144 cplxValue = _mm_unpacklo_ps(iValue, qValue); in volk_32f_x2_interleave_32fc_a_sse()
149 cplxValue = _mm_unpackhi_ps(iValue, qValue); in volk_32f_x2_interleave_32fc_a_sse()
240 qValue = _mm256_loadu_ps(qBufferPtr); in volk_32f_x2_interleave_32fc_u_avx()
243 cplxValue1 = _mm256_unpacklo_ps(iValue, qValue); in volk_32f_x2_interleave_32fc_u_avx()
[all …]
H A Dvolk_32fc_s32f_power_32fc.h90 __m128 cplxValue1, cplxValue2, magnitude, phase, iValue, qValue; in volk_32fc_s32f_power_32fc_a_sse() local
104 qValue = _mm_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_32fc_s32f_power_32fc_a_sse()
106 phase = atan2f4(qValue, iValue); // Calculate the Phase in volk_32fc_s32f_power_32fc_a_sse()
108 …magnitude = _mm_sqrt_ps(_mm_add_ps(_mm_mul_ps(iValue, iValue), _mm_mul_ps(qValue, qValue))); // Ca… in volk_32fc_s32f_power_32fc_a_sse()
117 qValue = _mm_mul_ps( sinf4(phase), magnitude); // Multiply the sin of the phase by the magnitude in volk_32fc_s32f_power_32fc_a_sse()
119 cplxValue1 = _mm_unpacklo_ps(iValue, qValue); // Interleave the lower two i & q values in volk_32fc_s32f_power_32fc_a_sse()
120 cplxValue2 = _mm_unpackhi_ps(iValue, qValue); // Interleave the upper two i & q values in volk_32fc_s32f_power_32fc_a_sse()
H A Dvolk_16ic_s32f_deinterleave_32f_x2.h75 __m256 cplxValue1, cplxValue2, iValue, qValue; in volk_16ic_s32f_deinterleave_32f_x2_a_avx2() local
103 qValue = _mm256_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_16ic_s32f_deinterleave_32f_x2_a_avx2()
104 qValue = _mm256_permutevar8x32_ps(qValue,idx); in volk_16ic_s32f_deinterleave_32f_x2_a_avx2()
107 _mm256_store_ps(qBufferPtr, qValue); in volk_16ic_s32f_deinterleave_32f_x2_a_avx2()
134 __m128 cplxValue1, cplxValue2, iValue, qValue; in volk_16ic_s32f_deinterleave_32f_x2_a_sse() local
164 qValue = _mm_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_16ic_s32f_deinterleave_32f_x2_a_sse()
167 _mm_store_ps(qBufferPtr, qValue); in volk_16ic_s32f_deinterleave_32f_x2_a_sse()
276 __m256 cplxValue1, cplxValue2, iValue, qValue; in volk_16ic_s32f_deinterleave_32f_x2_u_avx2() local
304 qValue = _mm256_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_16ic_s32f_deinterleave_32f_x2_u_avx2()
305 qValue = _mm256_permutevar8x32_ps(qValue,idx); in volk_16ic_s32f_deinterleave_32f_x2_u_avx2()
[all …]
H A Dvolk_32fc_deinterleave_32f_x2.h92 __m256 cplxValue1, cplxValue2, complex1, complex2, iValue, qValue; in volk_32fc_deinterleave_32f_x2_a_avx() local
106 qValue = _mm256_shuffle_ps(complex1, complex2, 0xdd); in volk_32fc_deinterleave_32f_x2_a_avx()
109 _mm256_store_ps(qBufferPtr, qValue); in volk_32fc_deinterleave_32f_x2_a_avx()
136 __m128 cplxValue1, cplxValue2, iValue, qValue; in volk_32fc_deinterleave_32f_x2_a_sse() local
147 qValue = _mm_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_32fc_deinterleave_32f_x2_a_sse()
150 _mm_store_ps(qBufferPtr, qValue); in volk_32fc_deinterleave_32f_x2_a_sse()
235 __m256 cplxValue1, cplxValue2, complex1, complex2, iValue, qValue; in volk_32fc_deinterleave_32f_x2_u_avx() local
249 qValue = _mm256_shuffle_ps(complex1, complex2, 0xdd); in volk_32fc_deinterleave_32f_x2_u_avx()
252 _mm256_storeu_ps(qBufferPtr, qValue); in volk_32fc_deinterleave_32f_x2_u_avx()
H A Dvolk_32fc_deinterleave_imag_32f.h88 __m256 cplxValue1, cplxValue2, complex1, complex2, qValue; in volk_32fc_deinterleave_imag_32f_a_avx() local
101 qValue = _mm256_shuffle_ps(complex1, complex2, 0xdd); in volk_32fc_deinterleave_imag_32f_a_avx()
103 _mm256_store_ps(qBufferPtr, qValue); in volk_32fc_deinterleave_imag_32f_a_avx()
218 __m256 cplxValue1, cplxValue2, complex1, complex2, qValue; in volk_32fc_deinterleave_imag_32f_u_avx() local
231 qValue = _mm256_shuffle_ps(complex1, complex2, 0xdd); in volk_32fc_deinterleave_imag_32f_u_avx()
233 _mm256_storeu_ps(qBufferPtr, qValue); in volk_32fc_deinterleave_imag_32f_u_avx()
H A Dvolk_32fc_s32f_atan2_32f.h101 __m128 complex1, complex2, iValue, qValue; in volk_32fc_s32f_atan2_32f_a_sse4_1() local
112 qValue = _mm_shuffle_ps(complex1, complex2, _MM_SHUFFLE(3,1,3,1)); in volk_32fc_s32f_atan2_32f_a_sse4_1()
114 phase = atan2f4(qValue, iValue); in volk_32fc_s32f_atan2_32f_a_sse4_1()
156 __m128 complex1, complex2, iValue, qValue; in volk_32fc_s32f_atan2_32f_a_sse() local
168 qValue = _mm_shuffle_ps(complex1, complex2, _MM_SHUFFLE(3,1,3,1)); in volk_32fc_s32f_atan2_32f_a_sse()
170 phase = atan2f4(qValue, iValue); in volk_32fc_s32f_atan2_32f_a_sse()
H A Dvolk_32fc_s32f_magnitude_16i.h213 __m128 iValue, qValue; in volk_32fc_s32f_magnitude_16i_a_sse() local
227 qValue = _mm_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_32fc_s32f_magnitude_16i_a_sse()
230 __VOLK_VOLATILE __m128 qValue2 = _mm_mul_ps(qValue, qValue); // Square the Q Values in volk_32fc_s32f_magnitude_16i_a_sse()
H A Dvolk_16ic_magnitude_16i.h209 __m128 cplxValue1, cplxValue2, iValue, qValue, result; in volk_16ic_magnitude_16i_a_sse() local
238 qValue = _mm_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in volk_16ic_magnitude_16i_a_sse()
241 qValue = _mm_mul_ps(qValue, qValue); // Square the Q Values in volk_16ic_magnitude_16i_a_sse()
243 result = _mm_add_ps(iValue, qValue); // Add the I2 and Q2 values in volk_16ic_magnitude_16i_a_sse()
/dports/devel/volk/volk-2.2.1/include/volk/
H A Dvolk_sse_intrinsics.h34 __m128 iValue, qValue; in _mm_magnitudesquared_ps() local
38 qValue = _mm_shuffle_ps(cplxValue1, cplxValue2, _MM_SHUFFLE(3,1,3,1)); in _mm_magnitudesquared_ps()
40 qValue = _mm_mul_ps(qValue, qValue); // Square the Q Values in _mm_magnitudesquared_ps()
41 return _mm_add_ps(iValue, qValue); // Add the I2 and Q2 values in _mm_magnitudesquared_ps()
/dports/www/sogo/SOGo-5.4.0/SOPE/GDLContentStore/
H A DEOQualifier+GCS.m84 NSString *qKey, *qOperator, *qValue, *qFormat;
119 qValue = [val stringValue];
122 qValue = val;
124 qValue = [NSString stringWithFormat: @"'%@'", val];
127 qValue = @"NULL";
135 qValue = @"NULL";
139 qValue = @"NULL";
143 qValue = @"NULL";
154 [_ms appendFormat: qFormat, qKey, qOperator, qValue];
/dports/www/sogo-activesync/SOGo-5.4.0/SOPE/GDLContentStore/
H A DEOQualifier+GCS.m84 NSString *qKey, *qOperator, *qValue, *qFormat;
119 qValue = [val stringValue];
122 qValue = val;
124 qValue = [NSString stringWithFormat: @"'%@'", val];
127 qValue = @"NULL";
135 qValue = @"NULL";
139 qValue = @"NULL";
143 qValue = @"NULL";
154 [_ms appendFormat: qFormat, qKey, qOperator, qValue];
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/css/cssom/
H A Dcss_unit_value_test.cc160 CSSUnitValue* qValue = CSSUnitValue::Create( in TEST() local
163 EXPECT_NEAR(96, qValue->to(CSSPrimitiveValue::UnitType::kPixels)->value(), in TEST()
166 qValue->to(CSSPrimitiveValue::UnitType::kCentimeters)->value(), in TEST()
169 qValue->to(CSSPrimitiveValue::UnitType::kMillimeters)->value(), in TEST()
171 EXPECT_NEAR(1, qValue->to(CSSPrimitiveValue::UnitType::kInches)->value(), in TEST()
173 EXPECT_NEAR(72, qValue->to(CSSPrimitiveValue::UnitType::kPoints)->value(), in TEST()
175 EXPECT_NEAR(6, qValue->to(CSSPrimitiveValue::UnitType::kPicas)->value(), in TEST()
179 qValue->to(CSSPrimitiveValue::UnitType::kQuarterMillimeters)->value(), in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/css/cssom/
H A Dcss_unit_value_test.cc160 CSSUnitValue* qValue = CSSUnitValue::Create( in TEST() local
163 EXPECT_NEAR(96, qValue->to(CSSPrimitiveValue::UnitType::kPixels)->value(), in TEST()
166 qValue->to(CSSPrimitiveValue::UnitType::kCentimeters)->value(), in TEST()
169 qValue->to(CSSPrimitiveValue::UnitType::kMillimeters)->value(), in TEST()
171 EXPECT_NEAR(1, qValue->to(CSSPrimitiveValue::UnitType::kInches)->value(), in TEST()
173 EXPECT_NEAR(72, qValue->to(CSSPrimitiveValue::UnitType::kPoints)->value(), in TEST()
175 EXPECT_NEAR(6, qValue->to(CSSPrimitiveValue::UnitType::kPicas)->value(), in TEST()
179 qValue->to(CSSPrimitiveValue::UnitType::kQuarterMillimeters)->value(), in TEST()
/dports/www/sogo2/SOGo-2.4.1/SOPE/GDLContentStore/
H A DEOQualifier+GCS.m85 NSString *qKey, *qOperator, *qValue, *qFormat;
120 qValue = [val stringValue];
122 qValue = [NSString stringWithFormat: @"'%@'", val];
125 qValue = @"NULL";
133 qValue = @"NULL";
137 qValue = @"NULL";
141 qValue = @"NULL";
152 [_ms appendFormat: qFormat, qKey, qOperator, qValue];
/dports/lang/mono/mono-5.10.1.57/mcs/class/RabbitMQ.Client/src/client/messagepatterns/
H A DSubscription.cs408 object qValue; in Next()
409 if (!consumer.Queue.Dequeue(millisecondsTimeout, out qValue)) { in Next()
413 m_latestEvent = (BasicDeliverEventArgs) qValue; in Next()
/dports/java/bouncycastle15/crypto-169/core/src/test/java/org/bouncycastle/crypto/test/
H A DGOST3410Test.java975 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1079 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1235 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1379 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1523 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1666 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1809 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
1953 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
2096 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
2244 if (!pValue.equals(params.getP()) || !qValue.equals(params.getQ())) in perform()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/include/mlir/Dialect/QuantOps/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/include/mlir/Dialect/Quant/
H A DUniformSupport.h119 APInt qValue = quantizeFloatToInt(expressedValue); in quantizeFloatToInt64() local
120 return isSigned ? qValue.getSExtValue() : qValue.getZExtValue(); in quantizeFloatToInt64()

1234