Searched defs:input (Results 1 - 25 of 101) sorted by relevance

12345

/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DAbs_32.c33 LVM_INT32 Abs_32(LVM_INT32 input) argument
35 if(input < 0)
37 if (input == (LVM_INT32)(0x80000000U))
40 input=(LVM_INT32) 0x7fffffff;
44 /* Negative input, so invert */
45 input = (LVM_INT32)(-input);
48 return input;
/frameworks/base/core/java/android/animation/
H A DTimeInterpolator.java30 * @param input A value between 0 and 1.0 indicating our current point
37 float getInterpolation(float input); argument
/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/test/Unit/ppc/
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...]
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);
/frameworks/native/libs/gui/
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/base/core/java/android/util/
H A DEventLogTags.java46 public EventLogTags(BufferedReader input) throws IOException {} argument
/frameworks/base/core/java/android/view/animation/
H A DAccelerateDecelerateInterpolator.java35 public float getInterpolation(float input) { argument
36 return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f;
H A DCycleInterpolator.java42 public float getInterpolation(float input) { argument
43 return (float)(Math.sin(2 * mCycles * Math.PI * input));
H A DDecelerateInterpolator.java52 public float getInterpolation(float input) { argument
55 result = (float)(1.0f - (1.0f - input) * (1.0f - input));
57 result = (float)(1.0f - Math.pow((1.0f - input), 2 * mFactor));
H A DLinearInterpolator.java34 public float getInterpolation(float input) { argument
35 return input;
H A DAccelerateInterpolator.java60 public float getInterpolation(float input) { argument
62 return input * input;
64 return (float)Math.pow(input, mDoubleFactor);
/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/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/tests/CoreTests/android/core/
H A DSha1Test.java28 private String input; field in class:Sha1Test.TestData
32 input = i;
49 digest.update(mTestData[i].input.getBytes());
/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/timing/
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]);
/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;

Completed in 5969 milliseconds

12345