Home
last modified time | relevance | path

Searched refs:input_block (Results 1 – 25 of 45) sorted by relevance

12

/external/libvpx/test/
Ddct_partial_test.cc78 Buffer<int16_t> input_block = in RunTest() local
80 ASSERT_TRUE(input_block.Init()); in RunTest()
87 input_block.Set(maxvalue); in RunTest()
89 input_block.Set(minvalue); in RunTest()
91 input_block.Set(&rnd, minvalue, maxvalue); in RunTest()
94 ASM_REGISTER_STATE_CHECK(fwd_txfm_(input_block.TopLeftPixel(), in RunTest()
96 input_block.stride())); in RunTest()
98 EXPECT_EQ(partial_fdct_ref(input_block, size_), in RunTest()
Ddct32x32_test.cc182 DECLARE_ALIGNED(16, int16_t, input_block[kNumCoeffs]); in TEST_P()
188 input_block[j] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_); in TEST_P()
192 vpx_fdct32x32_c(input_block, output_ref_block, stride); in TEST_P()
193 ASM_REGISTER_STATE_CHECK(fwd_txfm_(input_block, output_block, stride)); in TEST_P()
Ddct_test.cc274 Buffer<int16_t> input_block = in RunCoeffCheck() local
276 ASSERT_TRUE(input_block.Init()); in RunCoeffCheck()
285 input_block.Set(&rnd, -max_pixel_value_, max_pixel_value_); in RunCoeffCheck()
287 fwd_txfm_ref(input_block, &output_ref_block, size_, tx_type_); in RunCoeffCheck()
288 ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, &output_block)); in RunCoeffCheck()
Ddct16x16_test.cc383 DECLARE_ALIGNED(16, int16_t, input_block[kNumCoeffs]); in RunCoeffCheck()
390 input_block[j] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_); in RunCoeffCheck()
393 fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_); in RunCoeffCheck()
394 ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_)); in RunCoeffCheck()
/external/ImageMagick/MagickCore/
Dcipher.c600 input_block[AESBlocksize], in PasskeyDecipherImage() local
641 (void) memset(input_block,0,sizeof(input_block)); in PasskeyDecipherImage()
643 (void) memcpy(input_block,digest,MagickMin(AESBlocksize, in PasskeyDecipherImage()
644 GetSignatureDigestsize(signature_info))*sizeof(*input_block)); in PasskeyDecipherImage()
676 (void) memcpy(output_block,input_block,AESBlocksize* in PasskeyDecipherImage()
678 IncrementCipherNonce(AESBlocksize,input_block); in PasskeyDecipherImage()
684 (void) memcpy(output_block,input_block,AESBlocksize* in PasskeyDecipherImage()
711 (void) ResetMagickMemory(input_block,0,sizeof(input_block)); in PasskeyDecipherImage()
813 input_block[AESBlocksize], in PasskeyEncipherImage() local
861 (void) memset(input_block,0,sizeof(input_block)); in PasskeyEncipherImage()
[all …]
/external/libaom/test/
Dtransform_test_base.h133 int16_t *input_block = reinterpret_cast<int16_t *>( in RunCoeffCheck() local
135 ASSERT_NE(input_block, nullptr); in RunCoeffCheck()
149 input_block[in_idx] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_); in RunCoeffCheck()
159 fwd_txfm_ref(input_block, output_ref_block, stride, &txfm_param_); in RunCoeffCheck()
160 API_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, stride)); in RunCoeffCheck()
172 aom_free(input_block); in RunCoeffCheck()
185 int16_t *input_block = reinterpret_cast<int16_t *>( in RunInvCoeffCheck() local
187 ASSERT_NE(input_block, nullptr); in RunInvCoeffCheck()
205 input_block[in_idx] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_); in RunInvCoeffCheck()
211 fwd_txfm_ref(input_block, trans_block, pitch_, &txfm_param_); in RunInvCoeffCheck()
[all …]
Dfwht4x4_test.cc105 int16_t *input_block = reinterpret_cast<int16_t *>( in RunSpeedTest() local
107 ASSERT_NE(input_block, nullptr); in RunSpeedTest()
121 input_block[in_idx] = in RunSpeedTest()
136 fwd_txfm_c_(input_block, output_ref_block, stride)); in RunSpeedTest()
145 fwd_txfm_(input_block, output_block, stride)); in RunSpeedTest()
168 aom_free(input_block); in RunSpeedTest()
/external/cronet/net/spdy/fuzzing/
Dhpack_fuzz_util.cc147 absl::string_view input_block) { in RunHeaderBlockThroughFuzzerStages() argument
150 input_block.data(), input_block.size())) { in RunHeaderBlockThroughFuzzerStages()
Dhpack_fuzz_util.h76 absl::string_view input_block);
/external/webrtc/modules/audio_processing/aec3/
Drender_delay_buffer_unittest.cc69 Block input_block(kNumBands, kNumChannels, 1.0f); in TEST() local
71 delay_buffer->Insert(input_block)); in TEST()
/external/vulkan-validation-layers/layers/
Dgpu_validation.cpp1340 GpuDeviceMemoryBlock input_block = {}; in GpuAllocateValidationResources() local
1382 …= vmaCreateBuffer(gpu_validation_state->vmaAllocator, &bufferInfo, &allocInfo, &input_block.buffer, in GpuAllocateValidationResources()
1383 &input_block.allocation, nullptr); in GpuAllocateValidationResources()
1394 …result = vmaMapMemory(gpu_validation_state->vmaAllocator, input_block.allocation, (void **)&pData); in GpuAllocateValidationResources()
1448 input_block.update_at_submit[written_index] = descriptor; in GpuAllocateValidationResources()
1462 vmaUnmapMemory(gpu_validation_state->vmaAllocator, input_block.allocation); in GpuAllocateValidationResources()
1466 input_desc_buffer_info.buffer = input_block.buffer; in GpuAllocateValidationResources()
1499 .emplace_back(output_block, input_block, desc_sets[0], desc_pool, bind_point); in GpuAllocateValidationResources()
1502 … vmaDestroyBuffer(gpu_validation_state->vmaAllocator, input_block.buffer, input_block.allocation); in GpuAllocateValidationResources()
/external/webrtc/modules/audio_processing/
Daudio_processing_unittest.cc3287 std::vector<int16_t> input_block(num_input_samples); in TEST_P() local
3288 for (int i = 0; i < static_cast<int>(input_block.size()); ++i) { in TEST_P()
3289 input_block[i] = i; in TEST_P()
3302 error = ap->ProcessStream(input_block.data(), test_params_.input_config, in TEST_P()
3306 input_block.data(), test_params_.input_config, in TEST_P()
3359 ChannelBuffer<float> input_block(input_samples_per_channel, in TEST_P() local
3365 input_block.channels()[ch][i] = ch + i * input_num_channels; in TEST_P()
3382 ap->ProcessStream(input_block.channels(), test_params_.input_config, in TEST_P()
3386 input_block.channels(), test_params_.input_config, in TEST_P()
3418 input_block.channels()[0][i]); in TEST_P()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBroadcasting.h1032 ArgTensorBlock input_block = m_impl.block(input_desc, scratch);
1039 if (input_block.data() != NULL) {
1041 input_buffer = input_block.data();
1063 input_block.expr());
/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_grad_op.cc821 const auto input_block = in ComputeBackpropFilter() local
827 out_block = Eigen::internal::pmadd<Packet>(out_bprop_block, input_block, in ComputeBackpropFilter()
851 const auto input_block = in ComputeBackpropFilter() local
857 out_block = Eigen::internal::pmadd<Packet>(out_bprop_block, input_block, in ComputeBackpropFilter()
/external/deqp/data/gles31/shaders/gl45/
Dlinkage_geometry.test353 case input_block
Dlinkage_tessellation.test876 case input_block
/external/deqp/data/gles31/shaders/es32/
Dlinkage_geometry.test472 case input_block
Dlinkage_tessellation.test1075 case input_block
/external/deqp/data/gles31/shaders/es31/
Dlinkage_geometry.test465 case input_block
Dlinkage_tessellation.test1259 case input_block
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Ddepthwiseconv_uint8_transitional.h2559 const int8* input_block,
2572 &input_block[k_height * workspace_height_stride + sub_block * 2 * 8];
2578 &input_block[k_height * workspace_height_stride +
2735 const int8* input_block,
2742 &input_block[k_height * workspace_height_stride + offset],
2748 &input_block[k_height * workspace_height_stride + offset], 4);
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/
Dgles32-master.txt1855 dEQP-GLES31.functional.shaders.linkage.geometry.varying.rules.input_block
1936 dEQP-GLES31.functional.shaders.linkage.tessellation.varying.rules.input_block
/external/deqp/android/cts/main/src/
Dgles31-master-2020-03-01.txt4427 dEQP-GLES31.functional.shaders.linkage.es31.geometry.varying.rules.input_block
4515 dEQP-GLES31.functional.shaders.linkage.es31.tessellation.varying.rules.input_block
4698 dEQP-GLES31.functional.shaders.linkage.es32.geometry.varying.rules.input_block
4782 dEQP-GLES31.functional.shaders.linkage.es32.tessellation.varying.rules.input_block
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/
Dgles31-master.txt4412 dEQP-GLES31.functional.shaders.linkage.es31.geometry.varying.rules.input_block
4500 dEQP-GLES31.functional.shaders.linkage.es31.tessellation.varying.rules.input_block
4683 dEQP-GLES31.functional.shaders.linkage.es32.geometry.varying.rules.input_block
4767 dEQP-GLES31.functional.shaders.linkage.es32.tessellation.varying.rules.input_block
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/
Dgles31-master.txt4340 dEQP-GLES31.functional.shaders.linkage.es31.geometry.varying.rules.input_block
4428 dEQP-GLES31.functional.shaders.linkage.es31.tessellation.varying.rules.input_block
4611 dEQP-GLES31.functional.shaders.linkage.es32.geometry.varying.rules.input_block
4695 dEQP-GLES31.functional.shaders.linkage.es32.tessellation.varying.rules.input_block

12