Searched refs:pointer (Results 1 – 2 of 2) sorted by relevance
80 typedef T* pointer; typedef90 pointer address(reference& x) const { return &x; } in address()92 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(StdAllocatorAdapterHolder<Alloca…93 …void deallocate(pointer p, size_type) { StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()-… in deallocate()95 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct()96 void destroy(pointer p) { p->~T(); } in destroy()110 typedef T* pointer; typedef120 pointer address(reference& x) const { return &x; } in address()122 …pointer allocate(size_type n, void* = 0) { return static_cast<T*>(s_Allocator->Allocate(n * sizeof…123 void deallocate(pointer p, size_type) { s_Allocator->Free(static_cast<void*>(p)); } in deallocate()[all …]
585 …LL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void** pointer);