Home
last modified time | relevance | path

Searched refs:_1 (Results 1 – 25 of 38) sorted by relevance

12

/frameworks/native/libs/ui/
DColorSpace.cpp59 return std::bind(rcpResponse, _1, parameters); in toOETF()
61 return std::bind(rcpFullResponse, _1, parameters); in toOETF()
66 return std::bind(response, _1, parameters); in toEOTF()
68 return std::bind(fullResponse, _1, parameters); in toEOTF()
75 return std::bind(safePow, _1, 1.0f / gamma); in toOETF()
82 return std::bind(safePow, _1, gamma); in toEOTF()
255 std::bind(absRcpResponse, _1, 2.4f, 1 / 1.055f, 0.055f / 1.055f, 1 / 12.92f, 0.04045f), in extendedSRGB()
256 std::bind(absResponse, _1, 2.4f, 1 / 1.055f, 0.055f / 1.055f, 1 / 12.92f, 0.04045f), in extendedSRGB()
257 std::bind(clamp<float>, _1, -0.799f, 2.399f) in extendedSRGB()
267 std::bind(clamp<float>, _1, -0.5f, 7.499f) in linearExtendedSRGB()
[all …]
/frameworks/ml/nn/common/operations/
DActivation.cpp376 using std::placeholders::_1;
377 NN_REGISTER_OPERATION(RELU, "RELU", std::bind(activation::validate, OperationType::RELU, _1),
378 std::bind(activation::prepare, OperationType::RELU, _1),
380 NN_REGISTER_OPERATION(RELU1, "RELU1", std::bind(activation::validate, OperationType::RELU1, _1),
381 std::bind(activation::prepare, OperationType::RELU1, _1),
383 NN_REGISTER_OPERATION(RELU6, "RELU6", std::bind(activation::validate, OperationType::RELU6, _1),
384 std::bind(activation::prepare, OperationType::RELU6, _1),
387 std::bind(activation::validate, OperationType::LOGISTIC, _1),
388 std::bind(activation::prepare, OperationType::LOGISTIC, _1),
390 NN_REGISTER_OPERATION(TANH, "TANH", std::bind(activation::validate, OperationType::TANH, _1),
[all …]
DResizeImageOps.cpp223 using std::placeholders::_1;
226 std::bind(resize_image::validate, OperationType::RESIZE_BILINEAR, _1),
227 std::bind(resize_image::prepare, OperationType::RESIZE_BILINEAR, _1),
228 std::bind(resize_image::execute, OperationType::RESIZE_BILINEAR, _1),
232 std::bind(resize_image::validate, OperationType::RESIZE_NEAREST_NEIGHBOR, _1),
233 std::bind(resize_image::prepare, OperationType::RESIZE_NEAREST_NEIGHBOR, _1),
234 std::bind(resize_image::execute, OperationType::RESIZE_NEAREST_NEIGHBOR, _1),
DPooling.cpp383 using std::placeholders::_1;
385 std::bind(pooling::validate, OperationType::AVERAGE_POOL_2D, _1),
388 std::bind(pooling::validate, OperationType::L2_POOL_2D, _1), pooling::prepare,
391 std::bind(pooling::validate, OperationType::MAX_POOL_2D, _1),
DBroadcast.cpp518 using std::placeholders::_1;
519 NN_REGISTER_OPERATION(ADD, "ADD", std::bind(broadcast::validate, OperationType::ADD, _1),
521 NN_REGISTER_OPERATION(MUL, "MUL", std::bind(broadcast::validate, OperationType::MUL, _1),
523 NN_REGISTER_OPERATION(SUB, "SUB", std::bind(broadcast::validate, OperationType::SUB, _1),
525 NN_REGISTER_OPERATION(DIV, "DIV", std::bind(broadcast::validate, OperationType::DIV, _1),
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
Dmath.rs74 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
95 res_##typeout##_1 = fnc(src1_##typein##_1); \
101 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
107 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
423 prefix##_##type##_1 = 1; \
Dmath.rs.orig74 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
95 res_##typeout##_1 = fnc(src1_##typein##_1); \
101 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
107 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
Dmath.rs.bak81 res_##typeout##_1 = fnc(src1_##typein##_1); \
87 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
93 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
Dmath.rs74 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
95 res_##typeout##_1 = fnc(src1_##typein##_1); \
101 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
107 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
423 prefix##_##type##_1 = 1; \
/frameworks/rs/tests/java_api/ComputeBenchmark/src/com/example/android/rs/computebench/
Dcompute_benchmark.rs94 … RUN_BENCH(res_##type##_1 = src1_##type##_1 op src2_##type##_1, #type "1 " #op " " #type "1") \
118 …RUN_BENCH(res_##to##_1 = (type)src1_##from##_1, "(" #to ")" #from) …
135 RUN_BENCH(res_##typeout##_1 = fnc(src1_##typein##_1);, #typeout "1 " #fnc "(" #typein "1)") \
141 …RUN_BENCH(res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1), #type "1 " #fnc "(" #type "1, " …
147 …RUN_BENCH(res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src3_##type##_1), #type "1 " #fnc…
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dmath.rs90 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
111 res_##typeout##_1 = fnc(src1_##typein##_1); \
117 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
123 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dmath.rs92 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
113 res_##typeout##_1 = fnc(src1_##typein##_1); \
119 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
125 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dmath.rs74 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
95 res_##typeout##_1 = fnc(src1_##typein##_1); \
101 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1); \
107 res_##type##_1 = fnc(src1_##type##_1, src2_##type##_1, src2_##type##_1);
/frameworks/av/media/codec2/core/include/
D_C2MacroUtils.h31 #define _C2_ARG2(_1, _2) _C2_ARG(_1) _C2_ARG(_2) argument
32 #define _C2_ARG4(_1, _2, _3, _4) _C2_ARG2(_1, _2) _C2_ARG2(_3, _4) argument
33 #define _C2_ARG8(_1, _2, _3, _4, _5, _6, _7, _8) _C2_ARG4(_1, _2, _3, _4) _C2_ARG4(_5, _6, _7, _8) argument
34 #define _C2_ARG16(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16) \ argument
35 _C2_ARG8(_1, _2, _3, _4, _5, _6, _7, _8) _C2_ARG8(_9, _10, _11, _12, _13, _14, _15, _16)
38 #define _C2_ARGC_3(_, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, \ argument
59 #define _C2_ARGC_1(_, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, \ argument
64 _C2_ARG16(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16) \
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dqpisf_2s.tab53 * 1_1 9 256 *
55 * 2_1 3 64 *
1024 * 1_1 9 256 *
1026 * 2_1 5 128 *
/frameworks/ml/nn/runtime/test/fuzzing/operation_signatures/
DFullyConnected.cpp55 .constructor = std::bind(fullyConnectedConstructor, _1, _2, HalVersion::V1_0, _3)}; in DEFINE_OPERATION_SIGNATURE()
65 .constructor = std::bind(fullyConnectedConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
DConvolutions.cpp148 .constructor = std::bind(conv2DExplicitConstructor, _1, _2, HalVersion::ver, _3)}; \
165 .constructor = std::bind(conv2DImplicitConstructor, _1, _2, HalVersion::ver, _3)};
191 .constructor = std::bind(conv2DExplicitConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
211 .constructor = std::bind(conv2DImplicitConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
236 .constructor = std::bind(conv2DExplicitConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
258 .constructor = std::bind(conv2DImplicitConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
390 std::bind(depthwiseConv2DExplicitConstructor, _1, _2, HalVersion::ver, _3)}; \
409 std::bind(depthwiseConv2DImplicitConstructor, _1, _2, HalVersion::ver, _3)};
436 .constructor = std::bind(depthwiseConv2DExplicitConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
457 .constructor = std::bind(depthwiseConv2DImplicitConstructor, _1, _2, HalVersion::V1_2, _3)}; in DEFINE_OPERATION_SIGNATURE()
[all …]
/frameworks/native/libs/vr/libpdx/
Dencoder_performance_test.cpp18 using std::placeholders::_1;
232 _1, _2, _3, _4, std::forward<T>(value)); in AddSerializationTest()
244 _1, _2, _3, _4, _5, _6, std::forward<T>(value)); in AddDeserializationTest()
262 _1, _2, _3, _4, value); in AddTest()
267 _1, _2, _3, _4, _5, _6, std::forward<T>(value)); in AddTest()
423 std::bind(&SerializeBaseTest, _1, _2, _3, _4, len); in main()
425 std::bind(&DeserializeBaseTest, _1, _2, _3, _4, _5, _6, len); in main()
/frameworks/base/tools/aapt2/xml/
DXmlActionExecutor.cpp35 wrapper_one, std::move(f), std::placeholders::_1, std::placeholders::_2)); in Action()
40 wrapper_two, std::move(f), std::placeholders::_1, std::placeholders::_2)); in Action()
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
Dmath.rs226 res_##type##_1 = src1_##type##_1 op src2_##type##_1; \
310 prefix##_##type##_1 = 1; \
/frameworks/base/cmds/incident_helper/testdata/
Dps.txt6 … 1976 806 4468612 138328 binder_thread_read 0 S 35 -16 - 0 ta 00:00:00 HwBinder:1660_1
/frameworks/base/libs/hwui/tests/common/
DTestListViewSceneBase.cpp37 auto setup = std::bind(&TestListViewSceneBase::createListItem, this, std::placeholders::_1, in createContent()
/frameworks/base/cmds/interrupter/
Dinterrupter.h76 #define INTERCEPT_ARG_N(_1, _2, _3, _4, _5, _6, _7, _8, N, ...) N argument
/frameworks/base/core/jni/
Dcom_android_internal_os_Zygote.cpp919 nullptr, _1); in ForkCommon()
981 auto fail_fn = std::bind(ZygoteFailure, env, process_name, managed_nice_name, _1); in SpecializeCommon()
982 auto extract_fn = std::bind(ExtractJString, env, process_name, managed_nice_name, _1); in SpecializeCommon()
1708 auto fail_fn = std::bind(ZygoteFailure, env, "usap", nullptr, _1); in com_android_internal_os_Zygote_nativeBlockSigTerm()
1713 auto fail_fn = std::bind(ZygoteFailure, env, "usap", nullptr, _1); in com_android_internal_os_Zygote_nativeUnblockSigTerm()
/frameworks/av/media/codec2/components/aac/
DC2SoftAacDec.cpp467 return std::bind(fillEmptyWork, _1, C2_OK); in drainRingBuffer()
476 return std::bind(fillEmptyWork, _1, C2_NO_MEMORY); in drainRingBuffer()
485 return std::bind(fillEmptyWork, _1, C2_CORRUPTED); in drainRingBuffer()

12