Searched defs:input (Results 1 - 25 of 211) sorted by last modified time

123456789

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/wear/src/android/support/wear/widget/
H A DBezierSCurveInterpolator.java67 public float getInterpolation(float input) { argument
68 if (input >= 1.0f) {
72 if (input <= 0f) {
76 int position = Math.min((int) (input * (VALUES.length - 1)), VALUES.length - 2);
79 float difference = input - quantized;
/frameworks/support/core-ui/java/android/support/v4/view/animation/
H A DLookupTableInterpolator.java23 * given input.
36 public float getInterpolation(float input) { argument
37 if (input >= 1.0f) {
40 if (input <= 0f) {
46 int position = Math.min((int) (input * (mValues.length - 1)), mValues.length - 2);
50 float diff = input - quantized;
/frameworks/support/emoji/appcompat/src/android/support/text/emoji/widget/
H A DEmojiAppCompatEditText.java63 public void setKeyListener(android.text.method.KeyListener input) { argument
64 super.setKeyListener(getEmojiEditTextHelper().getKeyListener(input));
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_reduce.java89 private int addint(int[] input) { argument
91 for (int idx = 0; idx < input.length; ++idx)
92 rslt += input[idx];
97 final int[] input = createInputArrayInt(100000, 0, 1 << 13);
99 final int javaRslt = addint(input);
100 final int rsRslt = s.reduce_addint(input).get();
122 private Int2 findMinAndMax(float[] input) { argument
128 for (int idx = 0; idx < input.length; ++idx) {
129 if (input[idx] < minVal) {
130 minVal = input[id
[all...]
H A DUT_reduce_backward.java89 private int addint(int[] input) { argument
91 for (int idx = 0; idx < input.length; ++idx)
92 rslt += input[idx];
97 final int[] input = createInputArrayInt(100000, 0, 1 << 13);
99 final int javaRslt = addint(input);
100 final int rsRslt = s.reduce_addint(input).get();
122 private Int2 findMinAndMax(float[] input) { argument
128 for (int idx = 0; idx < input.length; ++idx) {
129 if (input[idx] < minVal) {
130 minVal = input[id
[all...]
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBNNMTest.java79 private byte[] unsignedToSignedByte(int[] input) { argument
80 byte[] output = new byte[input.length];
81 for (int i = 0; i < input.length; ++i) {
82 output[i] = (byte)(input[i]);
H A DGoogLeNet.java125 private int roundUp(int input, int roundN) { argument
126 int result = input;
127 if (input % roundN > 0) {
128 result += roundN - input % roundN;
133 // Generate random data for input Allocations.
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/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DViewfinderProcessor.java86 public ProcessingTask(Allocation input) { argument
87 mInputAllocation = input;
111 // Get to newest input
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
H A DUT_reduce.java62 for (Allocation input : myInputs)
63 inputBytes += input.getBytesSize();
186 private long[] intArrayToLong(final int[] input) { argument
187 final long[] output = new long[input.length];
189 for (int i = 0; i < input.length; ++i)
190 output[i] = input[i];
280 private int addint(int[] input) { argument
282 for (int idx = 0; idx < input.length; ++idx)
283 result += input[idx];
288 final int[] input
422 sillySumIntoDecArray(final int[] input) argument
430 sillySumIntoIncArray(final int[] input) argument
461 findMinAbs(float[] input) argument
472 run(Allocation input) argument
527 findMinAndMax(float[] input) argument
633 run(Allocation input) argument
680 fz(final int[] input) argument
[all...]
H A DUT_reduce_backward.java105 private int addint(int[] input) { argument
107 for (int idx = 0; idx < input.length; ++idx)
108 rslt += input[idx];
113 final int[] input = createInputArrayInt(100000, 0, 1 << 13);
115 final int javaRslt = addint(input);
116 final int rsRslt = s.reduce_addint(input).get();
138 private Int2 findMinAndMax(float[] input) { argument
144 for (int idx = 0; idx < input.length; ++idx) {
145 if (input[idx] < minVal) {
146 minVal = input[id
[all...]
/frameworks/rs/tests/lldb/cpp/BranchingFunCalls/
H A DBranchingFunCalls.cpp37 int * input = new int[size*size]; local
39 input[i] = i - (size*size / 2);
41 a->copy2DRangeFrom(0, 0, size, size, input);
42 delete [] input;
/frameworks/rs/tests/lldb/jni/BranchingFunCalls/jnibranchingfuncalls/
H A Djnibranchingfuncalls.cpp46 int * input = new int[size*size]; local
48 input[i] = i - (size*size / 2);
50 a->copy2DRangeFrom(0, 0, size, size, input);
51 delete [] input;
/frameworks/rs/
H A DrsProgram.cpp58 uint32_t input = 0; local
63 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
64 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
H A Drsg_generator.c475 FILE* input = fopen(rsgFile, "r"); local
477 char choice = fgetc(input);
478 fclose(input);
/frameworks/rs/rsov/compiler/
H A DWrapper.cpp181 Instruction *input = b.MakeLoad(elementType, Ptr); local
182 Blk->addInstruction(input);
184 inputs.push_back(IdRef(input));
/frameworks/rs/script_api/
H A DGenerateDocumentation.cpp67 // If prefix starts input, copy it to stream and remove it from input.
68 static void skipPrefix(ostringstream* stream, string* input, const string& prefix) { argument
70 if (input->compare(0, size, prefix) != 0) {
73 input->erase(0, size);
H A DSpecification.cpp76 static vector<string> convertToTypeVector(const string& input) { argument
79 stringstream stream(input);
806 cerr << "Error opening input file: " << mSpecFileName << "\n";
/frameworks/rs/tests/cpp_api/cppbasic-getpointer/
H A Dcompute.cpp41 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride); local
44 printf("Input pointer: %p\n", input);
54 input[i * inputStride + j] = rand();
75 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DViewfinderProcessor.java146 public ProcessingTask(Allocation input) { argument
147 mInputAllocation = input;
175 // Get to newest input
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java43 public void setInput(String input) { argument
44 mUsersInput = input;

Completed in 741 milliseconds

123456789