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

123456

/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...]
H A Dbrightness.c52 char* output,
63 LOGE("Brightness: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
67 // Get the input and output pointers
69 int* output_ptr = (int*)output;
72 LOGE("Brightness: No input or output pointer found!");
49 brightness_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dcontrast.c47 char* output,
58 LOGE("Contrast: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
62 // Get the input and output pointers
64 char* output_ptr = output;
66 LOGE("Contrast: No input or output pointer found!");
44 contrast_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
/frameworks/base/tools/aapt2/
H A DBindingXmlPullParser_test.cpp84 std::stringstream output; local
85 ASSERT_TRUE(parser.writeToFile(output));
87 std::string result = output.str();
H A DJavaClassGenerator_test.cpp76 std::string output = out.str(); local
79 output.find("public static final int hey_man = 0x01020000;"));
82 output.find("public static final int[] hey_dude = {"));
85 output.find("public static final int hey_dude_cool_attr = 0;"));
107 std::string output = out.str(); local
108 EXPECT_NE(std::string::npos, output.find("int foo ="));
109 EXPECT_EQ(std::string::npos, output.find("int test ="));
113 output = out.str();
114 EXPECT_NE(std::string::npos, output.find("int test ="));
115 EXPECT_EQ(std::string::npos, output
141 std::string output = out.str(); local
[all...]
/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...]
H A DColorSpace.java33 * YUV to RGB conversion is done using the ITU-R BT.601 transformation. The output buffer must
37 * @param output buffer to hold RGBA8888 data.
42 ByteBuffer input, ByteBuffer output, int width, int height) {
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
52 * buffer must be large enough to hold the data. The output buffer may be the same as the
56 * @param output buffer to hold RGBA8888 data.
61 ByteBuffer input, ByteBuffer output, int width, int height) {
63 expectOutputSize(output, widt
41 convertYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
60 convertArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
79 convertRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
98 convertRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
113 expectOutputSize(ByteBuffer output, int expectedSize) argument
121 nativeYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
124 nativeArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
127 nativeRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
130 nativeRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
[all...]
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DCompilationResult.java28 public final String output; field in class:CompilationResult
31 public CompilationResult(int resultCode, String output, String error) { argument
33 this.output = output;
38 return resultCode == 0 && output.indexOf(text) > 0;
/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.
176 // Each output surface must be either preview surface or recording surface.
179 throw new IllegalArgumentException("This output surface is neither preview nor "
184 throw new IllegalArgumentException("This output surface can not be both preview"
189 // For 2 output surface case, they shouldn't be same type.
198 throw new IllegalArgumentException("The 2 output surfaces must have different"
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DSharedStorageAgent.java37 public void onFullBackup(FullBackupDataOutput output) throws IOException { argument
58 externalFilesDirFilter /* systemExcludes */, output);
/frameworks/rs/tests/cppbasic-getpointer/
H A Dcompute.cpp45 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride); local
49 printf("Output pointer: %p\n", output);
58 output[i * inputStride + j] = 0;
78 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPolicyMix.cpp29 void AudioPolicyMix::setOutput(sp<SwAudioOutputDescriptor> &output) argument
31 mOutput = output;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3DummyStream.cpp56 bool output,
53 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_program.cpp105 char* output,
111 output,
103 CallProcess(const std::vector<const char*>& inputs, const std::vector<int>& input_sizes, char* output, int output_size) argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaPlayerStreamingStressTest.java74 //Test result output file
77 private void writeTestOutput(String filename, Writer output) throws Exception{ argument
78 output.write("URL: " + filename);
79 output.write(" Complete: " + CodecTest.onCompleteSuccess);
80 output.write(" Error: " + CodecTest.mPlaybackError);
81 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
82 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
83 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
84 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
85 output
89 writeTestSummary(Writer output) argument
[all...]
H A DMediaPlayerStressTest.java70 //Test result output file
73 private void writeTestOutput(String filename, Writer output) throws Exception{ argument
74 output.write("File Name: " + filename);
75 output.write(" Complete: " + CodecTest.onCompleteSuccess);
76 output.write(" Error: " + CodecTest.mPlaybackError);
77 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
78 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
79 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
80 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
81 output
87 writeTestSummary(Writer output) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java201 * Helper function that writes an ETC1Texture to an output stream formatted as a PKM file.
203 * @param output the stream to write the formatted texture data to.
206 public static void writeTexture(ETC1Texture texture, OutputStream output) throws IOException { argument
216 output.write(ioBuffer, 0, ETC1.ETC_PKM_HEADER_SIZE);
221 output.write(ioBuffer, 0, chunkSize);
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScopedException.java98 public static ScopedException createFromOutput(String output) { argument
102 int msgStart = output.indexOf(MSG_KEY);
104 message = output;
106 int fileStart = output.indexOf(FILE_KEY, msgStart + MSG_KEY.length());
108 message = output;
110 message = output.substring(msgStart + MSG_KEY.length(), fileStart);
111 int locStart = output.indexOf(LOCATION_KEY, fileStart + FILE_KEY.length());
113 file = output.substring(fileStart + FILE_KEY.length());
115 file = output.substring(fileStart + FILE_KEY.length(), locStart);
118 nextLoc = output
139 extractErrors(String output) argument
[all...]

Completed in 786 milliseconds

123456