Lines Matching refs:n
442 inline T *Malloc(A& a, size_t n = 1)
444 return Realloc<T, A>(a, NULL, 0, n);
448 inline void Free(A& a, T *p, size_t n = 1)
450 static_cast<void>(Realloc<T, A>(a, p, n, 0));
580 U* allocate(size_type n = 1, const void* = 0)
582 return RAPIDJSON_NAMESPACE::Malloc<U>(baseAllocator_, n);
585 void deallocate(U* p, size_type n = 1)
587 RAPIDJSON_NAMESPACE::Free<U>(baseAllocator_, p, n);
590 pointer allocate(size_type n = 1, const void* = 0)
592 return allocate<value_type>(n);
594 void deallocate(pointer p, size_type n = 1)
596 deallocate<value_type>(p, n);