Lines Matching refs:alloc
7636 mozalloc_abort("alloc overflow");
63502 static Entry* createTable(AllocPolicy& alloc, uint32_t capacity,
63508 return alloc.template pod_calloc<Entry>(capacity);
63510 return alloc.template maybe_pod_calloc<Entry>(capacity);
63513 static Entry* maybeCreateTable(AllocPolicy& alloc, uint32_t capacity)
63517 return alloc.template maybe_pod_calloc<Entry>(capacity);
63520 static void destroyTable(AllocPolicy& alloc, Entry* oldTable, uint32_t capacity)
63525 alloc.free_(oldTable);
96961 explicit GCVector(AllocPolicy alloc = AllocPolicy())
96962 : vector(alloc)