Searched refs:input (Results 1 - 25 of 391) 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/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/compile/mclinker/lib/MC/
H A DFileAction.cpp23 Input* input = *pBuilder.getCurrentNode(); local
25 if (input->hasContext())
29 if (input->type() == Input::Script || input->type() == Input::Object ||
30 input->type() == Input::DynObj || input->type() == Input::Archive)
33 return pBuilder.setContext(*input);
46 Input* input = *pBuilder.getCurrentNode(); local
48 if (input->hasMemArea())
52 if (input
[all...]
/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.readUint32();
49 x = input.readFloat();
50 y = input.readFloat();
51 z = input.readUint32();
52 w = input.readUint32();
53 h = input.readUint32();
54 layerStack = input.readUint32();
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/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.cpp50 Module::input_iterator input = --pRoot; local
53 while (input != pEnd) {
56 if ((*input)->type() == Input::Script ||
57 (*input)->type() == Input::Archive ||
58 (*input)->type() == Input::External) {
59 ++input;
63 if (Input::Object == (*input)->type()) {
64 m_Module.getObjectList().push_back(*input);
68 if (Input::DynObj == (*input)->type()) {
69 m_Module.getLibraryList().push_back(*input);
[all...]
/frameworks/support/v4/java/android/support/v4/view/animation/
H A DLookupTableInterpolator.java23 * given input.
36 public float getInterpolation(float input) { argument
37 if (input >= 1.0f) {
40 if (input <= 0f) {
46 int position = Math.min((int) (input * (mValues.length - 1)), mValues.length - 2);
50 float diff = input - quantized;
/frameworks/compile/mclinker/lib/Script/
H A DScriptReader.cpp37 bool ScriptReader::isMyFormat(Input& input, bool& doContinue) const { argument
45 Input& input = pScriptFile.input(); local
46 size_t size = input.memArea()->size();
47 llvm::StringRef region = input.memArea()->request(input.fileOffset(), size);
H A DInputCmd.cpp65 InputToken* input = llvm::cast<InputToken>(*it); local
66 cur = input->asNeeded();
72 if (input->type() == InputToken::NameSpec)
74 mcld::outs() << input->name() << " ";
165 InputTree::iterator input = m_Builder.getCurrentNode(); local
167 input_begin = input;
170 assert(*input != NULL);
171 if (!m_Builder.setMemory(**input,
174 error(diag::err_cannot_open_input) << (*input)->name()
175 << (*input)
[all...]
/frameworks/base/tools/aapt2/
H A DManifestParser_test.cpp28 std::stringstream input; local
29 input << "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
36 std::shared_ptr<XmlPullParser> xmlParser = std::make_shared<SourceXmlPullParser>(input);
H A DLocale_test.cpp25 static ::testing::AssertionResult TestLanguage(const char* input, const char* lang) { argument
26 std::vector<std::string> parts = util::splitAndLowercase(std::string(input), '-');
30 return ::testing::AssertionFailure() << " failed to parse '" << input << "'.";
35 << " parts were consumed parsing '" << input << "' but expected 1.";
46 static ::testing::AssertionResult TestLanguageRegion(const char* input, const char* lang, argument
48 std::vector<std::string> parts = util::splitAndLowercase(std::string(input), '-');
52 return ::testing::AssertionFailure() << " failed to parse '" << input << "'.";
57 << " parts were consumed parsing '" << input << "' but expected 2.";
61 return ::testing::AssertionFailure() << "expected " << input << " but got "
/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>
/frameworks/base/libs/hwui/
H A DInterpolator.cpp31 float AccelerateDecelerateInterpolator::interpolate(float input) { argument
32 return (float)(cosf((input + 1) * M_PI) / 2.0f) + 0.5f;
35 float AccelerateInterpolator::interpolate(float input) { argument
37 return input * input;
39 return pow(input, mDoubleFactor);
72 float CycleInterpolator::interpolate(float input) { argument
73 return sinf(2 * mCycles * M_PI * input);
76 float DecelerateInterpolator::interpolate(float input) { argument
79 result = 1.0f - (1.0f - input) * (1.
99 interpolate(float input) argument
[all...]
H A DInterpolator.h31 virtual float interpolate(float input) = 0;
41 virtual float interpolate(float input) override;
47 virtual float interpolate(float input) override;
56 virtual float interpolate(float input) override;
64 virtual float interpolate(float input) override;
71 virtual float interpolate(float input) override;
77 virtual float interpolate(float input) override;
85 virtual float interpolate(float input) override;
92 virtual float interpolate(float input) override { return input; }
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DKeyStoreCryptoOperationStreamer.java23 * Helper for streaming a crypto operation's input and output via {@link KeyStore} service's
37 byte[] update(byte[] input, int inputOffset, int inputLength) throws KeyStoreException; argument
38 byte[] doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature, argument
/frameworks/compile/slang/lit-tests/
H A Drs-filecheck-wrapper.sh12 $FILECHECK -input-file $OUTDIR/$FILECHECK_INPUTFILE $SOURCEFILE
/frameworks/compile/mclinker/unittests/
H A DELFBinaryReaderTest.cpp48 Input input("test.bin");
52 ASSERT_TRUE(reader->isMyFormat(input, doContinue));
55 ASSERT_FALSE(reader->isMyFormat(input, doContinue));
/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...]

Completed in 622 milliseconds

1234567891011>>