Lines Matching refs:off

320 genasm_malinit(uint8_t *bp, uint32_t off, uint32_t ep, uint32_t csize)  in genasm_malinit()  argument
330 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off)); in genasm_malinit()
336 genasm_frinit(uint8_t *bp, uint32_t off, uint32_t dp, uint32_t ep, uint32_t mcs) in genasm_frinit() argument
348 bcopy(&off, bp + PTC_FRINI_SOFF, sizeof (off)); in genasm_frinit()
452 int ii, off; in genasm_malloc() local
470 off = genasm_malinit(bp, umem_tmem_off, erroff, in genasm_malloc()
472 bp += off; in genasm_malloc()
473 allocoff -= off; in genasm_malloc()
474 erroff -= off; in genasm_malloc()
477 off = genasm_firstcache(bp, umem_alloc_sizes[0], allocoff); in genasm_malloc()
478 bp += off; in genasm_malloc()
479 allocoff -= off; in genasm_malloc()
480 erroff -= off; in genasm_malloc()
484 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], allocoff); in genasm_malloc()
485 bp += off; in genasm_malloc()
486 allocoff -= off; in genasm_malloc()
487 erroff -= off; in genasm_malloc()
502 int ii, off; in genasm_free() local
520 off = genasm_frinit(bp, umem_tmem_off, retoff, erroff, in genasm_free()
522 bp += off; in genasm_free()
523 erroff -= off; in genasm_free()
524 rbufoff -= off; in genasm_free()
527 off = genasm_firstcache(bp, umem_alloc_sizes[0], rbufoff); in genasm_free()
528 bp += off; in genasm_free()
529 erroff -= off; in genasm_free()
530 rbufoff -= off; in genasm_free()
534 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], rbufoff); in genasm_free()
535 bp += off; in genasm_free()
536 rbufoff -= off; in genasm_free()
537 erroff -= off; in genasm_free()