Home | History | Annotate | Download | only in profviz

Lines Matching refs:allocator

622 // @allocator: How to allocate memory, see ALLOC_*
623 function allocate(slab, types, allocator, ptr) {
634 if (allocator == ALLOC_NONE) {
637 ret = [_malloc, Runtime.stackAlloc, Runtime.staticAlloc, Runtime.dynamicAlloc][allocator === undefined ? ALLOC_STATIC : allocator](Math.max(size, singleType ? 1 : types.length));