Searched refs:input (Results 1 - 25 of 229) sorted by relevance

12345678910

/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/com/android/internal/widget/multiwaveview/
H A DEase.java28 public float getInterpolation(float input) {
29 return input;
36 public float getInterpolation(float input) {
37 return DOMAIN*(input/=DURATION)*input*input + START;
41 public float getInterpolation(float input) {
42 return DOMAIN*((input=input/DURATION-1)*input*inpu
[all...]
/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/base/core/java/android/hardware/input/
H A DKeyboardLayout.aidl17 package android.hardware.input;
H A DIInputDevicesChangedListener.aidl17 package android.hardware.input;
21 /* Called when input devices changed, such as a device being added,
25 * device id and generation of all input devices. The client can determine what
/frameworks/compile/libbcc/runtime/lib/
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 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 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);
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);
/frameworks/base/cmds/input/
H A DAndroid.mk7 LOCAL_MODULE := input
11 ALL_PREBUILT += $(TARGET_OUT)/bin/input
12 $(TARGET_OUT)/bin/input : $(LOCAL_PATH)/input | $(ACP)
/frameworks/base/core/java/android/view/animation/
H A DLinearInterpolator.java34 public float getInterpolation(float input) { argument
35 return input;
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 DAccelerateInterpolator.java60 public float getInterpolation(float input) { argument
62 return input * input;
64 return (float)Math.pow(input, mDoubleFactor);
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));
/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/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/av/media/libeffects/lvm/lib/Common/lib/
H A DScalarArithmetic.h37 LVM_INT32 Abs_32(LVM_INT32 input);
/frameworks/compile/slang/lit-tests/
H A Drs-filecheck-wrapper.sh12 $FILECHECK -input-file $OUTDIR/$FILECHECK_INPUTFILE $SOURCEFILE
/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/base/core/java/android/util/
H A DBase64.java76 * Encode/decode another block of input data. this.output is
85 * @return true if the input so far is good; false if some
86 * error has been detected in the input stream..
88 public abstract boolean process(byte[] input, int offset, int len, boolean finish); argument
92 * could produce for the given number of input bytes. This may
103 * Decode the Base64-encoded data in input and return the data in
109 * @param str the input String to decode, which is converted to
114 * @throws IllegalArgumentException if the input contains
122 * Decode the Base64-encoded data in input and return the data in
128 * @param input th
135 decode(byte[] input, int flags) argument
155 decode(byte[] input, int offset, int len, int flags) argument
263 process(byte[] input, int offset, int len, boolean finish) argument
454 encodeToString(byte[] input, int flags) argument
475 encodeToString(byte[] input, int offset, int len, int flags) argument
493 encode(byte[] input, int flags) argument
509 encode(byte[] input, int offset, int len, int flags) argument
603 process(byte[] input, int offset, int len, boolean finish) argument
[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 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]);

Completed in 346 milliseconds

12345678910