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

12345

/frameworks/compile/libbcc/runtime/test/timing/
H A Dashldi3.c16 int64_t FUNCTION_NAME(int64_t input, INPUT_TYPE count);
19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = rand() & 0x3f;
36 FUNCTION_NAME(fixedInput, input[i]);
H A Dashrdi3.c16 int64_t FUNCTION_NAME(int64_t input, INPUT_TYPE count);
19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = rand() & 0x3f;
36 FUNCTION_NAME(fixedInput, 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 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]);
H A Dlshrdi3.c16 int64_t FUNCTION_NAME(int64_t input, INPUT_TYPE count);
19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = rand() & 0x3f;
36 FUNCTION_NAME(fixedInput, input[i]);
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]);
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java105 public void performRestore(BackupDataInput input, int appVersionCode, argument
110 BackupDataInputStream stream = new BackupDataInputStream(input);
111 while (input.readNextHeader()) {
113 String rawKey = input.getKey();
119 stream.dataSize = input.getDataSize();
134 input.skipEntityData(); // In case they didn't consume the data.
/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 DKeyboardLayout.java17 package android.hardware.input;
/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/core/jni/
H A Dandroid_text_AndroidCharacter.cpp95 static jint getEastAsianWidth(JNIEnv* env, jobject obj, jchar input) argument
97 int width = u_getIntPropertyValue(input, UCHAR_EAST_ASIAN_WIDTH);
/frameworks/compile/libbcc/tools/abcc/
H A DMain.cpp61 const char *&input, const char *&output,
84 if ((arg_idx + 2 /* --triple [triple] input */) >= argc) {
94 if ((arg_idx + 2 /* --android-sysroot [sysroot] input */) >= argc) {
114 // input is in argv[arg_idx]
115 // TODO: Support multiple input files.
116 input = argv[arg_idx];
138 static int ProcessFromFd(const char *input, const char *output, argument
147 if (!GetIntArg(input, input_fd)) {
148 ALOGE("Bad input fd '%s'", input);
60 ParseArguments(int argc, const char *const *argv, Mode &mode, const char *&input, const char *&output, const char *&triple, const char *&sysroot) argument
159 ProcessFromFile(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/lib/MC/
H A DMCLDDriver.cpp124 InputTree::iterator input, inEnd = m_LDInfo.inputs().end(); local
125 for (input = m_LDInfo.inputs().begin(); input!=inEnd; ++input) {
128 if ((*input)->type() == Input::Script ||
129 (*input)->type() == Input::Object ||
130 (*input)->type() == Input::DynObj ||
131 (*input)->type() == Input::Archive ||
132 (*input)->type() == Input::External)
136 if (m_LDBackend.getObjectReader()->isMyFormat(**input)) {
181 mcld::InputTree::const_bfs_iterator input, inEnd = m_LDInfo.inputs().bfs_end(); local
230 mcld::InputTree::bfs_iterator input, inEnd = m_LDInfo.inputs().bfs_end(); local
[all...]
/frameworks/compile/mclinker/unittests/
H A DReadStageTest.cpp73 sstream << "<input name=\"" << pInput.name() << "\">\n";
83 sstream << "</input>\n";
122 // set up input
138 InputTree::iterator input, inEnd = m_pLinker->config()->inputs().end(); local
139 for (input = m_pLinker->config()->inputs().begin(); input != inEnd; ++input) {
140 dumpInput(**input, file, 1);
/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/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/base/cmds/input/src/com/android/commands/input/
H A DInput.java17 package com.android.commands.input;
19 import android.hardware.input.InputManager;
79 // determine input source
132 * @param text is a string of characters you want to input to the device.
190 * @param inputSource the InputDevice.SOURCE_* sending the input event
208 * @param inputSource the InputDevice.SOURCE_* sending the input event
236 System.err.println("usage: input ...");
237 System.err.println(" input text <string>");
238 System.err.println(" input keyevent <key code number or name>");
239 System.err.println(" input [touchscree
[all...]
/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/lib/Core/
H A DLinker.cpp58 "Linker::setOutput() is not called before add input files",
197 mcld::Input* input = mLDInfo->inputFactory().produce(pNameSpec, *path,
199 mLDInfo->inputs().insert<mcld::InputTree::Positional>(*mRoot, *input);
203 return openFile(*path, kOpenNameSpec, *input);
208 mcld::Input* input = mLDInfo->inputFactory().produce(pObjectPath, local
212 mLDInfo->inputs().insert<mcld::InputTree::Positional>(*mRoot, *input);
216 return openFile(pObjectPath, kOpenObjectFile, *input);
222 mcld::Input* input = mLDInfo->inputFactory().produce("memory object", local
226 mLDInfo->inputs().insert<mcld::InputTree::Positional>(*mRoot, *input);
231 input
240 mcld::Input* input = mLDInfo->inputFactory().produce("code object", local
[all...]
/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...]

Completed in 276 milliseconds

12345