Home
last modified time | relevance | path

Searched defs:X (Results 1 – 25 of 117) sorted by relevance

12345

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/
DGPBBootstrap.h52 #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/
DScriptIntrinsicBLAS.cpp184 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()
258const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) { in SGBMV()
274const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) { in DGBMV()
290const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CGBMV()
306const 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/
DLVM_Power10.c58 LVM_FLOAT LVM_Power10(LVM_FLOAT X) in LVM_Power10()
79 LVM_INT32 LVM_Power10(LVM_INT32 X) in LVM_Power10()
DLVM_Polynomial.c46 LVM_FLOAT X) in LVM_Polynomial()
87 LVM_INT32 X) in LVM_Polynomial()
/frameworks/ml/nn/common/operations/
DLayerNormLSTMTest.cpp106 #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
DSVDFTest.cpp204 #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
DEmbeddingLookupTest.cpp98 #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
DLSTMTest.cpp96 #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
DRNNTest.cpp189 #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
DHashtableLookupTest.cpp112 #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
DLSHProjectionTest.cpp88 #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/
DScriptIntrinsicBLAS.java275 …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/
DAArch64Relocator.cpp531 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/
Dvkjson_unittest.cc28 #define EXPECT(X) if (!(X)) \ argument
31 #define ASSERT(X) if (!(X)) { \ argument
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp915 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/
DScriptIntrinsicBLAS.java327 …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/
DBinTree.h31 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/
DAArch64TargetInfo.cpp18 mcld::RegisterTarget<llvm::Triple::aarch64> X(TheAArch64Target, "aarch64"); in MCLDInitializeAArch64LDTargetInfo() local
/frameworks/compile/mclinker/lib/Target/Hexagon/TargetInfo/
DHexagonTargetInfo.cpp18 mcld::RegisterTarget<llvm::Triple::hexagon> X(TheHexagonTarget, "hexagon"); in MCLDInitializeHexagonLDTargetInfo() local
/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h110 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/
DX86TargetInfo.cpp19 mcld::RegisterTarget<llvm::Triple::x86> X(TheX86_32Target, "x86"); in MCLDInitializeX86LDTargetInfo() local
/frameworks/compile/mclinker/lib/Target/ARM/TargetInfo/
DARMTargetInfo.cpp19 mcld::RegisterTarget<llvm::Triple::arm> X(TheARMTarget, "arm"); in MCLDInitializeARMLDTargetInfo() local
/frameworks/native/libs/gui/
DLayerDebugInfo.cpp28 #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/
DUT_foreach.java36 int X = 5; in initializeGlobals() local
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
DUT_kernel_struct.java32 int X = 5; in initializeGlobals() local

12345