Home
last modified time | relevance | path

Searched refs:get_ptr (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/detail/
H A Doptional_reference_spec.hpp130 explicit optional(const optional<U&>& rhs) BOOST_NOEXCEPT : ptr_(rhs.get_ptr()) {} in optional()
131 optional(const optional& rhs) BOOST_NOEXCEPT : ptr_(rhs.get_ptr()) {} in optional()
142 optional& operator=(const optional& rhs) BOOST_NOEXCEPT { ptr_ = rhs.get_ptr(); return *this; } in operator =()
144 …optional& operator=(const optional<U&>& rhs) BOOST_NOEXCEPT { ptr_ = rhs.get_ptr(); return *this; } in operator =()
151 T* get_ptr() const BOOST_NOEXCEPT { return ptr_; } in get_ptr() function in boost::optional
H A Dold_optional_implementation.hpp346 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr() function in boost::optional_detail::optional_base
347 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr() function in boost::optional_detail::optional_base
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/
H A Doptional.hpp341 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr() function in boost::optional_detail::optional_base
342 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } in get_ptr() function in boost::optional_detail::optional_base
1320 return opt->get_ptr() ; in get()
1328 return opt->get_ptr() ; in get()
1356 return opt.get_ptr() ; in get_pointer()
1364 return opt.get_ptr() ; in get_pointer()
/OK3568_Linux_fs/kernel/arch/mips/alchemy/common/
H A Ddbdma.c580 ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base; in au1xxx_dbdma_ring_alloc()
731 dp = ctp->get_ptr; in au1xxx_dbdma_get_dest()
746 ctp->get_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); in au1xxx_dbdma_get_dest()
806 ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base; in au1xxx_dbdma_reset()
906 (u32)(ctp->chan_desc_base), (u32)(ctp->get_ptr), in au1xxx_dbdma_dump()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/
H A Dvector.hpp103 BOOST_CONTAINER_FORCEINLINE const Pointer &get_ptr() const BOOST_NOEXCEPT_OR_NOTHROW in get_ptr() function in boost::container::container_detail::vec_iterator
106 BOOST_CONTAINER_FORCEINLINE Pointer &get_ptr() BOOST_NOEXCEPT_OR_NOTHROW in get_ptr() function in boost::container::container_detail::vec_iterator
122 : m_ptr(other.get_ptr()) in vec_iterator()
255 { return it.get_ptr(); } in vector_iterator_get_ptr()
258 BOOST_CONTAINER_FORCEINLINE Pointer &get_ptr(container_detail::vec_iterator<Pointer, IsConst> &it) … in get_ptr() function
259 { return it.get_ptr(); } in get_ptr()
277 …BOOST_CONTAINER_FORCEINLINE static return_type get_ptr(const const_pointer &ptr) BOOST_NOEXCEPT_OR…
285 …BOOST_CONTAINER_FORCEINLINE static return_type get_ptr(const Pointer &ptr) BOOST_NOEXCEPT_OR_NOTHR…
295 return container_detail::vector_get_ptr_pointer_to_non_const<MaybeConstPointer>::get_ptr(ptr);
/OK3568_Linux_fs/kernel/arch/mips/include/asm/mach-au1x00/
H A Dau1xxx_dbdma.h328 au1x_ddma_desc_t *get_ptr, *put_ptr, *cur_ptr; member
/OK3568_Linux_fs/kernel/drivers/dma/
H A Ddmaengine.c1554 if (!desc->metadata_ops || !desc->metadata_ops->get_ptr) in dmaengine_desc_get_metadata_ptr()
1557 return desc->metadata_ops->get_ptr(desc, payload_len, max_len); in dmaengine_desc_get_metadata_ptr()
/OK3568_Linux_fs/kernel/include/linux/
H A Ddmaengine.h579 void *(*get_ptr)(struct dma_async_tx_descriptor *desc, member
/OK3568_Linux_fs/kernel/drivers/dma/ti/
H A Dk3-udma.c2322 .get_ptr = udma_get_metadata_ptr,