/external/llvm-project/libc/test/src/math/ |
D | round_test.cpp | 1 //===-- Unittests for round -----------------------------------------------===// 9 #include "src/math/round.h" 23 EXPECT_FP_EQ(zero, __llvm_libc::round(zero)); in TEST() 24 EXPECT_FP_EQ(negZero, __llvm_libc::round(negZero)); in TEST() 26 EXPECT_FP_EQ(inf, __llvm_libc::round(inf)); in TEST() 27 EXPECT_FP_EQ(negInf, __llvm_libc::round(negInf)); in TEST() 30 ASSERT_NE(isnan(__llvm_libc::round(nan)), 0); in TEST() 34 EXPECT_FP_EQ(1.0, __llvm_libc::round(1.0)); in TEST() 35 EXPECT_FP_EQ(-1.0, __llvm_libc::round(-1.0)); in TEST() 36 EXPECT_FP_EQ(10.0, __llvm_libc::round(10.0)); in TEST() [all …]
|
/external/XNNPACK/src/math/ |
D | expm1.sollya | 8 print("log2(e) =", round(log2(exp(1)), single, RN)); 9 minus_ln2_hi = round(-log(2), single, RN); 10 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN); 14 print("log2(e) * 8 =", round(log2(exp(1)) * 8, single, RN)); 15 minus_ln2_o8_hi = round(-log(2)/8, single, RN); 16 minus_ln2_o8_lo = round(-log(2)/8 - minus_ln2_o8_hi, single, RN); 20 lb = round(-log(2)/2, single, RN); 21 ub = round(log(2)/2, single, RN); 26 print(" relative error =", round(dirtyinfnorm(P / expm1(x) - 1, [lb; ub]), single, RU)); 28 lb = round(-log(2)/2, single, RN); [all …]
|
D | exp.sollya | 7 print("log2(e) =", round(log2(exp(1)), single, RN)); 8 minus_ln2_hi = round(-log(2), single, RN); 9 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN); 13 print("log2(e) * 8 =", round(log2(exp(1)) * 8, single, RN)); 14 minus_ln2_o8_hi = round(-log(2)/8, single, RN); 15 minus_ln2_o8_lo = round(-log(2)/8 - minus_ln2_o8_hi, single, RN); 19 lb = round(-log(2)/2, single, RN); 20 ub = round(log(2)/2, single, RN); 25 print("relative error =", round(dirtyinfnorm(P / exp(x) - 1, [lb; ub]), single, RU)); 27 lb = round(-log(2)/2, single, RN); [all …]
|
/external/boringssl/win-x86/crypto/fipsmodule/ |
D | bn-586.asm | 128 ; Round 0 137 ; Round 4 146 ; Round 8 155 ; Round 12 164 ; Round 16 173 ; Round 20 182 ; Round 24 191 ; Round 28 211 ; Tail Round 0 222 ; Tail Round 1 [all …]
|
/external/openscreen/third_party/boringssl/win-x86/crypto/fipsmodule/ |
D | bn-586.asm | 128 ; Round 0 137 ; Round 4 146 ; Round 8 155 ; Round 12 164 ; Round 16 173 ; Round 20 182 ; Round 24 191 ; Round 28 211 ; Tail Round 0 222 ; Tail Round 1 [all …]
|
/external/tensorflow/tensorflow/core/data/service/ |
D | dispatcher_impl.h | 55 // For non-round-robin-reads, there is no coordination among consumers. Each 57 // task from its heartbeat. Round robin reads, on the other hand, require 60 // round. 62 // The protocol for adding round robin tasks works as follows: 64 // - The dispatcher keeps track of which round each round-robin job is on. This 66 // - When a new worker joins and there is an outstanding round-robin job, we 71 // - When we create a pending task, we choose a "target round" to try adding 72 // the task to. The target round is chosen by adding a "target round delta" to 73 // the latest reported round for the job. 76 // block before reading from the target round. [all …]
|
D | task_runner.h | 81 // Thread for prefetching a round worth of elements. 90 // Fills `out` with a round of data. Waits for up to `wait_us` micoseconds 101 // Buffered results for the next round. 114 // A task runner which enforces round-robin order for consuming a task's 116 // In each successive round, the runner waits to receive requests from all 124 // the start of each round we discard elements from the previous round). 126 // If the worker restarts mid-round, a situation arises where some consumers 128 // `n + 1`. To remedy this, the first round after restart may be a partial 129 // round, where we only serve elements to consumers requesting data for element 130 // index `n`, blocking other consumers until the second round. [all …]
|
/external/boringssl/mac-x86/crypto/fipsmodule/ |
D | bn-586.S | 125 # 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/rust/crates/quiche/deps/boringssl/mac-x86/crypto/fipsmodule/ |
D | bn-586.S | 125 # 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/openscreen/third_party/boringssl/mac-x86/crypto/fipsmodule/ |
D | bn-586.S | 125 # 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/ |
D | functions | 28 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/llvm-project/libc/docs/ |
D | implementation_standard.rst | 14 ``round`` function from ``math.h`` can be tested by itself, so it will live in 15 the directory of its own named ``src/math/round/``. 20 implementation header file. For the ``round`` function, the path to the 21 implementation header file will be ``src/math/round/round.h``. The rest of this 28 We will use the ``round`` function from the public ``math.h`` header file as an 29 example. The ``round`` function will be declared in an internal header file 30 ``src/math/round/round.h`` as follows:: 32 // --- round.h --- // 38 double round(double); 44 Notice that the ``round`` function declaration is nested inside the namespace [all …]
|
/external/llvm-project/clang/test/CodeGen/ |
D | fp16-ops-strictfp.c | 38 …alf @llvm.experimental.constrained.uitofp.f16.i32(i32 %{{.*}}, metadata !"round.tonearest", metada… in foo() 39 …oat @llvm.experimental.constrained.uitofp.f32.i32(i32 %{{.*}}, metadata !"round.tonearest", metada… in foo() 40 … @llvm.experimental.constrained.fptrunc.f16.f32(float %{{.*}}, metadata !"round.tonearest", metada… in foo() 52 … @llvm.experimental.constrained.fptrunc.f16.f32(float %{{.*}}, metadata !"round.tonearest", metada… in foo() 58 … @llvm.experimental.constrained.fptrunc.f16.f32(float %{{.*}}, metadata !"round.tonearest", metada… in foo() 64 ….experimental.constrained.fadd.f16(half %{{.*}}, half 0xH3C00, metadata !"round.tonearest", metada… in foo() 66 …experimental.constrained.fadd.f32(float %{{.*}}, float {{.*}}, metadata !"round.tonearest", metada… in foo() 67 … @llvm.experimental.constrained.fptrunc.f16.f32(float %{{.*}}, metadata !"round.tonearest", metada… in foo() 71 ….experimental.constrained.fadd.f16(half %{{.*}}, half 0xH3C00, metadata !"round.tonearest", metada… in foo() 73 …experimental.constrained.fadd.f32(float %{{.*}}, float {{.*}}, metadata !"round.tonearest", metada… in foo() [all …]
|
D | constrained-math-builtins.c | 13 …erimental.constrained.frem.f64(double %{{.*}}, double %{{.*}}, metadata !"round.tonearest", metada… in foo() 14 …xperimental.constrained.frem.f32(float %{{.*}}, float %{{.*}}, metadata !"round.tonearest", metada… in foo() 15 …ental.constrained.frem.f80(x86_fp80 %{{.*}}, x86_fp80 %{{.*}}, metadata !"round.tonearest", metada… in foo() 16 …perimental.constrained.frem.f128(fp128 %{{.*}}, fp128 %{{.*}}, metadata !"round.tonearest", metada… in foo() 20 …perimental.constrained.pow.f64(double %{{.*}}, double %{{.*}}, metadata !"round.tonearest", metada… in foo() 21 …experimental.constrained.pow.f32(float %{{.*}}, float %{{.*}}, metadata !"round.tonearest", metada… in foo() 22 …mental.constrained.pow.f80(x86_fp80 %{{.*}}, x86_fp80 %{{.*}}, metadata !"round.tonearest", metada… in foo() 23 …xperimental.constrained.pow.f128(fp128 %{{.*}}, fp128 %{{.*}}, metadata !"round.tonearest", metada… in foo() 27 // CHECK: call double @llvm.experimental.constrained.powi.f64(double %{{.*}}, metadata !"round.tone… in foo() 28 // CHECK: call float @llvm.experimental.constrained.powi.f32(float %{{.*}}, metadata !"round.tonear… in foo() [all …]
|
/external/exoplayer/tree/library/core/src/main/javadoc/com/google/android/exoplayer2/doc-files/ |
D | exoplayer-threading-model.svg | 3 …round" stroke-linejoin="round" stroke-width="1" stroke-dasharray="4,4"/><path d="M 332 1260 L 448 …
|
D | timeline-period.svg | 3 …round" stroke-linejoin="miter" stroke-width="1"/><text transform="translate(55 1056.5)" fill="blac…
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | fp-strict-mul-02.ll | 24 metadata !"round.dynamic", 43 metadata !"round.dynamic", 63 metadata !"round.dynamic", 85 metadata !"round.dynamic", 106 metadata !"round.dynamic", 128 metadata !"round.dynamic", 164 metadata !"round.dynamic", 168 metadata !"round.dynamic", 172 metadata !"round.dynamic", 176 metadata !"round.dynamic", [all …]
|
D | fp-strict-mul-04.ll | 29 metadata !"round.dynamic", 51 metadata !"round.dynamic", 74 metadata !"round.dynamic", 99 metadata !"round.dynamic", 123 metadata !"round.dynamic", 148 metadata !"round.dynamic", 185 metadata !"round.dynamic", 189 metadata !"round.dynamic", 193 metadata !"round.dynamic", 197 metadata !"round.dynamic", [all …]
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | quantize_avx.c | 34 __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 …]
|
D | quantize_ssse3.c | 30 __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/llvm-project/llvm/test/Transforms/InstSimplify/ |
D | round-intrinsics.ll | 10 %round = call float @llvm.floor.f32(float %cvt) 11 ret float %round 20 %round = call float @llvm.floor.f32(float %cvt) 21 ret float %round 30 %round = call float @llvm.trunc.f32(float %cvt) 31 ret float %round 40 %round = call float @llvm.trunc.f32(float %cvt) 41 ret float %round 50 %round = call float @llvm.ceil.f32(float %cvt) 51 ret float %round [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | aes-internal-enc.c | 32 * 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 …]
|
D | aes-internal-dec.c | 37 /* 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/e2fsprogs/lib/ext2fs/ |
D | dirhash.c | 59 * The generic round function. The application is so specific that 64 #define ROUND(f, a, b, c, d, x, s) \ macro 77 /* Round 1 */ in halfMD4Transform() 78 ROUND(F, a, b, c, d, in[0] + K1, 3); in halfMD4Transform() 79 ROUND(F, d, a, b, c, in[1] + K1, 7); in halfMD4Transform() 80 ROUND(F, c, d, a, b, in[2] + K1, 11); in halfMD4Transform() 81 ROUND(F, b, c, d, a, in[3] + K1, 19); in halfMD4Transform() 82 ROUND(F, a, b, c, d, in[4] + K1, 3); in halfMD4Transform() 83 ROUND(F, d, a, b, c, in[5] + K1, 7); in halfMD4Transform() 84 ROUND(F, c, d, a, b, in[6] + K1, 11); in halfMD4Transform() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/g3doc/images/ |
D | ops_xla_gather_1.svg | 1 …round" stroke-linecap="butt" d="m385.85303 8.472441l300.063 0l0 434.3937l-300.063 0z" fill-rule="e…
|