/external/skqp/tests/ |
D | SkNxTest.cpp | 53 SkNx<N,float> fours(4); in test_Nf() local 55 assert_eq(fours.sqrt(), 2,2,2,2); in test_Nf() 56 assert_nearly_eq(0.001f, fours.rsqrt(), 0.5, 0.5, 0.5, 0.5); in test_Nf() 58 assert_nearly_eq(0.001f, fours.invert(), 0.25, 0.25, 0.25, 0.25); in test_Nf() 60 assert_eq(SkNx<N,float>::Min(a, fours), 3, 4, 4, 4); in test_Nf() 61 assert_eq(SkNx<N,float>::Max(a, fours), 4, 4, 5, 6); in test_Nf() 69 REPORTER_ASSERT(r, (a < fours).anyTrue()); in test_Nf() 70 REPORTER_ASSERT(r, (a <= fours).anyTrue()); in test_Nf() 71 REPORTER_ASSERT(r, !(a > fours).allTrue()); in test_Nf() 72 REPORTER_ASSERT(r, !(a >= fours).allTrue()); in test_Nf()
|
/external/skia/tests/ |
D | SkNxTest.cpp | 53 SkNx<N,float> fours(4); in test_Nf() local 55 assert_eq(fours.sqrt(), 2,2,2,2); in test_Nf() 57 assert_eq(SkNx<N,float>::Min(a, fours), 3, 4, 4, 4); in test_Nf() 58 assert_eq(SkNx<N,float>::Max(a, fours), 4, 4, 5, 6); in test_Nf() 66 REPORTER_ASSERT(r, (a < fours).anyTrue()); in test_Nf() 67 REPORTER_ASSERT(r, (a <= fours).anyTrue()); in test_Nf() 68 REPORTER_ASSERT(r, !(a > fours).allTrue()); in test_Nf() 69 REPORTER_ASSERT(r, !(a >= fours).allTrue()); in test_Nf()
|
/external/libaom/libaom/av1/common/x86/ |
D | cfl_ssse3.c | 99 const __m128i fours = _mm_set1_epi8(4); in cfl_luma_subsampling_422_lbd_ssse3() local 105 top = _mm_maddubs_epi16(top, fours); in cfl_luma_subsampling_422_lbd_ssse3() 109 top = _mm_maddubs_epi16(top, fours); in cfl_luma_subsampling_422_lbd_ssse3() 113 top = _mm_maddubs_epi16(top, fours); in cfl_luma_subsampling_422_lbd_ssse3() 117 top_1 = _mm_maddubs_epi16(top_1, fours); in cfl_luma_subsampling_422_lbd_ssse3()
|
D | cfl_avx2.c | 101 const __m256i fours = _mm256_set1_epi8(4); // Thirty two fours in cfl_luma_subsampling_422_lbd_avx2() local 106 __m256i top_16x16 = _mm256_maddubs_epi16(top, fours); in cfl_luma_subsampling_422_lbd_avx2()
|
D | selfguided_sse4.c | 270 const __m128i fours = _mm_add_epi32( in cross_sum() local 275 return _mm_sub_epi32(_mm_slli_epi32(_mm_add_epi32(fours, threes), 2), threes); in cross_sum()
|
D | selfguided_avx2.c | 313 const __m256i fours = _mm256_add_epi32( in cross_sum() local 318 return _mm256_sub_epi32(_mm256_slli_epi32(_mm256_add_epi32(fours, threes), 2), in cross_sum()
|
/external/libopus/celt/x86/ |
D | vq_sse2.c | 54 __m128i fours; in op_pvq_search_sse2() local 60 fours = _mm_set_epi32(4, 4, 4, 4); in op_pvq_search_sse2() 180 count = _mm_add_epi32(count, fours); in op_pvq_search_sse2()
|
/external/libvpx/libvpx/vp8/common/x86/ |
D | idctllm_mmx.asm | 148 paddw mm0, [GLOBAL(fours)] 150 paddw mm2, [GLOBAL(fours)] 242 paddw mm5, [GLOBAL(fours)] 295 fours: label
|
D | dequantize_mmx.asm | 178 paddw mm0, [GLOBAL(fours)] 180 paddw mm2, [GLOBAL(fours)] 258 fours: label
|
D | idctllm_sse2.asm | 57 paddw xmm4, [GLOBAL(fours)] 259 paddw xmm0, [GLOBAL(fours)] 261 paddw xmm2, [GLOBAL(fours)] 398 paddw xmm4, [GLOBAL(fours)] 596 paddw xmm0, [GLOBAL(fours)] 598 paddw xmm2, [GLOBAL(fours)]
|
/external/rust/crates/rayon/src/iter/ |
D | test.rs | 2125 let mut fours: Vec<_> = repeat(4).zip(v).collect(); in check_repeat_zip() localVariable 2126 assert_eq!(fours.len(), 4); in check_repeat_zip() 2127 while let Some(item) = fours.pop() { in check_repeat_zip() 2135 let mut fours: Vec<_> = repeatn(4, usize::MAX).zip(v).collect(); in check_repeatn_zip_left() localVariable 2136 assert_eq!(fours.len(), 4); in check_repeatn_zip_left() 2137 while let Some(item) = fours.pop() { in check_repeatn_zip_left() 2145 let mut fours: Vec<_> = v.into_par_iter().zip(repeatn(4, usize::MAX)).collect(); in check_repeatn_zip_right() localVariable 2146 assert_eq!(fours.len(), 4); in check_repeatn_zip_right() 2147 while let Some(item) = fours.pop() { in check_repeatn_zip_right()
|
/external/libaom/libaom/av1/common/arm/ |
D | selfguided_neon.c | 907 int32x4_t fours, threes, res; in cross_sum_inp_s32() local 919 fours = vaddq_s32(xl, vaddq_s32(xt, vaddq_s32(xr, vaddq_s32(xb, x)))); in cross_sum_inp_s32() 921 res = vsubq_s32(vshlq_n_s32(vaddq_s32(fours, threes), 2), threes); in cross_sum_inp_s32()
|
/external/libtextclassifier/native/annotator/pod_ner/test_data/ |
D | vocab.txt | 23818 fours
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/ |
D | ospd.txt.gz |
|
/external/libwebsockets/minimal-examples/api-tests/api-test-fts/ |
D | les-mis-utf8.txt | 3464 n'avoir pas même de lanternes la nuit dans les rues! On sort. Des fours,
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 73903 fours %25617 fɔrz
|
D | internal_raw_IPA.txt | 62358 fours %33297 fɔrz
|