/aosp_15_r20/external/clang/test/SemaTemplate/ |
H A D | ms-lookup-template-base-classes.cpp | 12 class B : public A<T> { class 21 template class B<int>; // expected-note {{requested here}} variable 22 template class B<char>; // expected-note {{requested here}} variable 64 class B : public A<T> { class 71 template class B<int>; variable 88 class B : public A<T> { class 95 template class B<int>; // expected-note {{requested here}} variable 111 class B : public A<T> { class 130 class B { class 174 class B {}; class [all …]
|
H A D | instantiate-local-class.cpp | 120 struct B { in bar() struct 121 F *fn; in bar() 122 void foo() const { fn(); } in bar() 195 struct B { struct 196 void f() { F<int>(); } in f() 260 void m() { in m() function 268 void m() { in m() function 275 void m() { in m() function 283 void m() { in m() function 291 void m() { in m() function [all …]
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | devirtualize-vtable-marking.cpp | 15 virtual void m() {} in m() function 17 struct B : A { struct 19 virtual void m() { } in m() function 20 virtual void m2() { static_cast<A *>(this)->m(); } in m2() 21 OwnPtr<Incomplete> m_sqlError; 37 virtual void m() {} in m() function 39 struct B : A { struct 43 virtual void m() { A::m(); } in m() function 44 OwnPtr<Incomplete> m_sqlError;
|
H A D | cxx1y-initializer-aggregates.cpp | 14 int m = n * 3; member 31 struct B { struct 32 int n; 33 constexpr int f() { return n * 5; } in f() 34 int m = f(); member 54 struct B { struct 55 constexpr B(int k) : d(1.23), k(k) {} in B() function 58 constexpr int f() const { return A{k}.b; } in f() 59 double d; 60 int k;
|
H A D | enable_if.cpp | 202 T templated(T m) __attribute__((enable_if(true, ""))) { return T(); } in templated() 204 T templated(T m) __attribute__((enable_if(false, ""))) { return T(); } in templated() 214 T templatedBar(T m) __attribute__((enable_if(m > 0, ""))) { return T(); } in templatedBar() 224 T templatedConflict(T m) __attribute__((enable_if(false, ""))) { return T(); } in templatedConflict() 226 T templatedConflict(T m) __attribute__((enable_if(true, ""))) { return T(); } in templatedConflict() 228 T templatedConflict(T m) __attribute__((enable_if(1, ""))) { return T(); } in templatedConflict() 269 auto B = reinterpret_cast<VoidFooTy>(foo); in testIt() local 286 auto B = (VoidFooTy)foo; in testItCStyle() local 312 …auto B = reinterpret_cast<CharFooTy>(foo); // expected-error{{reinterpret_cast cannot resolve over… in testIt() local 325 constexpr auto B = (CharFooTy)foo; in testItCStyle() local [all …]
|
H A D | constructor-initializer.cpp | 6 int m; member in A 12 class B : public A { class 14 B() : A(), m(1), n(3.14) { } in B() function in B 17 int m; member in B 42 int B; member in F 121 M m; // expected-note {{member is declared here}} member 138 char* B; member in InitializeUsingSelfTest 154 int B; member in InitializeUsingSelfExceptions 157 InitializeUsingSelfExceptions(int B) in InitializeUsingSelfExceptions() 165 bool A, B, C; member in CopyConstructorTest [all …]
|
H A D | class-layout.cpp | 14 struct B : A { struct 18 SA(1, sizeof(B) == 12); argument 66 class B : A { bool iv0 : 1; }; class 81 struct B : A { virtual void b(); }; struct 96 struct B : A { virtual void b(); }; struct 314 struct B { struct 315 char b; 344 struct B { struct 345 char b_pre; 346 pod_in_11_only b; [all …]
|
H A D | aggregate-initialization.cpp | 12 int m; member 17 int m; member 21 int m; member in NonAggr3 25 int m; member 63 struct B { struct 75 B b1 = { }; in f() argument 120 struct B : public A { struct
|
H A D | constant-expression-cxx11.cpp | 33 struct B : virtual A, Aa {}; struct 350 struct B { A &&a1; A &&a2; }; struct 378 struct B { A &&a; }; struct 595 constexpr int m = this->g(); // ok, could be constexpr in f() local 607 struct B { int n; int m; } constexpr b = { 0, b.n }; struct 610 int m, n; member 711 struct B { struct 712 constexpr B(int n) : a(n) {} in B() argument 713 int a; 927 struct B : A { struct [all …]
|
/aosp_15_r20/external/dng_sdk/source/ |
H A D | dng_matrix.cpp | 65 dng_matrix::dng_matrix (const dng_matrix &m) in dng_matrix() 185 real64 m = fData [0] [0]; in MaxEntry() local 211 real64 m = fData [0] [0]; in MinEntry() local 301 dng_matrix_3by3::dng_matrix_3by3 (const dng_matrix &m) in dng_matrix_3by3() 367 dng_matrix_4by3::dng_matrix_4by3 (const dng_matrix &m) in dng_matrix_4by3() 531 real64 m = fData [0]; in MaxEntry() local 556 real64 m = fData [0]; in MinEntry() local 724 const dng_matrix &B) in operator *() 742 for (uint32 m = 0; m < A.Cols (); m++) in operator *() local 762 const dng_vector &B) in operator *() [all …]
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/ |
H A D | TestEnumSerialization.java | 27 A, B, C; enumConstant 45 A("foo"), B("bar"); enumConstant 65 A, B, C; enumConstant 84 A, B, C; enumConstant 123 A, B, C; enumConstant 176 ObjectMapper m = new ObjectMapper(); in testEnumsWithJsonValueUsingMixin() local 201 ObjectMapper m = new ObjectMapper(); in testToStringEnum() local 213 ObjectMapper m = new ObjectMapper(); in testToStringEnumWithEnumMap() local 223 ObjectMapper m = new ObjectMapper(); in testAsIndex() local 243 ObjectMapper m = new ObjectMapper(); in testGenericEnumSerializer() local [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 2473 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2476 F: FnMut(B, Self::Item) -> B, in fold() 2543 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2546 F: FnMut(B, Self::Item) -> B, in fold() 4742 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4745 F: FnMut(B, Self::Item) -> B, in fold() 4781 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4784 F: FnMut(B, Self::Item) -> B, in fold() 4822 fn fold<B, F>(self, init: B, f: F) -> B in fold() 4825 F: FnMut(B, Self::Item) -> B, in fold() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 2473 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2476 F: FnMut(B, Self::Item) -> B, in fold() 2543 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2546 F: FnMut(B, Self::Item) -> B, in fold() 4742 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4745 F: FnMut(B, Self::Item) -> B, in fold() 4781 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4784 F: FnMut(B, Self::Item) -> B, in fold() 4822 fn fold<B, F>(self, init: B, f: F) -> B in fold() 4825 F: FnMut(B, Self::Item) -> B, in fold() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 2473 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2476 F: FnMut(B, Self::Item) -> B, in fold() 2543 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2546 F: FnMut(B, Self::Item) -> B, in fold() 4742 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4745 F: FnMut(B, Self::Item) -> B, in fold() 4781 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4784 F: FnMut(B, Self::Item) -> B, in fold() 4822 fn fold<B, F>(self, init: B, f: F) -> B in fold() 4825 F: FnMut(B, Self::Item) -> B, in fold() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 2473 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2476 F: FnMut(B, Self::Item) -> B, in fold() 2543 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2546 F: FnMut(B, Self::Item) -> B, in fold() 4742 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4745 F: FnMut(B, Self::Item) -> B, in fold() 4781 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4784 F: FnMut(B, Self::Item) -> B, in fold() 4822 fn fold<B, F>(self, init: B, f: F) -> B in fold() 4825 F: FnMut(B, Self::Item) -> B, in fold() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/ |
H A D | map.rs | 2473 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2476 F: FnMut(B, Self::Item) -> B, in fold() 2543 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 2546 F: FnMut(B, Self::Item) -> B, in fold() 4742 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4745 F: FnMut(B, Self::Item) -> B, in fold() 4781 fn fold<B, F>(self, init: B, mut f: F) -> B in fold() 4784 F: FnMut(B, Self::Item) -> B, in fold() 4822 fn fold<B, F>(self, init: B, f: F) -> B in fold() 4825 F: FnMut(B, Self::Item) -> B, in fold() [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cuda/linalg/ |
H A D | BatchLinearAlgebraLibBlas.cpp | 82 auto m = cuda_int_cast(input.size(-2), "m"); in apply_geqrf_batched() local 131 static void apply_lu_solve_batched_cublas(const Tensor& LU, const Tensor& pivots, const Tensor& B, … in apply_lu_solve_batched_cublas() 138 auto m = cuda_int_cast(LU.size(-2), "m"); in apply_lu_solve_batched_cublas() local 154 void lu_solve_batched_cublas(const Tensor& LU, const Tensor& pivots, const Tensor& B, TransposeType… in lu_solve_batched_cublas() 161 static void apply_triangular_solve(const Tensor& A, const Tensor& B, bool left, bool upper, Transpo… in apply_triangular_solve() 173 auto m = cuda_int_cast(left ? A.size(-1) : B.size(-2), "m"); in apply_triangular_solve() local 188 void triangular_solve_cublas(const Tensor& A, const Tensor& B, bool left, bool upper, TransposeType… in triangular_solve_cublas() 195 static void apply_triangular_solve_batched(const Tensor& A, const Tensor& B, bool left, bool upper,… in apply_triangular_solve_batched() 203 auto m = cuda_int_cast(left ? A.size(-1) : B.size(-2), "m"); in apply_triangular_solve_batched() local 220 void triangular_solve_batched_cublas(const Tensor& A, const Tensor& B, bool left, bool upper, Trans… in triangular_solve_batched_cublas() [all …]
|
H A D | BatchLinearAlgebra.cpp | 247 magma_int_t m, magma_int_t n, double* dA, magma_int_t ldda, in magmaLu() 256 magma_int_t m, magma_int_t n, float* dA, magma_int_t ldda, in magmaLu() 265 magma_int_t m, magma_int_t n, c10::complex<double>* dA, magma_int_t ldda, in magmaLu() 274 magma_int_t m, magma_int_t n, c10::complex<float>* dA, magma_int_t ldda, in magmaLu() 283 magma_int_t m, magma_int_t n, double** dA_array, magma_int_t ldda, in magmaLuBatched() 292 magma_int_t m, magma_int_t n, float** dA_array, magma_int_t ldda, in magmaLuBatched() 301 magma_int_t m, magma_int_t n, c10::complex<double>** dA_array, magma_int_t ldda, in magmaLuBatched() 310 magma_int_t m, magma_int_t n, c10::complex<float>** dA_array, magma_int_t ldda, in magmaLuBatched() 319 magma_int_t m, magma_int_t n, double* dA, magma_int_t ldda, in magmaLuNoPiv() 328 magma_int_t m, magma_int_t n, float* dA, magma_int_t ldda, in magmaLuNoPiv() [all …]
|
/aosp_15_r20/external/cblas/testing/ |
H A D | c_zblas3.c | 14 void F77_zgemm(int *order, char *transpa, char *transpb, int *m, int *n, in F77_zgemm() 19 CBLAS_TEST_ZOMPLEX *A, *B, *C; in F77_zgemm() local 90 void F77_zhemm(int *order, char *rtlf, char *uplow, int *m, int *n, in F77_zhemm() 95 CBLAS_TEST_ZOMPLEX *A, *B, *C; in F77_zhemm() local 154 void F77_zsymm(int *order, char *rtlf, char *uplow, int *m, int *n, in F77_zsymm() 159 CBLAS_TEST_ZOMPLEX *A, *B, *C; in F77_zsymm() local 325 CBLAS_TEST_ZOMPLEX *A, *B, *C; in F77_zher2k() local 389 CBLAS_TEST_ZOMPLEX *A, *B, *C; in F77_zsyr2k() local 449 int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, in F77_ztrmm() 452 CBLAS_TEST_ZOMPLEX *A, *B; in F77_ztrmm() local [all …]
|
H A D | c_cblas3.c | 14 void F77_cgemm(int *order, char *transpa, char *transpb, int *m, int *n, in F77_cgemm() 19 CBLAS_TEST_COMPLEX *A, *B, *C; in F77_cgemm() local 90 void F77_chemm(int *order, char *rtlf, char *uplow, int *m, int *n, in F77_chemm() 95 CBLAS_TEST_COMPLEX *A, *B, *C; in F77_chemm() local 154 void F77_csymm(int *order, char *rtlf, char *uplow, int *m, int *n, in F77_csymm() 159 CBLAS_TEST_COMPLEX *A, *B, *C; in F77_csymm() local 325 CBLAS_TEST_COMPLEX *A, *B, *C; in F77_cher2k() local 389 CBLAS_TEST_COMPLEX *A, *B, *C; in F77_csyr2k() local 449 int *m, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, in F77_ctrmm() 452 CBLAS_TEST_COMPLEX *A, *B; in F77_ctrmm() local [all …]
|
H A D | c_sblas3.c | 12 void F77_sgemm(int *order, char *transpa, char *transpb, int *m, int *n, in F77_sgemm() 16 float *A, *B, *C; in F77_sgemm() local 73 void F77_ssymm(int *order, char *rtlf, char *uplow, int *m, int *n, in F77_ssymm() 77 float *A, *B, *C; in F77_ssymm() local 179 float *A, *B, *C; in F77_ssyr2k() local 231 int *m, int *n, float *alpha, float *a, int *lda, float *b, in F77_strmm() 234 float *A, *B; in F77_strmm() local 282 int *m, int *n, float *alpha, float *a, int *lda, float *b, in F77_strsm() 285 float *A, *B; in F77_strsm() local
|
H A D | c_dblas3.c | 14 void F77_dgemm(int *order, char *transpa, char *transpb, int *m, int *n, in F77_dgemm() 18 double *A, *B, *C; in F77_dgemm() local 76 void F77_dsymm(int *order, char *rtlf, char *uplow, int *m, int *n, in F77_dsymm() 80 double *A, *B, *C; in F77_dsymm() local 182 double *A, *B, *C; in F77_dsyr2k() local 234 int *m, int *n, double *alpha, double *a, int *lda, double *b, in F77_dtrmm() 237 double *A, *B; in F77_dtrmm() local 285 int *m, int *n, double *alpha, double *a, int *lda, double *b, in F77_dtrsm() 288 double *A, *B; in F77_dtrsm() local
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | destructors.cpp | 18 struct B : A { struct 68 struct B : A { struct 101 struct B : Base, virtual VBase { struct 108 // CHECK2-LABEL: define void @_ZN5test01BD2Ev(%"struct.test0::B"* %this, i8** %vtt) unnamed_addr 125 struct A { ~A(); char ***m; }; // non-trivial destructor member 126 struct B { ~B(); }; // non-trivial destructor struct 170 struct A { ~A(); char ***m; }; member 171 struct B : A { ~B(); }; struct 181 struct B { virtual ~B(); }; struct 316 template <unsigned> struct B { B(); ~B(); int _; }; argument [all …]
|
/aosp_15_r20/external/bcc/src/cc/ |
H A D | bpf_module_rw_engine.cc | 50 static LoadInst *createLoad(IRBuilder<> &B, Value *addr, bool isVolatile = false) in createLoad() 64 static Value *createInBoundsGEP(IRBuilder<> &B, Value *ptr, ArrayRef<Value *>idxlist) in createInBoundsGEP() 79 static void debug_printf(Module *mod, IRBuilder<> &B, const string &fmt, vector<Value *> args) { in debug_printf() 94 static void finish_sscanf(IRBuilder<> &B, vector<Value *> *args, string *fmt, in finish_sscanf() 136 static void parse_type(IRBuilder<> &B, vector<Value *> *args, string *fmt, in parse_type() 258 IRBuilder<> B(*ctx_); in make_reader() local 328 IRBuilder<> B(*ctx_); in make_writer() local 380 unique_ptr<ExecutionEngine> BPFModule::finalize_rw(unique_ptr<Module> m) { in finalize_rw() 403 auto m = ebpf::make_unique<Module>("sscanf", *ctx_); in annotate() local
|
/aosp_15_r20/external/pytorch/test/inductor/ |
H A D | test_flex_decoding.py | 126 def _inverse_causal(score, b, h, m, n): argument 130 def _times_two(score, b, h, m, n): argument 135 def _squared(score, b, h, m, n): argument 144 def score_mod(score, b, h, m, n): argument 150 def _trig(score, b, h, m, n): argument 155 def _trig2(score, b, h, m, n): argument 179 B = 4 variable 393 def input_strides_1(B, H, S, D): argument 396 def input_strides_2(B, H, S, D): argument 399 def input_strides_3(B, H, S, D): argument [all …]
|