Searched refs:input (Results 26 - 50 of 229) sorted by relevance

12345678910

/frameworks/compile/libbcc/runtime/test/timing/
H A Dnegdi2.c16 INPUT_TYPE FUNCTION_NAME(INPUT_TYPE input);
19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = (((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63);
37 FUNCTION_NAME(input[i]);
H A Dfloatdidf.c19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
34 FUNCTION_NAME(input[i]);
H A Dfloatdisf.c19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
34 FUNCTION_NAME(input[i]);
H A Dfloatdixf.c19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
34 FUNCTION_NAME(input[i]);
H A Dfloatundidf.c16 uint64_t input[INPUT_SIZE]; local
21 // Initialize the input array with data of various sizes.
23 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
31 __floatundidf(input[i]);
H A Dfloatundisf.c19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
34 FUNCTION_NAME(input[i]);
H A Dfloatundixf.c19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
34 FUNCTION_NAME(input[i]);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgram.java29 public void process(Frame input, Frame output) { argument
31 inputs[0] = input;
/frameworks/av/libvideoeditor/vss/src/
H A DM4VD_Tools.c63 M4OSA_UInt32 input = bitsToWrite; local
64 input = (input << (32 - nb_bits - offset));
80 /* Parse input bits, and fill output buffer */
87 temp = ((input & (0x80000000 >> offset)) >> (31-offset));
90 input = (input << 1);
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java86 * @return verifier device identity based on the input from the provided
103 private static final String encodeBase32(long input) { argument
127 final int group = (int) (input & 0x1F);
128 input >>>= 5;
137 private static final long decodeBase32(byte[] input) throws IllegalArgumentException { argument
141 final int N = input.length;
143 final int group = input[i];
210 final byte[] input;
212 input = deviceIdentity.getBytes("US-ASCII");
214 throw new IllegalArgumentException("bad base-32 characters in input");
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DIInputManager.aidl17 package android.hardware.input;
19 import android.hardware.input.KeyboardLayout;
20 import android.hardware.input.IInputDevicesChangedListener;
27 // Gets input device information.
37 // Injects an input event into the system. To inject into windows owned by other
53 // Registers an input devices changed listener.
/frameworks/compile/mclinker/lib/CodeGen/
H A DSectLinker.cpp74 // ----- convert position dependent options into tree of input files ----- //
79 // Now, all input arguments are prepared well, send it into MCLDDriver
97 // 4. - normalize the input tree
103 InputTree::const_dfs_iterator input, inEnd = info.inputs().dfs_end(); local
104 for (input=info.inputs().dfs_begin(); input!=inEnd; ++input) {
105 mcld::outs() << counter++ << " * " << (*input)->name();
106 switch((*input)->type()) {
123 unreachable(diag::err_cannot_trace_file) << (*input)
201 InputTree::dfs_iterator input, inEnd = pLDInfo.inputs().dfs_end(); local
[all...]
/frameworks/base/core/java/android/view/animation/
H A DCycleInterpolator.java42 public float getInterpolation(float input) { argument
43 return (float)(Math.sin(2 * mCycles * Math.PI * input));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java39 public void setInput(String input) { argument
40 this.usersInput = input;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameStore.java44 // Get input frame
45 Frame input = pullInput("frame");
48 context.storeFrame(mKey, input);
H A DGLTextureTarget.java50 // Get input frame
51 Frame input = pullInput("frame");
53 FrameFormat format = ImageFormat.create(input.getFormat().getWidth(),
54 input.getFormat().getHeight(),
61 frame.setDataFromFrame(input);
H A DOutputStreamTarget.java49 Frame input = pullInput("data");
52 if (input.getFormat().getObjectClass() == String.class) {
53 String stringVal = (String)input.getObjectValue();
56 data = input.getData();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
H A DStringLogger.java44 Frame input = pullInput("string");
45 String inputString = input.getObjectValue().toString();
/frameworks/base/core/java/android/text/
H A DAndroidCharacter.java49 * @param input the character to measure
50 * @return the East Asian Width for input
52 public native static int getEastAsianWidth(char input); argument
64 * @param src character array of input to measure
/frameworks/base/services/java/com/android/server/input/
H A DInputApplicationHandle.java17 package com.android.server.input;
20 * Functions as a handle for an application that can receive input.
21 * Enables the native input dispatcher to refer indirectly to the window manager's
26 // Pointer to the native input application handle.
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DResizeFilter.java90 // Get input frame
91 Frame input = pullInput("image");
92 createProgram(env, input.getFormat());
95 MutableFrameFormat outputFormat = input.getFormat().mutableCopy();
97 FrameFormat inputFormat = input.getFormat();
105 GLFrame mipmapped = (GLFrame)env.getFrameManager().newFrame(input.getFormat());
108 mipmapped.setDataFromFrame(input);
113 mProgram.process(input, output);
/frameworks/rs/scriptc/
H A Drs_core.rsh126 * Make a script to script call to launch work. One of the input or output is
127 * required to be a valid object. The input and output must be of the same
132 * @param input The allocation to source data from
143 rsForEach(rs_script script, rs_allocation input,
150 rsForEach(rs_script script, rs_allocation input,
155 * Make a script to script call to launch work. One of the input or output is
156 * required to be a valid object. The input and output must be of the same
161 * @param input The allocation to source data from
173 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
179 rsForEach(rs_script script, rs_allocation input, rs_allocatio
[all...]
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_core.rsh126 * Make a script to script call to launch work. One of the input or output is
127 * required to be a valid object. The input and output must be of the same
132 * @param input The allocation to source data from
143 rsForEach(rs_script script, rs_allocation input,
150 rsForEach(rs_script script, rs_allocation input,
155 * Make a script to script call to launch work. One of the input or output is
156 * required to be a valid object. The input and output must be of the same
161 * @param input The allocation to source data from
173 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
179 rsForEach(rs_script script, rs_allocation input, rs_allocatio
[all...]
/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...]
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dfixunstfdi.c11 uint64_t __fixunstfdi(long double input) argument
13 const DD x = { .ld = input };
18 /* If (1.0 - tiny) <= input < 0x1.0p64: */

Completed in 1175 milliseconds

12345678910