Lines Matching refs:_malloc_cs
61 _malloc_cs = NULL;
71 if (_malloc_cs != NULL) {
72 delete _malloc_cs;
73 _malloc_cs = NULL;
97 if (_malloc_cs != NULL) _malloc_cs->clear();
199 if (_malloc_cs == NULL) {
200 _malloc_cs = new (std::nothrow) MemPointerArrayImpl<MallocCallsitePointer>(64);
202 if (_malloc_cs == NULL || _malloc_cs->out_of_memory()) {
206 _malloc_cs->clear();
222 if (!_malloc_cs->append(&malloc_callsite)) {
244 if (!_malloc_cs->append(&malloc_callsite)) {
422 assert(_malloc_cs != NULL && _vm_cs != NULL, "out of memory");
423 assert(other._malloc_cs != NULL && other._vm_cs != NULL,
425 _malloc_cs->clear();
428 for (index = 0; index < other._malloc_cs->length(); index ++) {
429 _malloc_cs->append(other._malloc_cs->at(index));