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

1234567891011>>

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DFixedRotationFilter.java31 * The FixedRotationFilter rotates the input image clockwise, it only accepts
60 Frame input = pullInput("image");
62 pushOutput("image", input);
65 FrameFormat inputFormat = input.getFormat();
103 mProgram.process(input, output);
H A DSaturateFilter.java114 // Get input frame
115 Frame input = pullInput("image");
116 FrameFormat inputFormat = input.getFormat();
129 mHerfProgram.process(input, output);
131 mBenProgram.process(input, output);
H A DBlackWhiteFilter.java137 // Get input frame
138 Frame input = pullInput("image");
139 FrameFormat inputFormat = input.getFormat();
150 mProgram.process(input, output);
H A DCropRectFilter.java89 // Get input frame
90 Frame input = pullInput("image");
91 FrameFormat inputFormat = input.getFormat();
110 mProgram.process(input, output);
/frameworks/base/tools/aapt2/
H A DConfigDescription_test.cpp27 static ::testing::AssertionResult TestParse(const StringPiece& input, argument
29 if (ConfigDescription::parse(input, config)) {
30 return ::testing::AssertionSuccess() << input << " was successfully parsed";
32 return ::testing::AssertionFailure() << input << " could not be parsed";
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h30 * InputBuilder build input tree and inputs.
44 // ----- input tree operations ----- //
50 // ----- root of input tree ----- //
59 // ----- input operations ----- //
109 Input* input = createInput(pName, pPath, pType); local
110 m_pCurrentTree->insert(m_Root, *m_pMove, *input);
124 Input* input = createInput(pName, pPath, pType); local
125 m_pCurrentTree->insert(m_Root, *m_pMove, *input);
/frameworks/native/services/inputflinger/
H A DInputApplication.h20 #include <input/Input.h>
29 * Describes the properties of an application that can receive input.
38 * Handle for an application that can receive input.
40 * Used by the native input dispatcher as a handle for the window manager objects
61 * This method should only be called from within the input dispatcher's
H A DInputManager.h21 * Native input manager.
28 #include <input/Input.h>
29 #include <input/InputTransport.h>
39 * The input manager is the core of the system event processing.
41 * The input manager uses two threads.
43 * 1. The InputReaderThread (called "InputReader") reads and preprocesses raw input events,
63 /* Starts the input manager threads. */
66 /* Stops the input manager threads and waits for them to exit. */
69 /* Gets the input reader. */
72 /* Gets the input dispatche
[all...]
/frameworks/native/services/inputflinger/host/
H A DInputFlinger.h26 #include <input/IInputFlinger.h>
/frameworks/rs/tests/cppbasic-getpointer/
H A Dcompute.cpp44 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride); local
47 printf("Input pointer: %p\n", input);
57 input[i * inputStride + j] = rand();
78 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableStreamConfiguration.java32 * <p>Data is stored as {@code (format, width, height, input?)} tuples (int32).</p>
57 boolean input = buffer.getInt() != 0;
59 return new StreamConfiguration(format, width, height, input);
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfiguration.java34 * <!-- TODO: link to input stream configuration -->
36 * <p>This is the authoritative list for all input/output formats (and sizes respectively
51 * @param input true if this is an input configuration, false for output configurations
61 final int format, final int width, final int height, final boolean input) {
65 mInput = input;
109 * Determines if this configuration is usable for input streams.
112 * input stream configurations must be used when configuring inputs.</p>
114 * @return {@code true} if input configuration, {@code false} otherwise
60 StreamConfiguration( final int format, final int width, final int height, final boolean input) argument
/frameworks/base/core/java/android/view/animation/
H A DCycleInterpolator.java59 public float getInterpolation(float input) { argument
60 return (float)(Math.sin(2 * mCycles * Math.PI * input));
/frameworks/base/core/java/com/android/internal/view/animation/
H A DFallbackLUTInterpolator.java73 public float getInterpolation(float input) { argument
74 return mSourceInterpolator.getInterpolation(input);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DRetargetFilter.java61 // Get input frame
62 Frame input = pullInput("frame");
65 Frame output = context.getFrameManager().duplicateFrameToTarget(input, mTarget);
/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));
96 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
97 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
111 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
112 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
154 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
155 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
56 nativeYuv420pToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
95 nativeArgb8888ToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
110 nativeRgba8888ToHsva8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
153 nativeRgba8888ToYcbcra8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DGNUArchiveReader.h37 bool isMyFormat(Input& input, bool& pContinue) const;
47 bool isThinArchive(Input& input) const;
50 /// return the corresponding archive member (it may be an input object or
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLLexer.java34 public XMLLexer(CharStream input) { argument
35 super(input);
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DSGEMMTest.java72 private float calcL2Norm(float[] input) { argument
74 for (int i = 0; i < input.length; ++i) {
75 l2Norm += input[i] * input[i];
97 private float[] byteToFloat(byte[] input, int offset) { argument
98 float[] output = new float[input.length];
99 for (int i = 0; i < input.length; ++i) {
100 output[i] = (float)(input[i] - offset);
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp281 // needs the file name of the input files, and the inputs' life is
355 Input* input = builder.CreateInput("gotplt.o", gotplt_o, Input::Object); local
361 *input, "", LDFileFormat::Null, llvm::ELF::SHT_NULL, 0x0);
366 builder.CreateELFHeader(*input,
386 builder.CreateELFHeader(*input, ".rel.text", llvm::ELF::SHT_REL, 0x0, 4);
393 builder.CreateELFHeader(*input,
402 builder.CreateELFHeader(*input,
412 *input, ".ARM.attributes", llvm::ELF::SHT_ARM_ATTRIBUTES, 0x0, 1);
431 builder.AddSymbol(*input,
438 builder.AddSymbol(*input,
[all...]
/frameworks/rs/scriptc/
H A Drs_for_each.rsh106 * Runs the kernel over zero or more input allocations. They are passed after the
108 * must be specified as the last argument. All input allocations,
112 * the work has completed for all cells of the input allocations. If the kernel
117 * "root" in the specified script, and only a single input allocation can be used.
121 * input can be used.
135 * input: Allocation to source data from.
145 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
151 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData);
156 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
162 rsForEach(rs_script script, rs_allocation input, rs_allocatio
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java71 // input string. CMD details TLV + Device IDs TLV + Result TLV + Other
72 // details of TextString TLV not including user input take 16 bytes.
443 Input input = new Input();
449 input.text = ValueParser.retrieveTextString(ctlv);
462 input.duration = ValueParser.retrieveDuration(ctlv);
465 input.minLen = 1;
466 input.maxLen = 1;
468 input.digitOnly = (cmdDet.commandQualifier & 0x01) == 0;
469 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
470 input
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceRenderFilter.java89 // Add input port
154 // Get input frame
155 Frame input = pullInput("frame");
158 float currentAspectRatio = (float)input.getFormat().getWidth() / input.getFormat().getHeight();
167 if (mLogVerbose) Log.v("SurfaceRenderFilter", "Got input format: " + input.getFormat());
168 int target = input.getFormat().getTarget();
170 gpuFrame = context.getFrameManager().duplicateFrameToTarget(input,
174 gpuFrame = input;
[all...]
/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/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java398 // Opens the notification dialog and waits for user input
411 // notification and takes user input
462 * @param input a 7-bit packed char array
465 static String decodeGSMPackedString(byte[] input) argument
468 int lengthBytes = input.length;
478 if ((input[lengthBytes - 1] >> 1) == PADDING_CHAR) {
484 decoded = GsmAlphabet.gsm7BitPackedToString(input, 0, lengthSeptets);
495 static String decodeUTF8String(byte[] input) argument
499 decoded = new String(input, "UTF-8");
508 static String decodeUCS2String(byte[] input) argument
[all...]

Completed in 2849 milliseconds

1234567891011>>