Searched refs:input (Results 1 - 25 of 788) 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;
51 LVM_FLOAT Abs_Float(LVM_FLOAT input) argument
53 if(input <
[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
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/cmds/input/
H A Dinput2 # Script to start "input" on the device, which has a very rudimentary
6 export CLASSPATH=$base/framework/input.jar
7 exec app_process $base/bin com.android.commands.input.Input "$@"
H A DAndroid.mk8 LOCAL_MODULE_STEM := input
12 LOCAL_MODULE := input
14 LOCAL_SRC_FILES := input
/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/services/backup/java/com/android/server/backup/params/
H A DAdbRestoreParams.java23 public AdbRestoreParams(ParcelFileDescriptor input) { argument
24 fd = input;
/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/base/config/
H A Dgenerate-preloaded-classes.sh17 echo "Usage $0 <input classes file> <blacklist file> [extra classes files]"
33 input=$1
39 LC_ALL=C sort "$input" "${extra_classes_files[@]}" | uniq | grep -f "$blacklist" -v -F -x
/frameworks/native/cmds/surfacereplayer/replayer/trace_creator/
H A Dtrace_creator.py20 increment.time_stamp = int(input("Time stamp of action: "))
60 return int(input("> "))
86 return int(input("> "))
92 = bool(input("Is transaction synchronous (True/False): "))
94 = bool(input("Is transaction animated (True/False): "))
108 change.id = int(input("ID of layer/display to undergo a change: "))
163 increment.surface_creation.id = int(input("Enter id: "))
166 increment.surface_creation.w = input("Enter w: ")
167 increment.surface_creation.h = input("Enter h: ")
170 increment.surface_deletion.id = int(input("Ente
[all...]
/frameworks/support/interpolator/src/main/java/androidx/interpolator/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/base/tools/aapt2/io/
H A DStringStream_test.cpp33 std::string input; local
34 input.resize(kCount, 0x7f);
35 input[0] = 0x00;
36 input[kCount - 1] = 0xff;
37 StringInputStream in(input);
53 std::string input = "hello this is a string"; local
54 StringInputStream in(input);
59 ASSERT_THAT(size, Eq(input.size()));
61 EXPECT_THAT(in.ByteCount(), Eq(input.size()));
64 EXPECT_THAT(in.ByteCount(), Eq(input
74 std::string input = "hello this is a string"; local
[all...]
/frameworks/support/compat/src/androidTest/java/androidx/core/app/
H A DRemoteInputTest.java50 RemoteInput input = newDataOnlyRemoteInput();
52 assertTrue(input.isDataOnly());
53 assertFalse(input.getAllowFreeFormInput());
54 assertTrue(input.getChoices() == null || input.getChoices().length == 0);
55 assertEquals(1, input.getAllowedDataTypes().size());
56 assertTrue(input.getAllowedDataTypes().contains(MIME_TYPE));
61 RemoteInput input = newTextRemoteInput();
63 assertFalse(input.isDataOnly());
64 assertTrue(input
[all...]
/frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/pom/
H A DPomDependency.kt52 * Returns a new dependency created by taking all the items from the [input] dependency and then
55 fun rewrite(input: PomDependency, versions: DependencyVersions): PomDependency {
56 var newVersion = input.version
62 groupId = groupId ?: input.groupId,
63 artifactId = artifactId ?: input.artifactId,
65 classifier = classifier ?: input.classifier,
66 type = type ?: input.type,
67 scope = scope ?: input.scope,
68 systemPath = systemPath ?: input.systemPath,
69 optional = optional ?: input
[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);
/frameworks/ml/nn/runtime/test/generated/models/
H A Dlogistic_float_2.model.cpp5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_LOGISTIC, {input}, {output});
11 {input},
H A Dlogistic_float_2_relaxed.model.cpp5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_LOGISTIC, {input}, {output});
11 {input},
H A Drelu1_float_2.model.cpp5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_RELU1, {input}, {output});
11 {input},
H A Drelu1_float_2_relaxed.model.cpp5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_RELU1, {input}, {output});
11 {input},

Completed in 430 milliseconds

1234567891011>>