Home
last modified time | relevance | path

Searched defs:std (Results 1 – 25 of 1504) sorted by relevance

12345678910>>...61

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/
Dmacros.rs116 impl std::fmt::Debug for $ty { impl
154 impl std::ops::BitAnd for $ty { impl
163 impl std::ops::BitAndAssign for $ty { impl
170 impl std::ops::BitOr for $ty { impl
179 impl std::ops::BitOrAssign for $ty { impl
186 impl std::ops::BitXor for $ty { impl
195 impl std::ops::BitXorAssign for $ty { impl
202 impl std::ops::Sub for $ty { impl
211 impl std::ops::SubAssign for $ty { impl
218 impl std::ops::Not for $ty { impl
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/axum-core/src/
Dmacros.rs62 impl std::fmt::Display for $name { impl
68 impl std::error::Error for $name {} impl
119 impl std::fmt::Display for $name { impl
125 impl std::error::Error for $name { impl
192 impl std::fmt::Display for $name { impl
202 impl std::error::Error for $name { impl
262 impl<T> std::ops::Deref for $ident<T> { impl
271 impl<T> std::ops::DerefMut for $ident<T> { impl
280 impl std::ops::Deref for $ident { impl
289 impl std::ops::DerefMut for $ident { impl
/aosp_15_r20/external/pytorch/aten/src/ATen/test/
H A Dcpu_rng_test.cpp61 Tensor& normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_()
65 Tensor& normal_Tensor_float_out(const Tensor& mean, double std, std::optional<Generator> gen, Tenso… in normal_Tensor_float_out()
69 Tensor& normal_float_Tensor_out(double mean, const Tensor& std, std::optional<Generator> gen, Tenso… in normal_float_Tensor_out()
73 Tensor& normal_Tensor_Tensor_out(const Tensor& mean, const Tensor& std, std::optional<Generator> ge… in normal_Tensor_Tensor_out()
77 Tensor normal_Tensor_float(const Tensor& mean, double std, std::optional<Generator> gen) { in normal_Tensor_float()
81 Tensor normal_float_Tensor(double mean, const Tensor& std, std::optional<Generator> gen) { in normal_float_Tensor()
85 Tensor normal_Tensor_Tensor(const Tensor& mean, const Tensor& std, std::optional<Generator> gen) { in normal_Tensor_Tensor()
103 Tensor& log_normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in log_normal_()
205 const auto std = 67.89; in TEST_F() local
219 const auto std = 67.89; in TEST_F() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/fs/
Dfile.rs90 std: Arc<StdFile>, field
153 let std = asyncify(|| StdFile::open(path)).await?; in open() localVariable
315 let std = self.std.clone(); in sync_all() localVariable
350 let std = self.std.clone(); in sync_data() localVariable
399 let std = self.std.clone(); in set_len() localVariable
444 let std = self.std.clone(); in metadata() localVariable
465 let std = self.std.clone(); in try_clone() localVariable
549 let std = self.std.clone(); in set_permissions() localVariable
604 let std = me.std.clone(); in poll_read() localVariable
673 let std = me.std.clone(); in start_seek() localVariable
[all …]
Dread_dir.rs35 let mut std = std::fs::read_dir(path)?; in read_dir() localVariable
211 std: Arc<std::fs::DirEntry>, field
300 let std = self.std.clone(); in metadata() localVariable
348 let std = self.std.clone(); in file_type() localVariable
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DDistributionTemplates.h189 #define CHECK_NORMAL_TENSOR_STD(std) \ argument
199 #define CHECK_NORMAL_STD(std) \ argument
203 Tensor& normal_impl_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_impl_()
219 Tensor& normal_out_impl(Tensor& output, const Tensor& mean, double std, std::optional<Generator> ge… in normal_out_impl()
230 Tensor& normal_out_impl(Tensor& output, double mean, const Tensor& std, std::optional<Generator> ge… in normal_out_impl()
245 Tensor& normal_out_impl(Tensor& output, const Tensor& mean, const Tensor& std, std::optional<Genera… in normal_out_impl()
259 Tensor normal_impl(const Tensor& mean, double std, std::optional<Generator> gen) { in normal_impl()
267 Tensor normal_impl(double mean, const Tensor& std, std::optional<Generator> gen) { in normal_impl()
275 Tensor normal_impl(const Tensor& mean, const Tensor& std, std::optional<Generator> gen) { in normal_impl()
316 at::Tensor& log_normal_impl_(at::Tensor& self, double mean, double std, std::optional<Generator> ge… in log_normal_impl_()
H A DDistributions.cpp191 Tensor& log_normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in log_normal_()
275 Tensor& normal_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_()
279 Tensor& normal_meta_(Tensor& self, double mean, double std, std::optional<Generator> gen) { in normal_meta_()
284 Tensor& normal_out(const Tensor& mean, double std, std::optional<Generator> gen, Tensor& output) { in normal_out()
288 Tensor& normal_out_meta(const Tensor& mean, double std, std::optional<Generator> gen, Tensor& outpu… in normal_out_meta()
293 Tensor& normal_out(double mean, const Tensor& std, std::optional<Generator> gen, Tensor& output) { in normal_out()
297 Tensor& normal_out_meta(double mean, const Tensor& std, std::optional<Generator> gen, Tensor& outpu… in normal_out_meta()
303 Tensor& normal_out(const Tensor& mean, const Tensor& std, std::optional<Generator> gen, Tensor& out… in normal_out()
307 Tensor& normal_out_meta(const Tensor& mean, const Tensor& std, std::optional<Generator> gen, Tensor… in normal_out_meta()
312 Tensor normal(const Tensor& mean, double std, std::optional<Generator> gen) { in normal()
[all …]
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dmangle-subst-std.cpp16 namespace std { namespace
24 namespace std { namespace
31 namespace std { namespace
38 namespace std { namespace
47 namespace std { namespace
84 namespace std namespace
107 namespace std { namespace
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/autogen/
Dextensions.rs452 impl std::ops::BitAnd for #struct_name { in extensions_common_output() impl
461 impl std::ops::BitAndAssign for #struct_name { in extensions_common_output() impl
468 impl std::ops::BitOr for #struct_name { in extensions_common_output() impl
477 impl std::ops::BitOrAssign for #struct_name { in extensions_common_output() impl
484 impl std::ops::BitXor for #struct_name { in extensions_common_output() impl
493 impl std::ops::BitXorAssign for #struct_name { in extensions_common_output() impl
500 impl std::ops::Sub for #struct_name { in extensions_common_output() impl
509 impl std::ops::SubAssign for #struct_name { in extensions_common_output() impl
516 impl std::fmt::Debug for #struct_name { in extensions_common_output() impl
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/offset/local/
Dmod.rs379 let std = FixedOffset::east_opt(3 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions() localVariable
399 let std = FixedOffset::east_opt(-5 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions() localVariable
419 let std = FixedOffset::east_opt(3 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions() localVariable
439 let std = FixedOffset::east_opt(-(4 * 60 + 30) * 60).unwrap(); in test_lookup_with_dst_transitions() localVariable
458 let std = FixedOffset::east_opt(3 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions() localVariable
467 let std = FixedOffset::east_opt(3 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions() localVariable
481 let std = FixedOffset::east_opt(3 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions_limits() localVariable
503 let std = FixedOffset::west_opt(3 * 60 * 60).unwrap(); in test_lookup_with_dst_transitions_limits() localVariable
/aosp_15_r20/external/cronet/third_party/libc++/src/utils/
H A Dgenerate_feature_test_macro_components.py1371 def get_std_before(d, std): argument
1381 def get_value_before(d, std): argument
1388 def get_for_std(d, std): argument
1403 def get_std_number(std): argument
1412 def produce_macros_definition_for_std(std): argument
1594 def generate_std_test(test_list, std): argument
/aosp_15_r20/external/pytorch/torch/csrc/api/src/nn/
H A Dinit.cpp48 double std = 0.0; in calculate_kaiming_std() local
111 Tensor normal_(Tensor tensor, double mean, double std) { in normal_()
153 Tensor sparse_(Tensor tensor, double sparsity, double std) { in sparse_()
186 auto std = calculate_kaiming_std(tensor, a, mode, nonlinearity); in kaiming_uniform_() local
199 auto std = calculate_kaiming_std(tensor, a, mode, nonlinearity); in kaiming_normal_() local
208 const auto std = gain * std::sqrt(2.0 / (fan.in + fan.out)); in xavier_normal_() local
216 const auto std = gain * std::sqrt(2.0 / (fan.in + fan.out)); in xavier_uniform_() local
/aosp_15_r20/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_ENUMSTD.c49 struct v4l2_standard std; in test_VIDIOC_ENUMSTD() local
126 struct v4l2_standard std; in test_VIDIOC_ENUMSTD_S32_MAX() local
145 struct v4l2_standard std; in test_VIDIOC_ENUMSTD_S32_MAX_1() local
164 struct v4l2_standard std; in test_VIDIOC_ENUMSTD_U32_MAX() local
187 struct v4l2_standard std; in test_VIDIOC_ENUMSTD_NULL() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/concepts/concepts.lang/concept.common/
H A Dcommon_with.compile.pass.cpp265 namespace std { namespace
292 namespace std { namespace
317 namespace std { namespace
342 namespace std { namespace
364 namespace std { namespace
386 namespace std { namespace
406 namespace std { namespace
529 namespace std { namespace
712 namespace std { namespace
853 namespace std { namespace
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cpu/
H A DDistributionTemplates.h108 void normal_fill_AVX2(const TensorBase &self, const float mean, const float std, RNG generator) { in normal_fill_AVX2()
139 static void normal_fill_16(scalar_t *data, const scalar_t mean, const scalar_t std) { in normal_fill_16()
151 …ne,const Vectorized<float> &minus_two,const Vectorized<float> &mean,const Vectorized<float> &std) { in normal_fill_16_VSX()
165 void normal_fill_VSX(const TensorBase &self, const scalar_t mean, const scalar_t std, RNG generator… in normal_fill_VSX()
207 void normal_fill(const TensorBase &self, const scalar_t mean, const scalar_t std, RNG generator) { in normal_fill()
231 void normal_kernel(const TensorBase &self, double mean, double std, RNG generator) { in normal_kernel()
309 void log_normal_kernel(TensorIteratorBase& iter, double mean, double std, RNG generator) { in log_normal_kernel()
/aosp_15_r20/external/pigweed/pw_polyfill/public/pw_polyfill/
H A Dstandard.h21 #define PW_CXX_STANDARD_IS_SUPPORTED(std) \ argument
27 #define PW_C_STANDARD_IS_SUPPORTED(std) (0 >= _PW_C_STANDARD_##std()) argument
31 #define PW_CXX_STANDARD_IS_SUPPORTED(std) (0 >= _PW_CXX_STANDARD_##std()) argument
33 #define PW_C_STANDARD_IS_SUPPORTED(std) \ argument
/aosp_15_r20/external/jackson-core/src/test/java/com/fasterxml/jackson/core/base64/
H A DBase64CodecTest.java33 Base64Variant std = Base64Variants.MIME; in testProps() local
47 Base64Variant std = Base64Variants.MIME; in testCharEncoding() local
81 final Base64Variant std = Base64Variants.MIME; in testConvenienceMethods() local
103 final Base64Variant std = Base64Variants.MIME; in testConvenienceMethodWithLFs() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/concepts/concepts.lang/concept.commonref/
H A Dcommon_reference.compile.pass.cpp276 namespace std { namespace
294 namespace std { namespace
314 namespace std { namespace
333 namespace std { namespace
/aosp_15_r20/external/ComputeLibrary/src/core/CL/kernels/
H A DCLNormalizePlanarYUVLayerKernel.cpp43 …nst ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *mean, const ITensorInfo *std) in validate_arguments()
89 …::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *mean, const ICLTensor *std) in configure()
94 …le_context, const ICLTensor *input, ICLTensor *output, const ICLTensor *mean, const ICLTensor *std) in configure()
166 …nst ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *mean, const ITensorInfo *std) in validate()
/aosp_15_r20/external/clang/test/Index/
H A Dload-namespaces.cpp3 namespace std { namespace
9 namespace std { namespace
18 namespace std { namespace
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/include/boost/archive/
Dwcslen.hpp22 namespace std{ namespace
35 namespace std { namespace
51 namespace std{ using ::wcslen; } namespace
/aosp_15_r20/packages/modules/NeuralNetworks/runtime/test/specs/V1_3/
Davg_pool_quant8_signed.mod.py46 std = 5 variable
83 std = 4 variable
174 std = 5 variable
203 std = 2 variable
232 std = 5 variable
/aosp_15_r20/external/ComputeLibrary/src/runtime/CL/functions/
H A DCLNormalizePlanarYUVLayer.cpp35 …::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *mean, const ICLTensor *std) in configure()
40 …le_context, const ICLTensor *input, ICLTensor *output, const ICLTensor *mean, const ICLTensor *std) in configure()
49 const ITensorInfo *mean, const ITensorInfo *std) in validate()
/aosp_15_r20/external/rust/android-crates-io/crates/parking_lot_core/src/thread_parker/windows/
Dbindings.rs20 Address: *const std::ffi::c_void, constant
21 CompareAddress: *const std::ffi::c_void, constant
25 pub type WakeByAddressSingle = unsafe extern "system" fn(Address: *const std::ffi::c_void); constant
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/test/
Dtest_set_unordered.cpp21 namespace std{ namespace
28 namespace std{ namespace
46 namespace std { namespace

12345678910>>...61