| /frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/ |
| D | GPBBootstrap.h | 52 #define GPB_ENUM(X) enum X : int32_t X; enum X : int32_t argument 54 #define GPB_ENUM(X) NS_ENUM(int32_t, X) argument 59 #define GPB_ENUM_FWD_DECLARE(X) enum X : int32_t argument
|
| /frameworks/rs/cpp/ |
| D | ScriptIntrinsicBLAS.cpp | 184 const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) { in validateGEMV() 213 …cBLAS::SGEMV(RsBlasTranspose TransA, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, in SGEMV() 224 …BLAS::DGEMV(RsBlasTranspose TransA, double alpha, const sp<Allocation>& A, const sp<Allocation>& X, in DGEMV() 235 …BLAS::CGEMV(RsBlasTranspose TransA, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, in CGEMV() 246 …LAS::ZGEMV(RsBlasTranspose TransA, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, in ZGEMV() 258 … const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) { in SGBMV() 274 … const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) { in DGBMV() 290 … const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CGBMV() 306 … const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZGBMV() 322 … RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in validateTRMV() [all …]
|
| /frameworks/av/media/libeffects/lvm/lib/Common/src/ |
| D | LVM_Power10.c | 58 LVM_FLOAT LVM_Power10(LVM_FLOAT X) in LVM_Power10() 79 LVM_INT32 LVM_Power10(LVM_INT32 X) in LVM_Power10()
|
| D | LVM_Polynomial.c | 46 LVM_FLOAT X) in LVM_Polynomial() 87 LVM_INT32 X) in LVM_Polynomial()
|
| /frameworks/ml/nn/common/operations/ |
| D | LayerNormLSTMTest.cpp | 106 #define AddInput(X) \ in LayerNormLSTMOpModel() argument 136 #define AddOutput(X) \ in LayerNormLSTMOpModel() argument 162 #define ReserveOutput(X) X##_.insert(X##_.end(), multiAll(*it2++), 0.f); in LayerNormLSTMOpModel() argument 171 #define DefineSetter(X) \ argument 209 #define SetInputOrWeight(X) \ in Invoke() argument 219 #define SetOutput(X) \ in Invoke() argument 277 #define DefineTensor(X) std::vector<float> X##_; argument
|
| D | SVDFTest.cpp | 204 #define AddInput(X) \ in SVDFOpModel() argument 225 #define AddOutput(X) \ in SVDFOpModel() argument 244 #define ReserveOutput(X) X##_.insert(X##_.end(), multiAll(*it2++), 0.f); in SVDFOpModel() argument 263 #define SetInputOrWeight(X) \ in Invoke() argument 272 #define SetOutput(X) \ in Invoke() argument 293 #define DefineSetter(X) \ argument 330 #define DefineTensor(X) std::vector<float> X##_; argument
|
| D | EmbeddingLookupTest.cpp | 98 #define SetInputOrWeight(X, T) \ in Invoke() argument 107 #define SetOutput(X, T) \ in Invoke() argument 119 #define DefineSetter(X, T) \ argument 146 #define DefineTensor(X, T) std::vector<T> X##_; argument
|
| D | LSTMTest.cpp | 96 #define AddInput(X) \ in LSTMOpModel() argument 123 #define AddOutput(X)\ in LSTMOpModel() argument 146 #define ReserveOutput(X) X##_.insert(X##_.end(), multiAll(*it2++), 0.f); in LSTMOpModel() argument 155 #define DefineSetter(X) \ argument 194 #define SetInputOrWeight(X) \ in Invoke() argument 203 #define SetOutput(X) \ in Invoke() argument 264 #define DefineTensor(X) \ argument
|
| D | RNNTest.cpp | 189 #define DefineSetter(X) \ argument 223 #define SetInputOrWeight(X) \ in Invoke() argument 232 #define SetOutput(X) \ in Invoke() argument 257 #define DefineTensor(X) std::vector<float> X##_; argument
|
| D | HashtableLookupTest.cpp | 112 #define SetInputOrWeight(X, T) \ in Invoke() argument 121 #define SetOutput(X, T) \ in Invoke() argument 133 #define DefineSetter(X, T) \ argument 158 #define DefineTensor(X, T) std::vector<T> X##_; argument
|
| D | LSHProjectionTest.cpp | 88 #define DefineSetter(X, T) \ argument 104 #define SetInputOrWeight(X, T) \ in Invoke() argument 113 #define SetOutput(X, T) \ in Invoke() argument
|
| /frameworks/base/rs/java/android/renderscript/ |
| D | ScriptIntrinsicBLAS.java | 275 …static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y… in validateGEMV() 320 …public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float … in SGEMV() 321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 342 …public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, doubl… in DGEMV() 343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local 364 …public void CGEMV(@Transpose int TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float… in CGEMV() 365 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV() local 386 …public void ZGEMV(@Transpose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Doub… in ZGEMV() 387 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV() local 417 …BMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, floa… in SGBMV() [all …]
|
| /frameworks/compile/mclinker/lib/Target/AArch64/ |
| D | AArch64Relocator.cpp | 531 Relocator::DWord X = S + A - P; in rel() local 562 Relocator::DWord X = S + A - P; in adr_prel_lo21() local 581 Relocator::DWord X = in adr_prel_pg_hi21() local 611 Relocator::DWord X = S + A - P; in call() local 640 Relocator::DWord X = S + A - P; in condbr() local 657 Relocator::DWord X = in adr_got_page() local 682 Relocator::DWord X = helper_get_page_offset(GOT_S + A); in ld64_got_lo12() local 708 Relocator::DWord X = helper_get_page_offset(S + A); in ldst_abs_lo12() local
|
| /frameworks/native/vulkan/vkjson/ |
| D | vkjson_unittest.cc | 28 #define EXPECT(X) if (!(X)) \ argument 31 #define ASSERT(X) if (!(X)) { \ argument
|
| /frameworks/compile/mclinker/lib/Target/ARM/ |
| D | ARMRelocator.cpp | 915 Relocator::DWord X = S + A - P; in thm_jump8() local 933 Relocator::DWord X = S + A - P; in thm_jump11() local 970 Relocator::DWord X = ((S + A) | T) - P; in thm_jump19() local 1029 Relocator::DWord X = ((S + A) | T) - P; in call() local 1092 Relocator::DWord X = (S | T) - P; in thm_call() local 1131 Relocator::DWord X = (S + A) | T; in movw_abs_nc() local 1146 Relocator::DWord X = ((S + A) | T) - P; in movw_prel_nc() local 1175 Relocator::DWord X = S + A; in movt_abs() local 1188 Relocator::DWord X = S + A - P; in movt_prel() local 1222 Relocator::DWord X = (S + A) | T; in thm_movw_abs_nc() local [all …]
|
| /frameworks/rs/support/java/src/androidx/renderscript/ |
| D | ScriptIntrinsicBLAS.java | 327 …public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float … in SGEMV() 328 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 359 …public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, doubl… in DGEMV() 360 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local 391 …public void CGEMV(@Transpose int TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float… in CGEMV() 392 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV() local 423 …public void ZGEMV(@Transpose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Doub… in ZGEMV() 424 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV() local 464 …BMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, floa… in SGBMV() 466 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGBMV() local [all …]
|
| /frameworks/compile/mclinker/include/mcld/ADT/ |
| D | BinTree.h | 31 explicit DFSIterator(NodeBase* X) : TreeIteratorBase(X) { in DFSIterator() 61 explicit BFSIterator(NodeBase* X) : TreeIteratorBase(X) { in BFSIterator() 113 PolicyIteratorBase(const iterator& X) : IteratorType(X.m_pNode) {} in PolicyIteratorBase() 115 explicit PolicyIteratorBase(NodeBase* X) : IteratorType(X) {} in PolicyIteratorBase() 149 PolicyIterator(const iterator& X) : Base(X.m_pNode) {} in PolicyIterator() 151 explicit PolicyIterator(NodeBase* X) : Base(X) {} in PolicyIterator()
|
| /frameworks/compile/mclinker/lib/Target/AArch64/TargetInfo/ |
| D | AArch64TargetInfo.cpp | 18 mcld::RegisterTarget<llvm::Triple::aarch64> X(TheAArch64Target, "aarch64"); in MCLDInitializeAArch64LDTargetInfo() local
|
| /frameworks/compile/mclinker/lib/Target/Hexagon/TargetInfo/ |
| D | HexagonTargetInfo.cpp | 18 mcld::RegisterTarget<llvm::Triple::hexagon> X(TheHexagonTarget, "hexagon"); in MCLDInitializeHexagonLDTargetInfo() local
|
| /frameworks/compile/mclinker/include/mcld/Support/ |
| D | Allocators.h | 110 pointer address(reference X) const { return &X; } in address() 112 const_pointer address(const_reference X) const { return &X; } in address() 327 pointer address(reference X) const { return &X; } in address() 329 const_pointer address(const_reference X) const { return &X; } in address() 374 pointer address(reference X) const { return X; } in address() 376 const_pointer address(const_reference X) const { return X; } in address()
|
| /frameworks/compile/mclinker/lib/Target/X86/TargetInfo/ |
| D | X86TargetInfo.cpp | 19 mcld::RegisterTarget<llvm::Triple::x86> X(TheX86_32Target, "x86"); in MCLDInitializeX86LDTargetInfo() local
|
| /frameworks/compile/mclinker/lib/Target/ARM/TargetInfo/ |
| D | ARMTargetInfo.cpp | 19 mcld::RegisterTarget<llvm::Triple::arm> X(TheARMTarget, "arm"); in MCLDInitializeARMLDTargetInfo() local
|
| /frameworks/native/libs/gui/ |
| D | LayerDebugInfo.cpp | 28 #define RETURN_ON_ERROR(X) do {status_t res = (X); if (res != NO_ERROR) return res;} while(false) argument
|
| /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
| D | UT_foreach.java | 36 int X = 5; in initializeGlobals() local
|
| /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
| D | UT_kernel_struct.java | 32 int X = 5; in initializeGlobals() local
|