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

1234567891011>>

/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/native/libs/gui/
H A DLayerState.cpp45 status_t layer_state_t::read(const Parcel& input) argument
47 surface = input.readStrongBinder();
48 what = input.readInt32();
49 x = input.readFloat();
50 y = input.readFloat();
51 z = input.readInt32();
52 w = input.readInt32();
53 h = input.readInt32();
54 layerStack = input.readInt32();
55 alpha = input
70 read(const Parcel& input) argument
87 read(const Parcel& input) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorSpace.java31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
36 * @param input data encoded in YUV420-Planar.
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
45 nativeYuv420pToRgba8888(input, output, width, height);
51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
53 * input buffer.
55 * @param input data encoded in ARGB8888.
61 ByteBuffer input, ByteBuffer output, int width, int height) {
62 expectInputSize(input, widt
41 convertYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
60 convertArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
79 convertRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
98 convertRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
105 expectInputSize(ByteBuffer input, int expectedSize) argument
121 nativeYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
124 nativeArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
127 nativeRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
130 nativeRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
[all...]
H A DPixelUtils.java36 * @param input The input buffer containing pixel data.
38 * @param width The width of the input image.
39 * @param height The height of the input image.
44 public static void copyPixels(ByteBuffer input, argument
51 if (input.remaining() != output.remaining()) {
53 } else if (input.remaining() % 4 != 0) {
57 } else if ((width * height * 4) != input.remaining()) {
64 nativeCopyPixels(input, output, width, height, offset, pixStride, rowStride);
67 private static native void nativeCopyPixels(ByteBuffer input, argument
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DFileAction.cpp26 Input* input = *pBuilder.getCurrentNode(); local
28 if (input->hasContext())
32 if (input->type() == Input::Script ||
33 input->type() == Input::Object ||
34 input->type() == Input::DynObj ||
35 input->type() == Input::Archive)
38 return pBuilder.setContext(*input);
52 Input* input = *pBuilder.getCurrentNode(); local
54 if (input->hasMemArea())
58 if (input
[all...]
/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/compile/mclinker/lib/LD/
H A DGroupReader.cpp51 Module::input_iterator input = --pRoot; local
54 // take the end of the whole input tree for conventience.
58 while (input != input_end) {
61 if ((*input)->type() == Input::Script ||
62 (*input)->type() == Input::Archive ||
63 (*input)->type() == Input::External) {
64 ++input;
68 if (Input::Object == (*input)->type()) {
69 m_Module.getObjectList().push_back(*input);
73 if (Input::DynObj == (*input)
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DScalarArithmetic.h37 LVM_INT32 Abs_32(LVM_INT32 input);
/frameworks/base/core/jni/
H A Dandroid_view_InputDevice.h22 #include <input/InputDevice.h>
H A Dandroid_view_KeyCharacterMap.h22 #include <input/KeyCharacterMap.h>
/frameworks/compile/slang/lit-tests/
H A Drs-filecheck-wrapper.sh12 $FILECHECK -input-file $OUTDIR/$FILECHECK_INPUTFILE $SOURCEFILE
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp121 Module::input_iterator input, inEnd = m_pModule->input_end(); local
122 for (input = m_pModule->input_begin(); input!=inEnd; ++input) {
124 if (isGroup(input)) {
125 getGroupReader()->readGroup(input, m_pBuilder->getInputBuilder(), m_Config);
131 if ((*input)->type() == Input::Script ||
132 (*input)->type() == Input::Archive ||
133 (*input)->type() == Input::External)
136 if (Input::Object == (*input)
227 mcld::InputTree::bfs_iterator input, inEnd = m_pModule->getInputTree().bfs_end(); local
375 Module::obj_iterator input, inEnd = m_pModule->obj_end(); 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/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dcolorspace.h31 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
35 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
39 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
43 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
/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;
/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/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 685 milliseconds

1234567891011>>