Home
last modified time | relevance | path

Searched refs:pitch_ (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/test/
Dfdct8x8_test.cc160 RunFwdTxfm(test_input_block, test_output_block, pitch_)); in RunSignBiasCheck()
190 RunFwdTxfm(test_input_block, test_output_block, pitch_)); in RunSignBiasCheck()
244 RunFwdTxfm(test_input_block, test_temp_block, pitch_)); in RunRoundTripErrorCheck()
258 RunInvTxfm(test_temp_block, dst, pitch_)); in RunRoundTripErrorCheck()
262 RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); in RunRoundTripErrorCheck()
338 RunFwdTxfm(test_input_block, test_temp_block, pitch_)); in RunExtremalCheck()
340 fwd_txfm_ref(test_input_block, ref_temp_block, pitch_, tx_type_)); in RunExtremalCheck()
343 RunInvTxfm(test_temp_block, dst, pitch_)); in RunExtremalCheck()
347 RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); in RunExtremalCheck()
416 ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_)); in RunInvAccuracyCheck()
[all …]
Dfdct4x4_test.cc132 test_temp_block, pitch_)); in RunAccuracyCheck()
134 ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_)); in RunAccuracyCheck()
138 CONVERT_TO_BYTEPTR(dst16), pitch_)); in RunAccuracyCheck()
178 fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_); in RunCoeffCheck()
179 ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_)); in RunCoeffCheck()
207 fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_); in RunMemCheck()
209 output_block, pitch_)); in RunMemCheck()
248 fwd_txfm_ref(in, coeff, pitch_, tx_type_); in RunInvAccuracyCheck()
251 ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_)); in RunInvAccuracyCheck()
255 pitch_)); in RunInvAccuracyCheck()
[all …]
Ddct16x16_test.cc363 test_temp_block, pitch_)); in RunAccuracyCheck()
366 RunInvTxfm(test_temp_block, dst, pitch_)); in RunAccuracyCheck()
370 RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); in RunAccuracyCheck()
407 fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_); in RunCoeffCheck()
408 ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_)); in RunCoeffCheck()
436 fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_); in RunMemCheck()
438 output_block, pitch_)); in RunMemCheck()
474 fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_); in RunQuantCheck()
489 inv_txfm_ref(output_ref_block, ref, pitch_, tx_type_); in RunQuantCheck()
490 ASM_REGISTER_STATE_CHECK(RunInvTxfm(output_ref_block, dst, pitch_)); in RunQuantCheck()
[all …]
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
DNCV.hpp851 NCVMatrixAlloc(INCVMemAllocator &allocator_, Ncv32u width_, Ncv32u height_, Ncv32u pitch_=0) in NCVMatrixAlloc() argument
863 if (pitch_ != 0) in NCVMatrixAlloc()
865 ncvAssertPrintReturn(pitch_ >= pitchBytes && in NCVMatrixAlloc()
866 (pitch_ & (allocator.alignment() - 1)) == 0, in NCVMatrixAlloc()
868 pitchBytes = pitch_; in NCVMatrixAlloc()
926 …ent &memSegment, Ncv32u alignment, Ncv32u width_, Ncv32u height_, Ncv32u pitch_=0, NcvBool bSkipPi… in NCVMatrixReuse() argument
934 if (pitch_ != 0) in NCVMatrixReuse()
938 ncvAssertPrintReturn(pitch_ >= pitchBytes && in NCVMatrixReuse()
939 (pitch_ & (alignment - 1)) == 0, in NCVMatrixReuse()
944 … ncvAssertPrintReturn(pitch_ >= widthBytes, "NCVMatrixReuse ctor:: incorrect pitch passed", ); in NCVMatrixReuse()
[all …]