Searched defs:output (Results 1 - 25 of 178) sorted by relevance

12345678

/frameworks/base/libs/hwui/
H A DOpDumper.cpp28 void OpDumper::dump(const RecordedOp& op, std::ostream& output, int level) { argument
30 output << " ";
35 output << sOpNameLut[op.opId] << " " << localBounds;
39 output << std::fixed << std::setprecision(0)
44 output << " iwr";
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dinvert.c24 char* output,
35 // Get the input and output pointers
37 char* output_ptr = output;
21 invert_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data ATTRIBUTE_UNUSED) argument
H A Dto_rgba.c24 char* output,
35 // Get the input and output pointers
37 char* output_ptr = output;
55 char* output,
66 // Get the input and output pointers
68 char* output_ptr = output;
87 char* output,
98 // Get the input and output pointers
100 char* output_ptr = output;
119 char* output,
21 gray_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data ATTRIBUTE_UNUSED) argument
52 rgba_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data ATTRIBUTE_UNUSED) argument
84 gray_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data ATTRIBUTE_UNUSED) argument
116 rgb_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data ATTRIBUTE_UNUSED) argument
[all...]
/frameworks/rs/tests/lldb/cpp/BranchingFunCalls/
H A DBranchingFunCalls.cpp49 int32_t * output = new int32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
/frameworks/rs/tests/lldb/cpp/InfiniteLoop/
H A DInfiniteLoop.cpp51 uint32_t * output = new uint32_t[size*size]; local
52 b->copy2DRangeTo(0, 0, size, size, output);
53 delete [] output;
/frameworks/rs/tests/lldb/cpp/MultipleRSFiles/
H A DMultipleRSFiles.cpp43 uint32_t * output = new uint32_t[size*size]; local
44 b->copy2DRangeTo(0, 0, size, size, output);
45 delete [] output;
/frameworks/rs/tests/lldb/cpp/WaitAttach/
H A DWaitAttach.cpp40 uint32_t * output = new uint32_t[size*size]; local
41 b->copy2DRangeTo(0, 0, size, size, output);
42 delete [] output;
/frameworks/av/media/img_utils/src/
H A DTiffEntry.cpp127 String8 output; local
129 output.appendFormat("[id: %x, type: %d, count: %u, value: '", getTag(), getType(), count);
142 output.appendFormat("%u ", typed_data[i]);
152 output.append(typed_data, len);
158 output.appendFormat("%u ", typed_data[i]);
165 output.appendFormat("%u ", typed_data[i]);
173 output.appendFormat("%u/%u ", typed_data[i], typed_data[i + 1]);
180 output.appendFormat("%d ", typed_data[i]);
187 output.appendFormat("%d ", typed_data[i]);
194 output
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DOperationResult.java33 public final byte[] output; field in class:OperationResult
50 int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output,
56 this.output = output;
65 output = in.createByteArray();
80 out.writeByteArray(output);
49 OperationResult( int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output, KeymasterArguments outParams) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgram.java27 public abstract void process(Frame[] inputs, Frame output); argument
29 public void process(Frame input, Frame output) { argument
32 process(inputs, output);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dexposure.cpp36 int output = 0; local
44 output++;
47 return (static_cast<float>(output)) / numPixels;
58 int output = 0; local
66 output++;
69 return (static_cast<float>(output)) / numPixels;
H A Dpixelutils.cpp24 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset,
27 uint32* pOutput = static_cast<uint32*>(env->GetDirectBufferAddress(output));
23 nativeCopyPixels( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset, jint pixStride, jint rowStride) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DPixelUtils.java28 * <p>The transformation is specified by specifying the initial offset in the output buffer, the
37 * @param output The output buffer to hold the transformed pixel data.
40 * @param offset The start offset in the output (in pixels)
45 ByteBuffer output,
51 if (input.remaining() != output.remaining()) {
52 throw new IllegalArgumentException("Input and output buffers must have the same size!");
55 } else if (output.remaining() % 4 != 0) {
60 } else if ((width * height * 4) != output.remaining()) {
64 nativeCopyPixels(input, output, widt
44 copyPixels(ByteBuffer input, ByteBuffer output, int width, int height, int offset, int pixStride, int rowStride) argument
67 nativeCopyPixels(ByteBuffer input, ByteBuffer output, int width, int height, int offset, int pixStride, int rowStride) argument
[all...]
/frameworks/base/tools/aapt2/java/
H A DJavaClassGenerator_test.cpp73 std::string output = out.str(); local
76 output.find("public static final int hey_man=0x01020000;"));
79 output.find("public static final int[] hey_dude={"));
82 output.find("public static final int hey_dude_cool_attr=0;"));
103 std::string output = out.str(); local
104 EXPECT_NE(std::string::npos, output.find("package com.android.internal;"));
106 output.find("public static final int one=0x01020000;"));
107 EXPECT_EQ(std::string::npos, output.find("two"));
108 EXPECT_EQ(std::string::npos, output.find("com_foo$two"));
129 std::string output local
162 std::string output = out.str(); local
174 std::string output = out.str(); local
187 std::string output = out.str(); local
258 std::string output = out.str(); local
[all...]
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DCompilationResult.java30 public final String output; field in class:CompilationResult
33 public CompilationResult(int resultCode, String output, String error) { argument
35 this.output = output;
40 return resultCode == 0 && output.indexOf(text) > 0;
/frameworks/rs/rsov/compiler/spirit/
H A Dtransformer.cpp54 auto output = mStream->getWords(); local
56 output.insert(output.end(), functions.begin(), functions.end());
62 return output;
/frameworks/rs/tests/lldb/cpp/KernelVariables/
H A DKernelVariables.cpp81 uint32_t * output = new uint32_t[size*size]; local
82 b->copy2DRangeTo(0, 0, size, size, output);
83 delete [] output;
/frameworks/rs/tests/lldb/jni/BranchingFunCalls/jnibranchingfuncalls/
H A Djnibranchingfuncalls.cpp58 int32_t * output = new int32_t[size*size]; local
59 b->copy2DRangeTo(0, 0, size, size, output);
60 delete [] output;
/frameworks/rs/tests/lldb/jni/DebugWaitAttach/jnidebugwaitattach/
H A Djnidebugwaitattach.cpp49 uint32_t * output = new uint32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
/frameworks/rs/tests/lldb/jni/InfiniteLoop/jniinfiniteloop/
H A Djniinfiniteloop.cpp58 uint32_t * output = new uint32_t[size*size]; local
59 b->copy2DRangeTo(0, 0, size, size, output);
60 delete [] output;
/frameworks/rs/tests/lldb/jni/MultipleRSFiles/jnimultiplersfiles/
H A Djnimultiplersfiles.cpp52 uint32_t * output = new uint32_t[size*size]; local
53 b->copy2DRangeTo(0, 0, size, size, output);
54 delete [] output;
/frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
H A Djninodebugwaitattach.cpp49 uint32_t * output = new uint32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h288 * the output converted data and offset. In this case the
518 FwdLockConv_Output_t output; member in class:android::FwdLockEngine::ConvertSession
522 memset(&output, 0, sizeof(FwdLockConv_Output_t));
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSurfaceUtils.java111 public static boolean isFlexibleConsumer(Surface output) { argument
112 return LegacyCameraDevice.isFlexibleConsumer(output);
116 * A high speed output surface can only be preview or hardware encoder surface.
118 * @param surface The high speed output surface to be checked.
168 // Each output surface must be either preview surface or recording surface.
171 throw new IllegalArgumentException("This output surface is neither preview nor "
176 throw new IllegalArgumentException("This output surface can not be both preview"
181 // For 2 output surface case, they shouldn't be same type.
190 throw new IllegalArgumentException("The 2 output surfaces must have different"
/frameworks/base/libs/hwui/pipeline/skia/
H A DDumpOpsCanvas.h31 DumpOpsCanvas(std::ostream& output, int level, SkiaDisplayList& displayList) argument
32 : mOutput(output)
146 renderNodeDrawable->getRenderNode()->output(mOutput, mLevel + 1);

Completed in 740 milliseconds

12345678