Lines Matching refs:off
315 * Construct the initial part of malloc. off contains the offset from curthread
320 genasm_malinit(uint8_t *bp, uint32_t off, uint32_t ep, uint32_t csize)
330 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off));
336 genasm_frinit(uint8_t *bp, uint32_t off, uint32_t dp, uint32_t ep, uint32_t mcs)
348 bcopy(&off, bp + PTC_FRINI_SOFF, sizeof (off));
452 int ii, off;
470 off = genasm_malinit(bp, umem_tmem_off, erroff,
472 bp += off;
473 allocoff -= off;
474 erroff -= off;
477 off = genasm_firstcache(bp, umem_alloc_sizes[0], allocoff);
478 bp += off;
479 allocoff -= off;
480 erroff -= off;
484 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], allocoff);
485 bp += off;
486 allocoff -= off;
487 erroff -= off;
502 int ii, off;
520 off = genasm_frinit(bp, umem_tmem_off, retoff, erroff,
522 bp += off;
523 erroff -= off;
524 rbufoff -= off;
527 off = genasm_firstcache(bp, umem_alloc_sizes[0], rbufoff);
528 bp += off;
529 erroff -= off;
530 rbufoff -= off;
534 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], rbufoff);
535 bp += off;
536 rbufoff -= off;
537 erroff -= off;