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

123456

/frameworks/base/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/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/base/core/java/android/bluetooth/
H A DAtParser.java138 * Strip input of whitespace and force Uppercase - except sections inside
142 static private String clean(String input) { argument
143 StringBuilder out = new StringBuilder(input.length());
145 for (int i = 0; i < input.length(); i++) {
146 char c = input.charAt(i);
148 int j = input.indexOf('"', i + 1 ); // search for closing "
150 out.append(input.substring(i, input.length()));
154 out.append(input.substring(i, j + 1));
170 * Return input
172 findChar(char ch, String input, int fromIndex) argument
192 generateArgs(String input) argument
216 findEndExtendedName(String input, int index) argument
[all...]
/frameworks/base/media/libeffects/lvm/lib/Common/lib/
H A DScalarArithmetic.h37 LVM_INT32 Abs_32(LVM_INT32 input);
/frameworks/base/libs/gui/
H A DLayerState.cpp45 status_t layer_state_t::read(const Parcel& input) argument
48 size_t len = input.readInt32();
49 void const* buf = input.readInplace(len);
58 input.read(this, size);
67 status_t ComposerState::read(const Parcel& input) { argument
68 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder());
69 return state.read(input);
/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]);
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]);
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]);
/frameworks/media/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/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...]

Completed in 739 milliseconds

123456