Home
last modified time | relevance | path

Searched refs:get_slice (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/tests/ut/python/parallel/
Dtest_initializer_weight_slice.py40 def get_slice(rank): function
61 slice0 = get_slice(0)
62 slice1 = get_slice(1)
63 slice4 = get_slice(4)
118 def get_slice(rank): function
141 slice0 = get_slice(0)
142 slice1 = get_slice(1)
143 slice4 = get_slice(4)
/third_party/flatbuffers/include/flatbuffers/
Dgrpc.h140 grpc_slice &get_slice(uint8_t *p, size_t size) { in get_slice() function
250 grpc_slice slice = slice_allocator_.get_slice(buf_data, buf_size); in GetMessage()
/third_party/boost/boost/python/suite/indexing/
Dvector_indexing_suite.hpp81 get_slice(Container& container, index_type from, index_type to) in get_slice() function in boost::python::vector_indexing_suite
/third_party/boost/libs/python/doc/reference/
Dindexing.qbk113 get_slice(Container& container, index_type from, index_type to);
191 get_slice(Container& container, index_type from, index_type to);
/third_party/boost/boost/python/suite/indexing/detail/
Dindexing_suite_detail.hpp584 return DerivedPolicies::get_slice(container, from, to); in base_get_slice()
/third_party/flatbuffers/rust/flexbuffers/src/reader/
Dmod.rs311 pub fn get_slice<T: ReadLE>(&self) -> Result<&[T], Error> { in get_slice() method
/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/
Drwyw.rs261 assert_eq!(r.get_slice::<u8>().unwrap(), [2, 3, 5, 7]); in vector_uint4()