Home
last modified time | relevance | path

Searched refs:kMaxBlockSize (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/test/
Dhadamard_test.cc153 const int kMaxBlockSize = 32 * 32; in CompareReferenceRandom() local
154 DECLARE_ALIGNED(16, int16_t, a[kMaxBlockSize]); in CompareReferenceRandom()
155 DECLARE_ALIGNED(16, tran_low_t, b[kMaxBlockSize]); in CompareReferenceRandom()
159 tran_low_t b_ref[kMaxBlockSize]; in CompareReferenceRandom()
174 const int kMaxBlockSize = 32 * 32; in VaryStride() local
175 DECLARE_ALIGNED(16, int16_t, a[kMaxBlockSize * 8]); in VaryStride()
176 DECLARE_ALIGNED(16, tran_low_t, b[kMaxBlockSize]); in VaryStride()
180 tran_low_t b_ref[kMaxBlockSize]; in VaryStride()
196 const int kMaxBlockSize = 32 * 32; in SpeedTest() local
197 DECLARE_ALIGNED(16, int16_t, input[kMaxBlockSize]); in SpeedTest()
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dneteq_external_decoder_unittest.cc169 static const size_t kMaxBlockSize = 480; // 10 ms @ 48 kHz. member in webrtc::NetEqExternalVsInternalDecoderTest
194 neteq_internal_->GetAudio(kMaxBlockSize, in GetAndVerifyOutput()
204 samples_per_channel = GetOutputAudio(kMaxBlockSize, output_, &output_type); in GetAndVerifyOutput()
229 int16_t output_internal_[kMaxBlockSize];
230 int16_t output_[kMaxBlockSize];
240 static const size_t kMaxBlockSize = 480; // 10 ms @ 48 kHz. member in webrtc::LargeTimestampJumpTest
295 num_samples = GetOutputAudio(kMaxBlockSize, output_, &output_type); in GetAndVerifyOutput()
325 int16_t output_[kMaxBlockSize];
Dneteq_unittest.cc282 static const size_t kMaxBlockSize = kBlockSize48kHz; member in webrtc::NetEqDecodingTest
326 int16_t out_data_[kMaxBlockSize];
336 const size_t NetEqDecodingTest::kMaxBlockSize; member in webrtc::NetEqDecodingTest
429 ASSERT_EQ(0, neteq_->GetAudio(kMaxBlockSize, out_data_, out_len, in Process()
613 ASSERT_EQ(0, neteq_->GetAudio(kMaxBlockSize, out_data_, &out_len, in TEST_F()
658 ASSERT_EQ(0, neteq_->GetAudio(kMaxBlockSize, out_data_, &out_len, in TEST_F()
689 ASSERT_EQ(0, neteq_->GetAudio(kMaxBlockSize, out_data_, &out_len, in TEST_F()
730 ASSERT_EQ(0, neteq_->GetAudio(kMaxBlockSize, out_data_, &out_len, in LongCngWithClockDrift()
758 ASSERT_EQ(0, neteq_->GetAudio(kMaxBlockSize, out_data_, &out_len, in LongCngWithClockDrift()
774 kMaxBlockSize, out_data_, &out_len, &num_channels, &type)); in LongCngWithClockDrift()
[all …]
Dneteq_stereo_unittest.cc45 static const size_t kMaxBlockSize = 480; // 10 ms @ 48 kHz. member in webrtc::NetEqStereoTest
72 output_multi_channel_ = new int16_t[kMaxBlockSize * num_channels_]; in NetEqStereoTest()
219 neteq_mono_->GetAudio(kMaxBlockSize, output_, in RunTest()
226 neteq_->GetAudio(kMaxBlockSize * num_channels_, in RunTest()
256 int16_t output_[kMaxBlockSize];
/external/tensorflow/tensorflow/core/kernels/
Dcholesky_grad.cc73 const int64 kMaxBlockSize = 32; in ComputeMatrix() local
76 block_end -= kMaxBlockSize) { in ComputeMatrix()
87 const int64 block_begin = std::max(int64{0}, block_end - kMaxBlockSize); in ComputeMatrix()
/external/lzma/CPP/7zip/UI/Common/
DBench.cpp285 UInt32 kMaxBlockSize = (1 << 20); in Read() local
286 if (size > kMaxBlockSize) in Read()
287 size = kMaxBlockSize; in Read()
/external/v8/src/heap/
Dspaces.h1937 static const size_t kMaxBlockSize = Page::kAllocatableMemory; variable
Dspaces.cc3021 DCHECK_GE(kMaxBlockSize, size_in_bytes); in AllocateChunk()