Home | History | Annotate | Download | only in ld-elf

Lines Matching refs:sz

9 operator new (std::size_t sz, const std::nothrow_t&) throw()
14 if (sz == 0)
15 sz = 1;
16 p = (void *) malloc (sz);
21 operator new (std::size_t sz) throw (std::bad_alloc)
26 if (sz == 0)
27 sz = 1;
28 p = (void *) malloc (sz);
38 operator new[] (std::size_t sz) throw (std::bad_alloc)
40 return ::operator new(sz);
44 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
46 return ::operator new(sz, nothrow);