Searched defs:input (Results 26 - 50 of 99) sorted by relevance

1234

/frameworks/base/libs/hwui/utils/
H A DBlur.cpp70 const uint8_t* input = source + y * width; local
78 const uint8_t *i = input + (x - radius);
96 currentPixel = (float) input[validW];
118 const uint8_t* input = source + x; local
121 const uint8_t *i = input + ((y - radius) * width);
139 const uint8_t *i = input + validH * width;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterFunction.java112 public void setInputFrame(String input, Frame frame) { argument
113 mFilter.setInputFrame(input, frame);
116 public void setInputValue(String input, Object value) { argument
117 mFilter.setInputValue(input, value);
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java34 public PatternScanner(String input) { argument
35 mInput = input;
38 public PatternScanner(String input, Pattern ignorePattern) { argument
39 mInput = input;
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java42 * @param input the input stream containing an ETC1 texture in PKM format.
46 int fallbackFormat, int fallbackType, InputStream input)
48 loadTexture(target, level, border, fallbackFormat, fallbackType, createTexture(input));
147 * Create a new ETC1Texture from an input stream containing a PKM formatted compressed texture.
148 * @param input an input stream containing a PKM formatted compressed texture.
149 * @return an ETC1Texture read from the input stream.
152 public static ETC1Texture createTexture(InputStream input) throws IOException { argument
157 if (input
45 loadTexture(int target, int level, int border, int fallbackFormat, int fallbackType, InputStream input) argument
192 compressTexture(Buffer input, int width, int height, int pixelSize, int stride) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGroupReader.cpp51 Module::input_iterator input = --pRoot; local
54 // take the end of the whole input tree for conventience.
58 while (input != input_end) {
61 if ((*input)->type() == Input::Script ||
62 (*input)->type() == Input::Archive ||
63 (*input)->type() == Input::External) {
64 ++input;
68 if (Input::Object == (*input)->type()) {
69 m_Module.getObjectList().push_back(*input);
73 if (Input::DynObj == (*input)
[all...]
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp41 "Linker::setOutput() is not called before add input files",
119 mcld::Input* input = mBuilder->ReadInput(pNameSpec); local
120 if (NULL == input)
127 mcld::Input* input = mBuilder->ReadInput(pObjectPath, pObjectPath); local
128 if (NULL == input)
135 mcld::Input* input = mBuilder->ReadInput("NAN", pMemory, pSize); local
136 if (NULL == input)
142 mcld::Input* input = mBuilder->CreateInput("NAN", "NAN", mcld::Input::Object); local
143 mcld::LDSection* sect = mBuilder->CreateELFHeader(*input, ".text",
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp285 // needs the file name of the input files, and the inputs' life is
359 Input* input = builder.CreateInput("gotplt.o", gotplt_o, Input::Object); local
363 builder.CreateELFHeader(*input,
370 LDSection* text = builder.CreateELFHeader(*input,
385 LDSection* rel_text = builder.CreateELFHeader(*input,
393 LDSection* data = builder.CreateELFHeader(*input,
400 LDSection* bss = builder.CreateELFHeader(*input,
408 LDSection* attr = builder.CreateELFHeader(*input,
429 builder.AddSymbol(*input,
433 builder.AddSymbol(*input,
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java40 public void setInput(String input) { argument
41 mUsersInput = input;
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.cpp141 // Get the input buffers
148 jobject input = env->GetObjectArrayElement(inputs, i); local
149 if (input) {
150 NativeFrame* native_frame = ConvertFromJava<NativeFrame>(env, input);
152 ALOGE("NativeProgram: Could not grab NativeFrame input %d!", i);
/frameworks/base/services/java/com/android/server/input/
H A DInputWindowHandle.java17 package com.android.server.input;
23 * Functions as a handle for a window that can receive input.
24 * Enables the native input dispatcher to refer indirectly to the window manager's window state.
28 // Pointer to the native input window handle.
33 // The input application handle.
39 // The input channel associated with the window.
88 // Window input features.
91 // Display this input is on.
H A DPersistentDataStore.java17 package com.android.server.input;
48 * Manages persistent state recorded by the input manager service as an XML file.
53 * &lt;input-mananger-state>
54 * &lt;input-devices>
55 * &lt;input-device descriptor="xxxxx" keyboard-layout="yyyyy" />
56 * &gt;input-devices>
57 * &gt;/input-manager-state>
75 mAtomicFile = new AtomicFile(new File("/data/system/input-manager-state.xml"));
194 Slog.w(InputManagerService.TAG, "Failed to load input manager persistent store data.", ex);
197 Slog.w(InputManagerService.TAG, "Failed to load input manage
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DCpuVideoTrackDecoder.java130 * Copy the input data to the output data applying the specified rotation.
132 * @param input The input image data
136 private void copyRotate(ByteBuffer input, ByteBuffer output, int rotation) { argument
164 PixelUtils.copyPixels(input, output, mWidth, mHeight, offset, pixStride, rowStride);
230 ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) {
233 ColorSpace.convertArgb8888ToRgba8888(input, output, width, height);
236 ColorSpace.convertYuv420pToRgba8888(input, output, width, height);
229 convertImage( ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) argument
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLinker.cpp69 cl::desc("[input object files]"),
210 // Now, all input arguments are prepared well, send it into ObjectLinker
266 cl::list<mcld::sys::fs::Path>::iterator input, inBegin, inEnd; local
269 for (input = inBegin; input != inEnd; ++input) {
270 unsigned int pos = ArgInputObjectFiles.getPosition(input - inBegin);
271 actions.push_back(new InputFileAction(pos, *input));
382 // build up input tree
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp76 /// normalize - to convert the command line language to the input tree.
98 // 4. - normalize the input tree
107 InputTree::const_dfs_iterator input, inEnd = pModule.getInputTree().dfs_end(); local
108 for (input=pModule.getInputTree().dfs_begin(); input!=inEnd; ++input) {
109 mcld::outs() << counter++ << " * " << (*input)->name();
110 switch((*input)->type()) {
127 unreachable(diag::err_cannot_trace_file) << (*input)->type()
128 << (*input)
[all...]
/frameworks/rs/
H A DrsProgram.cpp56 uint32_t input = 0; local
61 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
62 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
H A Drsg_generator.c637 FILE* input = fopen(rsgFile, "r"); local
639 char choice = fgetc(input);
640 fclose(input);
/frameworks/av/libvideoeditor/vss/src/
H A DVideoEditorResampler.cpp146 void LVAudioresample_LowQuality(M4OSA_Int16* out, M4OSA_Int16* input, argument
154 memcpy(context->mInput,input,(context->nbSamples * context->nbChannels * sizeof(int16_t)));
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_api.cpp276 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncSetInput(AVCHandle *avcHandle, AVCFrameIO *input) argument
299 if (input->pitch > 0xFFFF)
308 if (AVCENC_SUCCESS != RCDetermineFrameNum(encvid, rateCtrl, input->coding_timestamp, &frameNum))
317 encvid->currInput = input;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp43 -ncoefblck[] as input, to keep position of last non-zero coeff*/
74 VideoEncFrameIO *inputFrame = video->input;
79 UChar *rec, *input, *pred; local
130 input = inputFrame->yChan + offset;
131 if (lx != width) input -= (ind_y << 9); /* non-padded offset */
147 input += 8;
152 input += dctMode;
162 input = inputFrame->uChan + offsetc;
163 if (lx != width) input -= (ind_y << 7);
168 sad = getBlockSum(input, widt
310 UChar *rec, *input, *pred; local
[all...]
H A Drate_control.cpp25 void targetBitCalculation(void *input);
41 PV_STATUS RC_UpdateBXRCParams(void *input); Parameters update for target bitrate or framerate change
50 PV_STATUS RC_Initialize(void *input) argument
52 VideoEncData *video = (VideoEncData *) input;
416 PV_STATUS RC_UpdateBXRCParams(void *input) argument
418 VideoEncData *video = (VideoEncData *) input;
529 void targetBitCalculation(void *input) argument
531 VideoEncData *video = (VideoEncData *) input;
699 void calculateQuantizer_Multipass(void *input) argument
701 VideoEncData *video = (VideoEncData *) input;
[all...]
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java17 package com.android.commands.input;
19 import android.hardware.input.InputManager;
149 * @param text is a string of characters you want to input to the device.
222 * @param inputSource the InputDevice.SOURCE_* sending the input event
240 * @param inputSource the InputDevice.SOURCE_* sending the input event
272 System.err.println("Usage: input [<source>] <command> [<arg>...]");
/frameworks/base/core/java/android/util/
H A DBase64.java76 * Encode/decode another block of input data. this.output is
85 * @return true if the input so far is good; false if some
86 * error has been detected in the input stream..
88 public abstract boolean process(byte[] input, int offset, int len, boolean finish); argument
92 * could produce for the given number of input bytes. This may
103 * Decode the Base64-encoded data in input and return the data in
109 * @param str the input String to decode, which is converted to
114 * @throws IllegalArgumentException if the input contains
122 * Decode the Base64-encoded data in input and return the data in
128 * @param input th
135 decode(byte[] input, int flags) argument
155 decode(byte[] input, int offset, int len, int flags) argument
263 process(byte[] input, int offset, int len, boolean finish) argument
454 encodeToString(byte[] input, int flags) argument
475 encodeToString(byte[] input, int offset, int len, int flags) argument
493 encode(byte[] input, int flags) argument
509 encode(byte[] input, int offset, int len, int flags) argument
603 process(byte[] input, int offset, int len, boolean finish) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dcolorspace.cpp57 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
58 uint8* const pInput = static_cast<uint8*>(env->GetDirectBufferAddress(input));
99 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
100 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
114 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
115 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
157 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
158 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
56 nativeYuv420pToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
98 nativeArgb8888ToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
113 nativeRgba8888ToHsva8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
156 nativeRgba8888ToYcbcra8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentLinker.cpp100 Module::obj_iterator input, inEnd = m_Module.obj_end();
101 for (input = m_Module.obj_begin(); input != inEnd; ++input) {
102 m_Backend.getRelocator()->initializeApply(**input);
103 LDContext::sect_iterator rs, rsEnd = (*input)->context()->relocSectEnd();
104 for (rs = (*input)->context()->relocSectBegin(); rs != rsEnd; ++rs) {
108 // 2. it has no reloc data. (All symbols in the input relocs are in the
118 m_Backend.getRelocator()->finalizeApply(**input);
150 Module::obj_iterator input, inEn local
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp121 Module::input_iterator input, inEnd = m_pModule->input_end(); local
122 for (input = m_pModule->input_begin(); input!=inEnd; ++input) {
124 if (isGroup(input)) {
125 getGroupReader()->readGroup(input, m_pBuilder->getInputBuilder(), m_Config);
131 if ((*input)->type() == Input::Script ||
132 (*input)->type() == Input::Archive ||
133 (*input)->type() == Input::External)
136 if (Input::Object == (*input)
227 mcld::InputTree::bfs_iterator input, inEnd = m_pModule->getInputTree().bfs_end(); local
375 Module::obj_iterator input, inEnd = m_pModule->obj_end(); local
[all...]

Completed in 1507 milliseconds

1234