Lines Matching defs:nbytes
64 PL_DHashAllocTable(PLDHashTable *table, PRUint32 nbytes)
67 return RTMemAlloc(nbytes);
69 return malloc(nbytes);
221 PRUint32 nbytes;
248 nbytes = capacity * entrySize;
250 table->entryStore = ops->allocTable(table, nbytes);
253 memset(table->entryStore, 0, nbytes);
460 PRUint32 entrySize, i, nbytes;
479 nbytes = newCapacity * entrySize;
481 newEntryStore = table->ops->allocTable(table, nbytes);
495 memset(newEntryStore, 0, nbytes);