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

12345

/frameworks/support/renderscript/v8/rs_support/
H A Drsg_generator.c609 FILE* input = fopen(rsgFile, "r"); local
611 char choice = fgetc(input);
612 fclose(input);
/frameworks/rs/
H A DrsProgram.cpp56 uint32_t input = 0; local
61 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
62 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
H A Drsg_generator.c609 FILE* input = fopen(rsgFile, "r"); local
611 char choice = fgetc(input);
612 fclose(input);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java486 * such kind of input but must never output it unless the target is very specific
487 * to the device which is able to parse the malformed input.
658 * Guesses the format of input image. Currently just the first few bytes are used.
661 * @param input Image as byte array.
664 public static String guessImageType(final byte[] input) { argument
665 if (input == null) {
668 if (input.length >= 3 && input[0] == 'G' && input[1] == 'I' && input[
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java39 public void setInput(String input) { argument
40 this.usersInput = input;
H A DCommandParams.java159 Input input = null; field in class:GetInputParams
161 GetInputParams(CommandDetails cmdDet, Input input) { argument
163 this.input = input;
167 if (icon != null && input != null) {
168 input.icon = icon;
/frameworks/native/libs/gui/
H A DBufferQueue.cpp481 const QueueBufferInput& input, QueueBufferOutput* output) {
491 input.deflate(&timestamp, &crop, &scalingMode, &transform, &fence);
480 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
H A DISurfaceTexture.cpp108 const QueueBufferInput& input, QueueBufferOutput* output) {
112 data.write(input);
233 QueueBufferInput input(data);
237 status_t result = queueBuffer(buf, input, output);
107 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
H A DLayerState.cpp39 status_t layer_state_t::read(const Parcel& input) argument
43 err = input.read(transparentRegion);
49 input.read(this, size);
58 status_t ComposerState::read(const Parcel& input) { argument
59 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder());
60 return state.read(input);
75 status_t DisplayState::read(const Parcel& input) { argument
76 token = input.readStrongBinder();
77 surface = interface_cast<ISurfaceTexture>(input.readStrongBinder());
78 what = input
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.cpp1122 ::google::protobuf::io::CodedInputStream* input) {
1125 while ((tag = input->ReadTag()) != 0) {
1134 input, &value)));
1141 if (input->ExpectTag(16)) goto parse_isArray;
1152 input, &isarray_)));
1157 if (input->ExpectTag(24)) goto parse_intValue;
1168 1, 24, input, this->mutable_intvalue())));
1174 input, this->mutable_intvalue())));
1178 if (input->ExpectTag(24)) goto parse_intValue;
1179 if (input
1121 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
1492 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
1741 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
[all...]
/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/libbcc/runtime/lib/
H A Dashldi3.c25 dwords input; local
27 input.all = a;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dashlti3.c27 twords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dashrdi3.c25 dwords input; local
27 input.all = a;
30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c27 twords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dlshrdi3.c25 udwords input; local
27 input.all = a;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dlshrti3.c27 utwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
/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: */
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: */
/frameworks/compile/libbcc/runtime/test/Unit/ppc/
H A Dfixtfdi_test.c457 DD input; local
461 input.hi = testCases[i].xhi;
462 input.lo = testCases[i].xlo;
465 computed_result = __fixtfdi(input.ld);
468 printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
H A Dfloatditf_test.h2 uint64_t input; member in struct:testCase
[all...]
H A Dfloatunditf_test.h2 uint64_t input; member in struct:testCase
[all...]
/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]);

Completed in 277 milliseconds

12345