Searched refs:input (Results 1 - 25 of 431) 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
H A DITabletModeChangedListener.aidl17 package android.hardware.input;
/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/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/native/libs/gui/
H A DLayerState.cpp49 status_t layer_state_t::read(const Parcel& input) argument
51 surface = input.readStrongBinder();
52 what = input.readUint32();
53 x = input.readFloat();
54 y = input.readFloat();
55 z = input.readUint32();
56 w = input.readUint32();
57 h = input.readUint32();
58 layerStack = input.readUint32();
59 alpha = input
82 read(const Parcel& input) argument
111 read(const Parcel& input) argument
[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/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DScanDetailUtilTest.java45 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid,
48 input.informationElements = new InformationElement[] {
52 ScanDetail output = ScanDetailUtil.toScanDetail(input);
54 validateScanDetail(input, output);
61 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid,
64 input.informationElements = new InformationElement[] {
67 input.anqpLines = Arrays.asList("LINE 1", "line 2", "Line 3");
69 ScanDetail output = ScanDetailUtil.toScanDetail(input);
71 validateScanDetail(input, output);
77 ScanResult input
95 validateScanDetail(ScanResult input, ScanDetail output) argument
[all...]
/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/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/compile/slang/lit-tests/
H A Drs-filecheck-wrapper.sh13 $FILECHECK -input-file $OUTDIR/bc32/$FILECHECK_INPUTFILE $SOURCEFILE
14 $FILECHECK -input-file $OUTDIR/bc64/$FILECHECK_INPUTFILE $SOURCEFILE
/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/base/tools/aapt2/
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/base/packages/DocumentsUI/src/com/android/documentsui/
H A DPairedTask.java33 * @template Input input type
49 abstract Output run(Input... input); argument
63 final protected Output doInBackground(Input... input) { argument
67 return run(input);

Completed in 491 milliseconds

1234567891011>>