/external/swiftshader/third_party/subzero/pydir/ |
D | bisection-tool.py | 93 second_half = (mid, current_interval[1]) 99 exit_code_2 = runner.Run([second_half] + include_ranges) 104 partial_result = flatten(find_failures(runner, first_half, [second_half] 108 partial_result.extend(flatten(find_failures(runner, second_half, 120 if second_half[1] == second_half[0] + 1: 121 result.append(second_half[0]) 123 result.extend(find_failures(runner, second_half,
|
/external/libaom/libaom/aom_dsp/x86/ |
D | sad_highbd_avx2.c | 808 uint32_t second_half[4]; in aom_highbd_sad16x32x4d_avx2() local 823 aom_highbd_sad16x16x4d_avx2(src, src_stride, ref, ref_stride, second_half); in aom_highbd_sad16x32x4d_avx2() 824 sad_array[0] = first_half[0] + second_half[0]; in aom_highbd_sad16x32x4d_avx2() 825 sad_array[1] = first_half[1] + second_half[1]; in aom_highbd_sad16x32x4d_avx2() 826 sad_array[2] = first_half[2] + second_half[2]; in aom_highbd_sad16x32x4d_avx2() 827 sad_array[3] = first_half[3] + second_half[3]; in aom_highbd_sad16x32x4d_avx2() 861 uint32_t second_half[4]; in aom_highbd_sad32x32x4d_avx2() local 876 aom_highbd_sad32x16x4d_avx2(src, src_stride, ref, ref_stride, second_half); in aom_highbd_sad32x32x4d_avx2() 877 sad_array[0] = first_half[0] + second_half[0]; in aom_highbd_sad32x32x4d_avx2() 878 sad_array[1] = first_half[1] + second_half[1]; in aom_highbd_sad32x32x4d_avx2() [all …]
|
D | intrapred_ssse3.c | 634 ptrdiff_t stride, int second_half) { in smooth_pred_4xh() argument 639 __m128i rep = second_half ? _mm_set1_epi16(0x8008) : _mm_set1_epi16(0x8000); in smooth_pred_4xh() 789 ptrdiff_t stride, int second_half) { in smooth_pred_8xh() argument 795 __m128i rep = second_half ? _mm_set1_epi16(0x8008) : _mm_set1_epi16(0x8000); in smooth_pred_8xh() 1498 int second_half) { in smooth_h_pred_8xh() argument 1502 __m128i rep = second_half ? _mm_set1_epi16(0x8008) : _mm_set1_epi16(0x8000); in smooth_h_pred_8xh()
|
/external/tensorflow/tensorflow/core/lib/io/ |
D | zlib_buffers_test.cc | 243 string second_half; in TestTell() local 245 in.ReadNBytes(data.size() - first_half.size(), &second_half)); in TestTell() 247 bytes_read.append(second_half); in TestTell() 277 string second_half(data, data_half_size, data.size() - data_half_size); in TestSkipNBytes() local 287 TF_ASSERT_OK(in.ReadNBytes(second_half.size(), &bytes_read)); in TestSkipNBytes() 288 EXPECT_EQ(bytes_read, second_half); in TestSkipNBytes()
|
/external/v8/src/base/utils/ |
D | random-number-generator.cc | 47 unsigned first_half, second_half; in RandomNumberGenerator() local 50 result = rand_s(&second_half); in RandomNumberGenerator() 52 SetSeed((static_cast<int64_t>(first_half) << 32) + second_half); in RandomNumberGenerator()
|
/external/tensorflow/tensorflow/contrib/checkpoint/python/ |
D | split_dependency_test.py | 66 self.second_half = resource_variable_ops.ResourceVariable([0., 0.]) 92 self.assertAllEqual([3., 4.], self.evaluate(regular_deps.second_half))
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_of_strings.cpp | 99 const Eigen::DSizes<ptrdiff_t, 2> second_half(0, 3); in test_slices() local 102 Tensor<std::string, 2> t2 = data.slice(second_half, half_size); in test_slices()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_renderstatus.cpp | 572 Coon_BezierCoeff second_half() { in second_half() function 629 Coon_Bezier second_half() { in second_half() function 631 result.x = x.second_half(); in second_half() 632 result.y = y.second_half(); in second_half() 792 Draw(x_scale, y_scale, left, bottom + 1, m1, C2, D1.second_half(), in Draw() 793 D2.second_half()); in Draw() 802 Draw(x_scale, y_scale, left + 1, bottom, C1.second_half(), in Draw() 803 C2.second_half(), m2, D2); in Draw() 809 Coon_Bezier m1s = m1.second_half(); in Draw() 811 Coon_Bezier m2s = m2.second_half(); in Draw() [all …]
|