Lines Matching refs:off
308 * Construct the initial part of malloc. off contains the offset from curthread
313 genasm_malinit(uint8_t *bp, uint32_t off, uint32_t ep, uint32_t csize)
323 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off));
329 genasm_frinit(uint8_t *bp, uint32_t off, uint32_t dp, uint32_t ep, uint32_t mc)
341 bcopy(&off, bp + PTC_FRINI_SOFF, sizeof (off));
443 int ii, off;
461 off = genasm_malinit(bp, umem_tmem_off, erroff,
463 bp += off;
464 allocoff -= off;
465 erroff -= off;
468 off = genasm_firstcache(bp, umem_alloc_sizes[0], allocoff);
469 bp += off;
470 allocoff -= off;
471 erroff -= off;
475 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], allocoff);
476 bp += off;
477 allocoff -= off;
478 erroff -= off;
493 int ii, off;
511 off = genasm_frinit(bp, umem_tmem_off, retoff, erroff,
513 bp += off;
514 erroff -= off;
515 rbufoff -= off;
518 off = genasm_firstcache(bp, umem_alloc_sizes[0], rbufoff);
519 bp += off;
520 erroff -= off;
521 rbufoff -= off;
525 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], rbufoff);
526 bp += off;
527 rbufoff -= off;
528 erroff -= off;