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

123

/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dinvert.c22 char* output,
33 // Get the input and output pointers
35 char* output_ptr = output;
19 invert_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dto_rgba.c22 char* output,
33 // Get the input and output pointers
35 char* output_ptr = output;
53 char* output,
64 // Get the input and output pointers
66 char* output_ptr = output;
85 char* output,
96 // Get the input and output pointers
98 char* output_ptr = output;
117 char* output,
19 gray_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
50 rgba_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
82 gray_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
114 rgb_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
[all...]
H A Dbrightness.c51 char* output,
62 LOGE("Brightness: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
66 // Get the input and output pointers
68 int* output_ptr = (int*)output;
71 LOGE("Brightness: No input or output pointer found!");
48 brightness_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dcontrast.c46 char* output,
57 LOGE("Contrast: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
61 // Get the input and output pointers
63 char* output_ptr = output;
65 LOGE("Contrast: No input or output pointer found!");
43 contrast_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
/frameworks/native/libs/utils/tests/
H A DUnicode_test.cpp41 << "Zero length input should return zero length output.";
97 char16_t output[1 + 1 + 1 + 2 + 1]; // Room for NULL local
99 utf8_to_utf16(str, sizeof(str), output);
101 EXPECT_EQ(0x0030, output[0])
103 EXPECT_EQ(0x0100, output[1])
105 EXPECT_EQ(0x2323, output[2])
107 EXPECT_EQ(0xD800, output[3])
109 EXPECT_EQ(0xDC00, output[4])
111 EXPECT_EQ(NULL, output[5])
/frameworks/native/services/surfaceflinger/
H A DSurfaceTextureLayer.cpp37 status_t SurfaceTextureLayer::connect(int api, QueueBufferOutput* output) { argument
38 status_t err = BufferQueue::connect(api, output);
/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/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/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DSharedStorageAgent.java35 public void onFullBackup(FullBackupDataOutput output) throws IOException { argument
47 fullBackupFileTree(null, domain, v.getPath(), null, output);
/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 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
85 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/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp97 // FIXME: how can we get the soname if input/output is file descriptor?
177 // Prepare output file.
181 ALOGE("Failed to open the output file! (file descriptor `%d': %s)",
268 // Prepare the output.
271 llvm::raw_ostream *output = local
273 if (output == NULL) {
274 ALOGE("Failed to prepare the output for compile the input from %d into "
283 if (!compile(*script, *output)) {
284 delete output;
290 // Close the output
[all...]
/frameworks/compile/libbcc/tools/abcc/
H A DMain.cpp61 const char *&input, const char *&output,
77 // output is always in argv[2].
78 output = argv[2];
138 static int ProcessFromFd(const char *input, const char *output, argument
142 if (!GetIntArg(output, output_fd)) {
143 ALOGE("Bad output fd '%s'", output);
159 static int ProcessFromFile(const char *input, const char *output, argument
164 // Open the output file.
165 output_fd = ::open(output, O_RDW
60 ParseArguments(int argc, const char *const *argv, Mode &mode, const char *&input, const char *&output, const char *&triple, const char *&sysroot) argument
195 const char *input, *output, *triple = NULL, *sysroot = NULL; local
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDInfo.h38 * output() - the output file
69 Output& output() function in class:mcld::MCLDInfo
72 const Output& output() const function in class:mcld::MCLDInfo
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpost_filter.cpp34 uint8 *output)
54 oscl_memcpy(output, decodedFrame, size);
55 oscl_memcpy(output + size, decodedFrame + size, (size >> 2));
56 oscl_memcpy(output + size + (size >> 2), decodedFrame + size + (size >> 2), (size >> 2));
75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod);
83 CombinedHorzVertFilter(output, width, height,
88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height,
94 Deringing_Luma(output, width, height, QP_store,
103 output += size;
107 CombinedHorzVertRingFilter(output, (in
31 PostFilter( VideoDecData *video, int filter_type, uint8 *output) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java63 String linkdomain, String rootpath, String path, BackupDataOutput output);
74 * If the {@code mode} argument is negative, then the resulting output file will not
77 * @param data Socket supplying the data to be copied to the output file. If the
78 * output is a directory, this may be {@code null}.
84 * the output file or directory. group/all rwx modes are stripped even if set
88 * last modification time of the output file. if the {@code mode} parameter is
104 // Pull the data from the pipe, copying it to the output file, until we're done
62 backupToTar(String packageName, String domain, String linkdomain, String rootpath, String path, BackupDataOutput output) argument
H A DBackupAgent.java175 * output stream.
217 * file system trees to the output.
267 * @param output The destination to which the backed-up file data will be sent.
269 public final void fullBackupFile(File file, FullBackupDataOutput output) { argument
327 output.getData());
339 HashSet<String> excludes, FullBackupDataOutput output) {
379 output.getData());
452 // Not a supported output location? We need to consume the data
487 BackupDataOutput output = new BackupDataOutput(data.getFileDescriptor());
490 BackupAgent.this.onBackup(oldState, output, newStat
338 fullBackupFileTree(String packageName, String domain, String rootPath, HashSet<String> excludes, FullBackupDataOutput output) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java217 public String debug(String output) { argument
218 return output + "Absolute.LayoutParams={width="
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.cpp133 jobject output) {
162 // Get the output buffer
165 if (output) {
166 NativeFrame* output_frame = ConvertFromJava<NativeFrame>(env, output);
168 ALOGE("NativeProgram: Could not grab NativeFrame output!");
130 Java_android_filterfw_core_NativeProgram_callNativeProcess(JNIEnv* env, jobject thiz, jobjectArray inputs, jobject output) argument
/frameworks/base/services/java/com/android/server/
H A DSystemBackupAgent.java87 private void fullWallpaperBackup(FullBackupDataOutput output) { argument
93 WALLPAPER_INFO_DIR, WALLPAPER_INFO, output.getData());
95 WALLPAPER_IMAGE_DIR, WALLPAPER_IMAGE, output.getData());
/frameworks/compile/libbcc/lib/Support/
H A DDisassembler.cpp189 // Check the state of the specified output file.
194 // Open the output file decorated in llvm::raw_ostream.
195 llvm::raw_ostream *output = pOutput.dup(); local
196 if (output == NULL) {
202 Disassemble(*output, pTriple, pFuncName, pFunc, FuncSize);
204 // Close the output before return.
205 delete output;
/frameworks/compile/linkloader/
H A Dmain.cpp103 time_t stub_time(time_t *output) { argument
104 return time(output);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp53 Short *output, *dataBlock; local
86 output = video->outputMB->block[0];
89 // M4VENC_MEMSET(output,0,(sizeof(Short)<<6)*6); /* reset quantized coeff. to zero , 7/24/01*/
205 CBP |= (*BlockQuantDequantH263DC)(dataBlock, output, &QuantParam,
233 CBP |= (*BlockQuantDequantH263)(dataBlock, output, &QuantParam,
237 output += 64;
282 Short *output, *dataBlock; local
317 output = video->outputMB->block[0];
320 // M4VENC_MEMSET(output,0,(sizeof(Short)<<6)*6); /* reset quantized coeff. to zero , 7/24/01*/
425 CBP |= (*BlockQuantDequantMPEGDC)(dataBlock, output, Q
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java35 * of the output (if any).
40 * Encoder flag bit to omit all line terminators (i.e., the output
62 * should not close the output stream it is wrapping when it
72 public byte[] output; field in class:Base64.Coder
76 * Encode/decode another block of input data. this.output is
83 * include any final bytes in the output.
111 * @param flags controls certain features of the decoded output.
129 * @param flags controls certain features of the decoded output.
149 * @param flags controls certain features of the decoded output.
164 // Maybe we got lucky and allocated exactly enough output spac
241 Decoder(int flags, byte[] output) argument
581 Encoder(int flags, byte[] output) argument
[all...]

Completed in 622 milliseconds

123