Lines Matching refs:off

313 genasm_malinit(uint8_t *bp, uint32_t off, uint32_t ep, uint32_t csize)  in genasm_malinit()  argument
323 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off)); in genasm_malinit()
329 genasm_frinit(uint8_t *bp, uint32_t off, uint32_t dp, uint32_t ep, uint32_t mc) in genasm_frinit() argument
341 bcopy(&off, bp + PTC_FRINI_SOFF, sizeof (off)); in genasm_frinit()
443 int ii, off; in genasm_malloc() local
461 off = genasm_malinit(bp, umem_tmem_off, erroff, in genasm_malloc()
463 bp += off; in genasm_malloc()
464 allocoff -= off; in genasm_malloc()
465 erroff -= off; in genasm_malloc()
468 off = genasm_firstcache(bp, umem_alloc_sizes[0], allocoff); in genasm_malloc()
469 bp += off; in genasm_malloc()
470 allocoff -= off; in genasm_malloc()
471 erroff -= off; in genasm_malloc()
475 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], allocoff); in genasm_malloc()
476 bp += off; in genasm_malloc()
477 allocoff -= off; in genasm_malloc()
478 erroff -= off; in genasm_malloc()
493 int ii, off; in genasm_free() local
511 off = genasm_frinit(bp, umem_tmem_off, retoff, erroff, in genasm_free()
513 bp += off; in genasm_free()
514 erroff -= off; in genasm_free()
515 rbufoff -= off; in genasm_free()
518 off = genasm_firstcache(bp, umem_alloc_sizes[0], rbufoff); in genasm_free()
519 bp += off; in genasm_free()
520 erroff -= off; in genasm_free()
521 rbufoff -= off; in genasm_free()
525 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], rbufoff); in genasm_free()
526 bp += off; in genasm_free()
527 rbufoff -= off; in genasm_free()
528 erroff -= off; in genasm_free()