Home
last modified time | relevance | path

Searched refs:pointer (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-2.4.0/include/nn/fnd/
Dfnd_Allocator.h77 typedef T* pointer; typedef
87 pointer address(reference& x) const { return &x; } in address()
89pointer allocate(size_type n, void* = 0) { return static_cast<T*>(StdAllocatorAdapterHolder<Alloca…
90 …void deallocate(pointer p, size_type) { StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()-… in deallocate()
92 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct()
93 void destroy(pointer p) { p->~T(); } in destroy()
107 typedef T* pointer; typedef
117 pointer address(reference& x) const { return &x; } in address()
119pointer allocate(size_type n, void* = 0) { return static_cast<T*>(s_Allocator->Allocate(n * sizeof…
120 void deallocate(pointer p, size_type) { s_Allocator->Free(static_cast<void*>(p)); } in deallocate()
[all …]
/CTR-SDK-2.4.0/include/gles2/
Dgl2.h585 …LL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void** pointer);