/external/libvpx/libvpx/test/ |
D | vp9_subtract_test.cc | 39 block_width_, pred_, block_width_); in Run() 47 pred_ = reinterpret_cast<uint8_t *>( in SetupBlocks() 56 uint8_t *pred_; member in vp9::VP9SubtractBlockTest 78 vpx_free(pred_); in TEST_P() 94 pred_[r * block_width_ * 2 + c] = rnd.Rand8(); in TEST_P() 99 block_width_, pred_, block_width_); in TEST_P() 104 (src_[r * block_width_ + c] - pred_[r * block_width_ + c])) in TEST_P() 111 block_width_ * 2, pred_, block_width_ * 2); in TEST_P() 117 pred_[r * block_width_ * 2 + c])) in TEST_P() 124 vpx_free(pred_); in TEST_P()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | deadness_analysis.h | 59 return other.pred_ == pred_; 63 return other.pred_ != pred_; 67 explicit DeadnessPredicate(void* pred) : pred_(pred) {} in DeadnessPredicate() 72 void* pred_; member
|
D | deadness_analysis.cc | 1605 return static_cast<Predicate*>(predicate.pred_)->ToString(); in DebugString()
|
/external/libaom/libaom/test/ |
D | comp_mask_variance_test.cc | 74 uint8_t *pred_; member in AV1CompMaskVariance::AV1CompMaskVarianceTest 86 pred_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE); in SetUp() 90 pred_[i] = rnd_.Rand8(); in SetUp() 100 aom_free(pred_); in TearDown() 113 aom_comp_mask_pred_c(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, in RunCheckOutput() 115 test_impl(comp_pred2_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, inv); in RunCheckOutput() 138 func(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, 0); in RunSpeedTest() 205 NULL, NULL, 0, 0, NULL, comp_pred1_, pred_, w, h, subx, suby, ref_, in RunCheckOutput() 209 aom_comp_mask_upsampled_pred(NULL, NULL, 0, 0, NULL, comp_pred2_, pred_, in RunCheckOutput() 239 aom_comp_mask_upsampled_pred(NULL, NULL, 0, 0, NULL, comp_pred1_, pred_, in RunSpeedTest() [all …]
|
D | subtract_test.cc | 136 pred_ = CONVERT_TO_BYTEPTR(reinterpret_cast<uint16_t *>( in SetUp() 144 aom_free(CONVERT_TO_SHORTPTR(pred_)); in TearDown() 159 uint8_t *pred_; member in __anon0a1ba14c0111::AV1HBDSubtractBlockTest 173 CONVERT_TO_SHORTPTR(pred_)[j] = rnd_.Rand16() & mask; in CheckResult() local 177 pred_, block_width_, bit_depth_); in CheckResult() 183 CONVERT_TO_SHORTPTR(pred_)[r * block_width_ + c])) in CheckResult() 201 CONVERT_TO_SHORTPTR(pred_)[j] = rnd_.Rand16() & mask; in RunForSpeed() local 206 pred_, block_width_, bit_depth_); in RunForSpeed()
|
D | filterintra_test.cc | 55 pred_ = new uint8_t[MaxTxSize * MaxTxSize]; in SetUp() 61 delete[] pred_; in TearDown() 75 predFunc_(pred_, stride, txSize_, &above[1], left, mode_)); in RunTest() 94 EXPECT_EQ(predRef_[i], pred_[i]) << "Error at position: " << i << " " in DiffPred() 107 uint8_t *pred_; member in __anon071fbd080111::AV1FilterIntraPredTest
|
D | av1_round_shift_array_test.cc | 64 DECLARE_ALIGNED(32, int32_t, pred_[blk_wd]); in RunCheckOutput() 67 ref_buffer_[i] = pred_[i] = rnd_.Rand31() / 16; in RunCheckOutput() 70 test_impl(pred_, w, bit); in RunCheckOutput() 72 ASSERT_EQ(ref_buffer_[x], pred_[x]) << w << "x" << h << "mismatch @" in RunCheckOutput()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | lower_if_op.cc | 82 OutputTensor pred_; member in tensorflow::__anond5bdb07c0111::CondBuilder 117 TF_CHECK_OK(if_op_->input_tensor(0, &pred_)); in CondBuilder() 136 .Input(NodeOut(pred_)) in CreatePivotNodes() 137 .Input(NodeOut(pred_)) in CreatePivotNodes() 173 .Input(pred_) in AddInput()
|
/external/v8/src/compiler/ |
D | operator.h | 175 pred_(pred), in Operator() 184 return this->pred_(this->parameter(), that->parameter()); in Equals() 206 Pred const pred_; variable
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | shape_inference_test.cc | 42 const Shape pred_ = ShapeUtil::MakeShape(PRED, {}); member in xla::__anone01174500111::ShapeInferenceTest 91 {ShapeUtil::MakeShape(F32, {}), ShapeUtil::MakeShape(F32, {})}, pred_); in SelectAndScatterShapeInferenceTest() 115 HloOpcode::kSelect, pred_, tuple, tuple); in TEST_F() 123 HloOpcode::kSelect, pred_, matrix_64_48_, matrix_64_48_); in TEST_F() 140 HloOpcode::kSelect, pred_, matrix_64_48_, matrix_32_64_); in TEST_F() 161 HloOpcode::kSelect, ShapeUtil::MakeTupleShape({pred_, pred_}), in TEST_F() 272 ASSERT_FALSE(complex_shape(pred_, pred_, {}).ok()); in TEST_F() 359 ShapeUtil::MakeProgramShape({ShapeUtil::MakeShape(F32, {})}, pred_); in TEST_F() 381 {ShapeUtil::MakeShape(S32, {}), ShapeUtil::MakeShape(F32, {})}, pred_); in TEST_F() 392 {ShapeUtil::MakeShape(F32, {}), ShapeUtil::MakeShape(U32, {})}, pred_); in TEST_F() [all …]
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | transformed_distribution.py | 92 pred_ = _static_value(pred) 93 if pred_ is None: 95 return cond_true if pred_ else cond_false
|