Searched refs:input (Results 1 - 25 of 337) 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 DInputDeviceIdentifier.aidl17 package android.hardware.input;
H A DKeyboardLayout.aidl17 package android.hardware.input;
H A DTouchCalibration.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
74 read(const Parcel& input) argument
93 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.cpp24 Input* input = *pBuilder.getCurrentNode(); local
26 if (input->hasContext())
30 if (input->type() == Input::Script ||
31 input->type() == Input::Object ||
32 input->type() == Input::DynObj ||
33 input->type() == Input::Archive)
36 return pBuilder.setContext(*input);
50 Input* input = *pBuilder.getCurrentNode(); local
52 if (input->hasMemArea())
56 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/compile/mclinker/lib/LD/
H A DGroupReader.cpp52 Module::input_iterator input = --pRoot; local
55 while (input != pEnd) {
58 if ((*input)->type() == Input::Script ||
59 (*input)->type() == Input::Archive ||
60 (*input)->type() == Input::External) {
61 ++input;
65 if (Input::Object == (*input)->type()) {
66 m_Module.getObjectList().push_back(*input);
70 if (Input::DynObj == (*input)->type()) {
71 m_Module.getLibraryList().push_back(*input);
[all...]
/frameworks/base/libs/hwui/
H A DInterpolator.h30 virtual float interpolate(float input) = 0;
40 virtual float interpolate(float input);
46 virtual float interpolate(float input);
55 virtual float interpolate(float input);
63 virtual float interpolate(float input);
70 virtual float interpolate(float input);
76 virtual float interpolate(float input);
84 virtual float interpolate(float input);
91 virtual float interpolate(float input) { return input; } argument
[all...]
H A DInterpolator.cpp33 float AccelerateDecelerateInterpolator::interpolate(float input) { argument
34 return (float)(cosf((input + 1) * M_PI) / 2.0f) + 0.5f;
37 float AccelerateInterpolator::interpolate(float input) { argument
39 return input * input;
41 return pow(input, mDoubleFactor);
74 float CycleInterpolator::interpolate(float input) { argument
75 return sinf(2 * mCycles * M_PI * input);
78 float DecelerateInterpolator::interpolate(float input) { argument
81 result = 1.0f - (1.0f - input) * (1.
103 interpolate(float input) argument
[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/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/media/mca/filterpacks/java/android/filterpacks/base/
H A DOutputStreamTarget.java48 Frame input = pullInput("data");
51 if (input.getFormat().getObjectClass() == String.class) {
52 String stringVal = (String)input.getObjectValue();
55 data = input.getData();
/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/base/tools/aapt/tests/
H A DAaptConfig_test.cpp26 static ::testing::AssertionResult TestParse(const String8& input, ConfigDescription* config=NULL) { argument
27 if (AaptConfig::parse(String8(input), config)) {
28 return ::testing::AssertionSuccess() << input << " was successfully parsed";
30 return ::testing::AssertionFailure() << input << " could not be parsed";
33 static ::testing::AssertionResult TestParse(const char* input, ConfigDescription* config=NULL) { argument
34 return TestParse(String8(input), config);
/frameworks/compile/mclinker/lib/Script/
H A DScriptReader.cpp32 bool ScriptReader::isMyFormat(Input& input, bool &doContinue) const argument
43 Input& input = pScriptFile.input(); local
44 size_t size = input.memArea()->size();
45 llvm::StringRef region = input.memArea()->request(input.fileOffset(), size);

Completed in 2017 milliseconds

1234567891011>>