Home
last modified time | relevance | path

Searched full:round (Results 1 – 25 of 3614) sorted by relevance

12345678910>>...145

/external/boringssl/win-x86/crypto/fipsmodule/
Dbn-586.asm136 ; Round 0
145 ; Round 4
154 ; Round 8
163 ; Round 12
172 ; Round 16
181 ; Round 20
190 ; Round 24
199 ; Round 28
219 ; Tail Round 0
230 ; Tail Round 1
[all …]
/external/boringssl/mac-x86/crypto/fipsmodule/
Dbn-586.S125 # Round 0
134 # Round 4
143 # Round 8
152 # Round 12
161 # Round 16
170 # Round 20
179 # Round 24
188 # Round 28
208 # Tail Round 0
219 # Tail Round 1
[all …]
/external/libxml2/test/XPath/expr/
Dfunctions28 round(0.1)
29 round(5.2)
30 round(5.5)
31 round(5.6)
32 round(-0.1)
33 round(-5.2)
34 round(-5.5)
35 round(-5.6)
36 round(0.5)
37 round(-0.5)
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dquantize_avx.c34 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_avx() local
47 load_b_values(zbin_ptr, &zbin, round_ptr, &round, quant_ptr, &quant, in vpx_quantize_b_avx()
72 round = _mm_unpackhi_epi64(round, round); in vpx_quantize_b_avx()
77 calculate_qcoeff(&qcoeff0, round, quant, shift); in vpx_quantize_b_avx()
78 round = _mm_unpackhi_epi64(round, round); in vpx_quantize_b_avx()
81 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_avx()
124 calculate_qcoeff(&qcoeff0, round, quant, shift); in vpx_quantize_b_avx()
125 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_avx()
160 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_32x32_avx() local
173 // The 32x32 halves zbin and round. in vpx_quantize_b_32x32_avx()
[all …]
Dquantize_ssse3.c30 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_ssse3() local
40 load_b_values(zbin_ptr, &zbin, round_ptr, &round, quant_ptr, &quant, in vpx_quantize_b_ssse3()
54 calculate_qcoeff(&qcoeff0, round, quant, shift); in vpx_quantize_b_ssse3()
55 round = _mm_unpackhi_epi64(round, round); in vpx_quantize_b_ssse3()
58 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_ssse3()
88 calculate_qcoeff(&qcoeff0, round, quant, shift); in vpx_quantize_b_ssse3()
89 calculate_qcoeff(&qcoeff1, round, quant, shift); in vpx_quantize_b_ssse3()
125 __m128i zbin, round, quant, dequant, shift; in vpx_quantize_b_32x32_ssse3() local
138 // The 32x32 halves zbin and round. in vpx_quantize_b_32x32_ssse3()
147 round = _mm_load_si128((const __m128i *)round_ptr); in vpx_quantize_b_32x32_ssse3()
[all …]
/external/e2fsprogs/lib/ext2fs/
Ddirhash.c57 * The generic round function. The application is so specific that
62 #define ROUND(f, a, b, c, d, x, s) \ macro
75 /* Round 1 */ in halfMD4Transform()
76 ROUND(F, a, b, c, d, in[0] + K1, 3); in halfMD4Transform()
77 ROUND(F, d, a, b, c, in[1] + K1, 7); in halfMD4Transform()
78 ROUND(F, c, d, a, b, in[2] + K1, 11); in halfMD4Transform()
79 ROUND(F, b, c, d, a, in[3] + K1, 19); in halfMD4Transform()
80 ROUND(F, a, b, c, d, in[4] + K1, 3); in halfMD4Transform()
81 ROUND(F, d, a, b, c, in[5] + K1, 7); in halfMD4Transform()
82 ROUND(F, c, d, a, b, in[6] + K1, 11); in halfMD4Transform()
[all …]
/external/tensorflow/tensorflow/compiler/xla/g3doc/images/
Dops_xla_gather_1.svg1round" stroke-linecap="butt" d="m385.85303 8.472441l300.063 0l0 434.3937l-300.063 0z" fill-rule="e…
Dops_xla_gather_0.svg1round" stroke-linecap="butt" d="m218.29134 20.871391l293.88977 0l0 427.33856l-293.88977 0z" fill-r…
Dops_xla_gather_2.svg1round" stroke-linecap="butt" d="m241.7559 188.68767l292.75592 0l0 424.5984l-292.75592 0z" fill-rul…
/external/wpa_supplicant_8/src/crypto/
Daes-internal-enc.c32 * and add initial round key: in rijndaelEncrypt()
39 #define ROUND(i,d,s) \ in rijndaelEncrypt() macro
47 ROUND(1,t,s); in rijndaelEncrypt()
48 ROUND(2,s,t); in rijndaelEncrypt()
49 ROUND(3,t,s); in rijndaelEncrypt()
50 ROUND(4,s,t); in rijndaelEncrypt()
51 ROUND(5,t,s); in rijndaelEncrypt()
52 ROUND(6,s,t); in rijndaelEncrypt()
53 ROUND(7,t,s); in rijndaelEncrypt()
54 ROUND(8,s,t); in rijndaelEncrypt()
[all …]
Daes-internal-dec.c37 /* invert the order of the round keys: */ in rijndaelKeySetupDec()
44 /* apply the inverse MixColumn transform to all round keys but the in rijndaelKeySetupDec()
85 * and add initial round key: in rijndaelDecrypt()
92 #define ROUND(i,d,s) \ in rijndaelDecrypt() macro
100 ROUND(1,t,s); in rijndaelDecrypt()
101 ROUND(2,s,t); in rijndaelDecrypt()
102 ROUND(3,t,s); in rijndaelDecrypt()
103 ROUND(4,s,t); in rijndaelDecrypt()
104 ROUND(5,t,s); in rijndaelDecrypt()
105 ROUND(6,s,t); in rijndaelDecrypt()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dbuiltins-ppc-p9-f128.ll12 %0 = call fp128 @llvm.ppc.sqrtf128.round.to.odd(fp128 %a)
19 declare fp128 @llvm.ppc.sqrtf128.round.to.odd(fp128)
23 %0 = call fp128 @llvm.ppc.fmaf128.round.to.odd(fp128 %a, fp128 %b, fp128 %c)
26 %1 = call fp128 @llvm.ppc.fmaf128.round.to.odd(fp128 %a, fp128 %b, fp128 %sub)
28 %2 = call fp128 @llvm.ppc.fmaf128.round.to.odd(fp128 %a, fp128 %b, fp128 %c)
32 %3 = call fp128 @llvm.ppc.fmaf128.round.to.odd(fp128 %a, fp128 %b, fp128 %sub2)
44 declare fp128 @llvm.ppc.fmaf128.round.to.odd(fp128, fp128, fp128)
48 %0 = call fp128 @llvm.ppc.addf128.round.to.odd(fp128 %a, fp128 %b)
55 declare fp128 @llvm.ppc.addf128.round.to.odd(fp128, fp128)
59 %0 = call fp128 @llvm.ppc.subf128.round.to.odd(fp128 %a, fp128 %b)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dround.ll3 declare float @llvm.round.f32(float) #0
4 declare double @llvm.round.f64(double) #0
9 %x = call float @llvm.round.f32(float 1.25) #0
16 %x = call float @llvm.round.f32(float -1.25) #0
23 %x = call float @llvm.round.f32(float 1.5) #0
30 %x = call float @llvm.round.f32(float -1.5) #0
37 %x = call float @llvm.round.f32(float 2.75) #0
44 %x = call float @llvm.round.f32(float -2.75) #0
51 %x = call double @llvm.round.f64(double 1.3) #0
58 %x = call double @llvm.round.f64(double -1.3) #0
[all …]
/external/llvm/test/Transforms/InstCombine/
Dround.ll3 declare float @llvm.round.f32(float) #0
4 declare double @llvm.round.f64(double) #0
9 %x = call float @llvm.round.f32(float 1.25) #0
16 %x = call float @llvm.round.f32(float -1.25) #0
23 %x = call float @llvm.round.f32(float 1.5) #0
30 %x = call float @llvm.round.f32(float -1.5) #0
37 %x = call float @llvm.round.f32(float 2.75) #0
44 %x = call float @llvm.round.f32(float -2.75) #0
51 %x = call double @llvm.round.f64(double 1.3) #0
58 %x = call double @llvm.round.f64(double -1.3) #0
[all …]
/external/autotest/client/cros/
Dtouch_events_test_page.html46 msg += ' timeDelta=' + round(event.timeStamp - timeOfLastEvent) + 'ms';
62 // Round the given value to 2 decimal places.
63 function round(val) {
64 return Math.round(val * 100) / 100;
82 msg += ', wheelDelta=' + round(event.wheelDelta) +
83 ' (' + round(event.wheelDeltaX) + ',' +
84 round(event.wheelDeltaY) + ')';
89 msg += ', deltaX=' + round(event.deltaX) + ', deltaY=' +
90 round(event.deltaY) + ', deltaZ=' + round(event.deltaZ);
103 event.pointerId + ', width=' + round(event.width) +
[all …]
/external/python/cpython3/Python/
Dpytime.c95 /* Round to nearest with ties going to nearest even integer
100 double rounded = round(x); in _PyTime_RoundHalfEven()
102 /* halfway case: round to even */ in _PyTime_RoundHalfEven()
103 rounded = 2.0*round(x/2.0); in _PyTime_RoundHalfEven()
109 _PyTime_Round(double x, _PyTime_round_t round) in _PyTime_Round() argument
115 if (round == _PyTime_ROUND_HALF_EVEN) { in _PyTime_Round()
118 else if (round == _PyTime_ROUND_CEILING) { in _PyTime_Round()
121 else if (round == _PyTime_ROUND_FLOOR) { in _PyTime_Round()
125 assert(round == _PyTime_ROUND_UP); in _PyTime_Round()
133 long idenominator, _PyTime_round_t round) in _PyTime_DoubleToDenominator() argument
[all …]
/external/libvpx/libvpx/vpx_dsp/ppc/
Dquantize_vsx.c40 int16x8_t round, int16x8_t quant, in quantize_coeff() argument
42 const int16x8_t rounded = vec_vaddshs(coeff_abs, round); in quantize_coeff()
52 int16x8_t round, int16x8_t quant, in quantize_coeff_32() argument
55 const int16x8_t rounded = vec_vaddshs(coeff_abs, round); in quantize_coeff_32()
73 // Add 1 if negative to round towards zero because the C uses division. in dequantize_coeff_32()
109 int16x8_t round = vec_vsx_ld(0, round_ptr); in vpx_quantize_b_vsx() local
129 quantize_coeff(coeff0, coeff0_abs, round, quant, quant_shift, zero_mask0); in vpx_quantize_b_vsx()
131 round = vec_splat(round, 1); in vpx_quantize_b_vsx()
135 quantize_coeff(coeff1, coeff1_abs, round, quant, quant_shift, zero_mask1); in vpx_quantize_b_vsx()
164 qcoeff0 = quantize_coeff(coeff0, coeff0_abs, round, quant, quant_shift, in vpx_quantize_b_vsx()
[all …]
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dprng.cc58 // Performs a single round of the Threefry2x32 algorithm, with a rotation in ThreeFry2x32()
60 auto round = [](ThreeFry2x32State v, int rotation) { in ThreeFry2x32() local
69 x = round(x, rotations[0]); in ThreeFry2x32()
70 x = round(x, rotations[1]); in ThreeFry2x32()
71 x = round(x, rotations[2]); in ThreeFry2x32()
72 x = round(x, rotations[3]); in ThreeFry2x32()
76 x = round(x, rotations[4]); in ThreeFry2x32()
77 x = round(x, rotations[5]); in ThreeFry2x32()
78 x = round(x, rotations[6]); in ThreeFry2x32()
79 x = round(x, rotations[7]); in ThreeFry2x32()
[all …]
/external/libaom/libaom/aom_dsp/x86/
Dquantize_ssse3.c22 static INLINE void calculate_qcoeff_64x64(__m128i *coeff, const __m128i round, in calculate_qcoeff_64x64() argument
26 qcoeff = _mm_adds_epi16(*coeff, round); in calculate_qcoeff_64x64()
75 __m128i zbin, round, quant, dequant, shift; in aom_quantize_b_64x64_ssse3() local
85 round = _mm_load_si128((const __m128i *)round_ptr); in aom_quantize_b_64x64_ssse3()
92 round = _mm_add_epi16(round, two); in aom_quantize_b_64x64_ssse3()
94 round = _mm_srli_epi16(round, 2); in aom_quantize_b_64x64_ssse3()
116 round = _mm_unpackhi_epi64(round, round); in aom_quantize_b_64x64_ssse3()
121 calculate_qcoeff_64x64(&qcoeff0, round, quant, &shift); in aom_quantize_b_64x64_ssse3()
122 round = _mm_unpackhi_epi64(round, round); in aom_quantize_b_64x64_ssse3()
125 calculate_qcoeff_64x64(&qcoeff1, round, quant, &shift); in aom_quantize_b_64x64_ssse3()
[all …]
Djnt_variance_ssse3.c57 const uint16_t round = ((1 << DIST_PRECISION_BITS) >> 1); in aom_dist_wtd_comp_avg_pred_ssse3() local
59 _mm_set_epi16(round, round, round, round, round, round, round, round); in aom_dist_wtd_comp_avg_pred_ssse3()
136 const uint16_t round = ((1 << DIST_PRECISION_BITS) >> 1); in aom_dist_wtd_comp_avg_upsampled_pred_ssse3() local
138 _mm_set_epi16(round, round, round, round, round, round, round, round); in aom_dist_wtd_comp_avg_upsampled_pred_ssse3()
/external/icu/icu4c/source/test/intltest/
Ditrbnfrt.h27 * Perform an exhaustive round-trip test on the English spellout rules
32 * Perform an exhaustive round-trip test on the duration-formatting rules
37 * Perform an exhaustive round-trip test on the Spanish spellout rules
42 * Perform an exhaustive round-trip test on the French spellout rules
47 * Perform an exhaustive round-trip test on the Swiss French spellout rules
52 * Perform an exhaustive round-trip test on the Italian spellout rules
57 * Perform an exhaustive round-trip test on the German spellout rules
62 * Perform an exhaustive round-trip test on the Swedish spellout rules
67 * Perform an exhaustive round-trip test on the Dutch spellout rules
72 * Perform an exhaustive round-trip test on the Japanese spellout rules
[all …]
/external/skqp/src/core/
DSkTDynamicHash.h92 for (int round = 0; round < fCapacity; round++) { in find() local
101 index = this->nextIndex(index, round); in find()
146 for (int round = 0; round < fCapacity; round++) { in countCollisions() local
150 return round; in countCollisions()
152 index = this->nextIndex(index, round); in countCollisions()
210 for (int round = 0; round < fCapacity; round++) { in innerAdd() local
221 index = this->nextIndex(index, round); in innerAdd()
229 for (int round = 0; round < fCapacity; round++) { in innerRemove() local
238 index = this->nextIndex(index, round); in innerRemove()
283 // Given index at round N, what is the index to check at N+1? round should start at 0.
[all …]
/external/skia/src/core/
DSkTDynamicHash.h92 for (int round = 0; round < fCapacity; round++) { in find() local
101 index = this->nextIndex(index, round); in find()
146 for (int round = 0; round < fCapacity; round++) { in countCollisions() local
150 return round; in countCollisions()
152 index = this->nextIndex(index, round); in countCollisions()
210 for (int round = 0; round < fCapacity; round++) { in innerAdd() local
221 index = this->nextIndex(index, round); in innerAdd()
229 for (int round = 0; round < fCapacity; round++) { in innerRemove() local
238 index = this->nextIndex(index, round); in innerRemove()
283 // Given index at round N, what is the index to check at N+1? round should start at 0.
[all …]
/external/clang/lib/Headers/
D__wmmintrin_aes.h31 /// \brief Performs a single round of AES encryption using the Equivalent
33 /// operand using a 128-bit round key value contained in the second source
43 /// A 128-bit integer vector containing the round key value.
51 /// \brief Performs the final round of AES encryption using the Equivalent
53 /// operand using a 128-bit round key value contained in the second source
63 /// A 128-bit integer vector containing the round key value.
71 /// \brief Performs a single round of AES decryption using the Equivalent
73 /// operand using a 128-bit round key value contained in the second source
83 /// A 128-bit integer vector containing the round key value.
91 /// \brief Performs the final round of AES decryption using the Equivalent
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRbnfRoundTripTest.java26 * Perform an exhaustive round-trip test on the English spellout rules
38 * Perform an exhaustive round-trip test on the duration-formatting rules
50 * Perform an exhaustive round-trip test on the Spanish spellout rules
62 * Perform an exhaustive round-trip test on the French spellout rules
74 * Perform an exhaustive round-trip test on the Swiss French spellout rules
86 * Perform an exhaustive round-trip test on the Italian spellout rules
98 * Perform an exhaustive round-trip test on the German spellout rules
110 * Perform an exhaustive round-trip test on the Swedish spellout rules
122 * Perform an exhaustive round-trip test on the Dutch spellout rules
134 * Perform an exhaustive round-trip test on the Japanese spellout rules
[all …]

12345678910>>...145