Searched refs:input (Results 101 - 125 of 229) sorted by relevance

12345678910

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DSharpenFilter.java105 // Get input frame
106 Frame input = pullInput("image");
107 FrameFormat inputFormat = input.getFormat();
123 mProgram.process(input, output);
H A DTintFilter.java95 // Get input frame
96 Frame input = pullInput("image");
97 FrameFormat inputFormat = input.getFormat();
109 mProgram.process(input, output);
H A DToPackedGrayFilter.java119 Frame input = pullInput("image");
120 FrameFormat inputFormat = input.getFormat();
131 mProgram.process(input, temp);
H A DVignetteFilter.java130 // Get input frame
131 Frame input = pullInput("image");
132 FrameFormat inputFormat = input.getFormat();
150 mProgram.process(input, output);
H A DFisheyeFilter.java108 // Get input frame
109 Frame input = pullInput("image");
110 FrameFormat inputFormat = input.getFormat();
126 mProgram.process(input, output);
H A DGrainFilter.java158 // Get input frame
159 Frame input = pullInput("image");
160 FrameFormat inputFormat = input.getFormat();
188 Frame[] inputs = {input, noiseFrame};
H A DRedEyeFilter.java117 // Get input frame
118 Frame input = pullInput("image");
119 FrameFormat inputFormat = input.getFormat();
137 Frame[] inputs = {input, mRedEyeFrame};
H A DRotateFilter.java91 // Get input frame
92 Frame input = pullInput("image");
93 FrameFormat inputFormat = input.getFormat();
117 mProgram.process(input, output);
H A DStraightenFilter.java92 // Get input frame
93 Frame input = pullInput("image");
94 FrameFormat inputFormat = input.getFormat();
111 mProgram.process(input, output);
H A DAutoFixFilter.java241 // Get input frame
242 Frame input = pullInput("image");
243 FrameFormat inputFormat = input.getFormat();
255 createHistogramFrame(context, mWidth, mHeight, input.getInts());
262 Frame[] inputs = {input, mHistFrame, mDensityFrame};
/frameworks/base/core/java/android/content/pm/
H A DSignature.java68 final byte[] input = text.getBytes();
69 final int N = input.length;
79 final int hi = parseHexDigit(input[i++]);
80 final int lo = parseHexDigit(input[i++]);
/frameworks/base/core/tests/overlaytests/OverlayTest/src/com/android/overlaytest/
H A DOverlayBaseTest.java18 InputStream input = null;
20 input = mResources.openRawResource(resId);
22 while ((ch = input.read()) != -1) {
27 input.close();
/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.
87 // Window input features.
90 // Display this input is on.
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dfixtfdi.c12 uint64_t __fixtfdi(long double input) argument
14 const DD x = { .ld = input };
20 /* If (1.0 - tiny) <= input < 0x1.0p63: */
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java385 Input input = new Input();
391 input.text = ValueParser.retrieveTextString(ctlv);
404 input.duration = ValueParser.retrieveDuration(ctlv);
407 input.minLen = 1;
408 input.maxLen = 1;
410 input.digitOnly = (cmdDet.commandQualifier & 0x01) == 0;
411 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
412 input.yesNo = (cmdDet.commandQualifier & 0x04) != 0;
413 input.helpAvailable = (cmdDet.commandQualifier & 0x80) != 0;
414 input
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardWidgetCarousel.java191 public float getInterpolation(float input) {
192 return mInternal.getInterpolation(Math.min(mFactor * input, 1f));
200 public float getInterpolation(float input) {
201 input -= (1 - 1 / mFactor);
202 input = mFactor * Math.max(input, 0f);
203 return mInternal.getInterpolation(input);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java119 // Add input port - will accept anything that's 4-channel.
221 // Get input frame
222 Frame input = pullInput("frame");
226 (float)input.getFormat().getWidth() / input.getFormat().getHeight();
238 int target = input.getFormat().getTarget();
240 gpuFrame = context.getFrameManager().duplicateFrameToTarget(input,
244 gpuFrame = input;
253 glEnv.setSurfaceTimestamp(input.getTimestamp());
/frameworks/base/core/java/android/os/
H A DFileUtils.java146 InputStream input = new FileInputStream(file);
148 // input stream, bytes read not equal to buffer size is not necessarily the correct
150 BufferedInputStream bis = new BufferedInputStream(input);
193 input.close();
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c288 * Description: Clips the input between MAX and MIN value
324 * Description: Clips the input between MAX and MIN value
368 * [in] shift Divides the input "v" by "2^shift"
716 * Returns the result of rounded right shift operation of input by the scalefactor
718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
721 * [in] input The input to be operated on
730 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
732 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c288 * Description: Clips the input between MAX and MIN value
324 * Description: Clips the input between MAX and MIN value
368 * [in] shift Divides the input "v" by "2^shift"
716 * Returns the result of rounded right shift operation of input by the scalefactor
718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
721 * [in] input The input to be operated on
730 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
732 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c288 * Description: Clips the input between MAX and MIN value
324 * Description: Clips the input between MAX and MIN value
368 * [in] shift Divides the input "v" by "2^shift"
716 * Returns the result of rounded right shift operation of input by the scalefactor
718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
721 * [in] input The input to be operated on
730 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
732 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.h35 // The input to NativeWindowRenderer is provided by the RenderInput class,
58 void destroyRenderInput(RenderInput* input);
75 void render(RenderInput* input);
/frameworks/base/services/java/com/android/server/wm/
H A DFakeWindowImpl.java19 import com.android.server.input.InputApplicationHandle;
20 import com.android.server.input.InputWindowHandle;
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java17 package android.hardware.input;
/frameworks/base/location/tests/locationtests/src/android/location/
H A DLocationTest.java95 double input = -80.085;
96 result = Location.convert(input, Location.FORMAT_MINUTES);
105 double input = -80;
106 result = Location.convert(input, Location.FORMAT_MINUTES);

Completed in 307 milliseconds

12345678910