Lines Matching refs:off

318 genasm_malinit(uint8_t *bp, uint32_t off, uint32_t ep, uint32_t csize)  in genasm_malinit()  argument
328 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off)); in genasm_malinit()
334 genasm_frinit(uint8_t *bp, uint32_t off, uint32_t dp, uint32_t ep, uint32_t mc) in genasm_frinit() argument
346 bcopy(&off, bp + PTC_FRINI_SOFF, sizeof (off)); in genasm_frinit()
448 int ii, off; in genasm_malloc() local
466 off = genasm_malinit(bp, umem_tmem_off, erroff, in genasm_malloc()
468 bp += off; in genasm_malloc()
469 allocoff -= off; in genasm_malloc()
470 erroff -= off; in genasm_malloc()
473 off = genasm_firstcache(bp, umem_alloc_sizes[0], allocoff); in genasm_malloc()
474 bp += off; in genasm_malloc()
475 allocoff -= off; in genasm_malloc()
476 erroff -= off; in genasm_malloc()
480 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], allocoff); in genasm_malloc()
481 bp += off; in genasm_malloc()
482 allocoff -= off; in genasm_malloc()
483 erroff -= off; in genasm_malloc()
498 int ii, off; in genasm_free() local
516 off = genasm_frinit(bp, umem_tmem_off, retoff, erroff, in genasm_free()
518 bp += off; in genasm_free()
519 erroff -= off; in genasm_free()
520 rbufoff -= off; in genasm_free()
523 off = genasm_firstcache(bp, umem_alloc_sizes[0], rbufoff); in genasm_free()
524 bp += off; in genasm_free()
525 erroff -= off; in genasm_free()
526 rbufoff -= off; in genasm_free()
530 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], rbufoff); in genasm_free()
531 bp += off; in genasm_free()
532 rbufoff -= off; in genasm_free()
533 erroff -= off; in genasm_free()