Home
last modified time | relevance | path

Searched refs:pred_ (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/libvpx/test/
Dvp9_subtract_test.cc39 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/libaom/libaom/test/
Dcomp_mask_variance_test.cc73 uint8_t *pred_; member in AV1CompMaskVariance::AV1CompMaskVarianceTest
85 pred_ = (uint8_t *)aom_memalign(16, MAX_SB_SQUARE); in SetUp()
89 pred_[i] = rnd_.Rand8(); in SetUp()
99 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()
139 func(comp_pred1_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, 0); in RunSpeedTest()
206 NULL, NULL, 0, 0, NULL, comp_pred1_, pred_, w, h, subx, suby, ref_, in RunCheckOutput()
210 aom_comp_mask_upsampled_pred(NULL, NULL, 0, 0, NULL, comp_pred2_, pred_, in RunCheckOutput()
241 aom_comp_mask_upsampled_pred(NULL, NULL, 0, 0, NULL, comp_pred1_, pred_, in RunSpeedTest()
[all …]
Dsubtract_test.cc133 pred_ = CONVERT_TO_BYTEPTR(reinterpret_cast<uint16_t *>( in SetUp()
141 aom_free(CONVERT_TO_SHORTPTR(pred_)); in TearDown()
156 uint8_t *pred_; member in __anon00a264410111::AV1HBDSubtractBlockTest
170 CONVERT_TO_SHORTPTR(pred_)[j] = rnd_.Rand16() & mask; in CheckResult() local
174 pred_, block_width_, bit_depth_); in CheckResult()
180 CONVERT_TO_SHORTPTR(pred_)[r * block_width_ + c])) in CheckResult()
198 CONVERT_TO_SHORTPTR(pred_)[j] = rnd_.Rand16() & mask; in RunForSpeed() local
203 pred_, block_width_, bit_depth_); in RunForSpeed()
Dfilterintra_test.cc53 pred_ = new uint8_t[MaxTxSize * MaxTxSize]; in SetUp()
59 delete[] pred_; in TearDown()
73 predFunc_(pred_, stride, txSize_, &above[1], left, mode_)); in RunTest()
92 EXPECT_EQ(predRef_[i], pred_[i]) << "Error at position: " << i << " " in DiffPred()
105 uint8_t *pred_; member in __anon22cd97dd0111::AV1FilterIntraPredTest
Dav1_round_shift_array_test.cc63 DECLARE_ALIGNED(32, int32_t, pred_[blk_wd]); in RunCheckOutput()
66 ref_buffer_[i] = pred_[i] = rnd_.Rand31() / 16; in RunCheckOutput()
69 test_impl(pred_, w, bit); in RunCheckOutput()
71 ASSERT_EQ(ref_buffer_[x], pred_[x]) << w << "x" << h << "mismatch @" in RunCheckOutput()
/external/tensorflow/tensorflow/core/common_runtime/
Dlower_if_op.cc79 OutputTensor pred_; member in tensorflow::__anoneb751e910111::CondBuilder
114 TF_CHECK_OK(if_op_->input_tensor(0, &pred_)); in CondBuilder()
125 .Input(NodeOut(pred_)) in CreatePivotNodes()
126 .Input(NodeOut(pred_)) in CreatePivotNodes()
162 .Input(pred_) in AddInput()
/external/tensorflow/tensorflow/compiler/xla/service/
Dshape_inference_test.cc41 const Shape pred_ = ShapeUtil::MakeShape(PRED, {}); member in xla::__anon8d0540a50111::ShapeInferenceTest
90 {ShapeUtil::MakeShape(F32, {}), ShapeUtil::MakeShape(F32, {})}, pred_); in SelectAndScatterShapeInferenceTest()
114 HloOpcode::kSelect, pred_, tuple, tuple); in TEST_F()
121 HloOpcode::kSelect, pred_, matrix_64_48_, matrix_64_48_); in TEST_F()
136 HloOpcode::kSelect, pred_, matrix_64_48_, matrix_32_64_); in TEST_F()
156 HloOpcode::kSelect, ShapeUtil::MakeTupleShape({pred_, pred_}), in TEST_F()
261 ASSERT_FALSE(complex_shape(pred_, pred_, {}).ok()); in TEST_F()
348 ShapeUtil::MakeProgramShape({ShapeUtil::MakeShape(F32, {})}, pred_); in TEST_F()
370 {ShapeUtil::MakeShape(S32, {}), ShapeUtil::MakeShape(F32, {})}, pred_); in TEST_F()
381 {ShapeUtil::MakeShape(F32, {}), ShapeUtil::MakeShape(U32, {})}, pred_); in TEST_F()
[all …]
/external/v8/src/compiler/
Doperator.h176 pred_(pred), in Operator()
185 return this->pred_(this->parameter(), that->parameter()); in Equals()
207 Pred const pred_; variable
Dnode-cache.h56 Pred pred_; variable
Dnode-cache.cc84 if (pred_(entry->key_, key)) return &entry->value_; in Find()
/external/tensorflow/tensorflow/python/ops/distributions/
Dtransformed_distribution.py92 pred_ = _static_value(pred)
93 if pred_ is None:
95 return cond_true if pred_ else cond_false