Home
last modified time | relevance | path

Searched refs:input_count (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dto_rgba.c23 int input_count, in gray_to_rgb_process() argument
28 if (input_count != 1) in gray_to_rgb_process()
54 int input_count, in rgba_to_rgb_process() argument
59 if (input_count != 1) in rgba_to_rgb_process()
86 int input_count, in gray_to_rgba_process() argument
91 if (input_count != 1) in gray_to_rgba_process()
118 int input_count, in rgb_to_rgba_process() argument
123 if (input_count != 1) in rgb_to_rgba_process()
H A Dcontrast.c46 int input_count, in contrast_process() argument
51 if (input_count != 1) { in contrast_process()
52 LOGE("Contrast: Incorrect input count! Expected 1 but got %d!", input_count); in contrast_process()
H A Dbrightness.c51 int input_count, in brightness_process() argument
56 if (input_count != 1) { in brightness_process()
57 LOGE("Brightness: Incorrect input count! Expected 1 but got %d!", input_count); in brightness_process()
H A Dinvert.c23 int input_count, in invert_process() argument
28 if (input_count != 1) in invert_process()
/aosp12/art/compiler/optimizing/
H A Dconstructor_fence_redundancy_elimination.cc176 for (size_t input_count = 0; input_count < inst->InputCount(); ++input_count) { in HasInterestingPublishTargetAsInput() local
177 if (IsInterestingPublishTarget(inst->InputAt(input_count))) { in HasInterestingPublishTargetAsInput()
H A Dnodes.cc1694 for (size_t input_count = 0; input_count < haystack->InputCount(); ++input_count) { in Merge() local
1695 if (haystack->InputAt(input_count) == needle) { in Merge()
1703 for (size_t input_count = 0; input_count < other->InputCount(); ++input_count) { in Merge() local
1704 HInstruction* other_input = other->InputAt(input_count); in Merge()
H A Dnodes.h5007 size_t input_count = InputCount();
5008 DCHECK_LE(input_count - other_inputs, 1u) << other_inputs << " " << input_count;
5009 return other_inputs != input_count;
/aosp12/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.cpp143 const int input_count = env->GetArrayLength(inputs); in Java_android_filterfw_core_NativeProgram_callNativeProcess() local
144 std::vector<const char*> input_buffers(input_count, NULL); in Java_android_filterfw_core_NativeProgram_callNativeProcess()
145 std::vector<int> input_sizes(input_count, 0); in Java_android_filterfw_core_NativeProgram_callNativeProcess()
146 for (int i = 0 ; i < input_count; ++i) { in Java_android_filterfw_core_NativeProgram_callNativeProcess()
H A Djni_shader_program.cpp99 const int input_count = env->GetArrayLength(inputs); in Java_android_filterfw_core_ShaderProgram_shaderProcess() local
100 for (int i = 0; i < input_count; ++i) { in Java_android_filterfw_core_ShaderProgram_shaderProcess()
/aosp12/hardware/qcom/camera/msm8998/QCamera2/stack/common/
H A Dcam_types.h1873 uint32_t input_count; member
/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL/
H A DQCamera2HWI.cpp4702 if (dynamic_img_data.input_count >= stillmore_cap.min_burst_count && in configureStillMore()
4703 dynamic_img_data.input_count <= stillmore_cap.max_burst_count) { in configureStillMore()
4704 burst_cnt = dynamic_img_data.input_count; in configureStillMore()
H A DQCamera2HWICallbacks.cpp2068 dyn_img_data.input_count = stillmore_cap.burst_count; in updateMetadata()