Lines Matching refs:off

326 genasm_malinit(uint8_t *bp, uint32_t off, uint32_t ep, uint32_t csize)  in genasm_malinit()  argument
336 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off)); in genasm_malinit()
342 genasm_frinit(uint8_t *bp, uint32_t off, uint32_t dp, uint32_t ep, uint32_t mcs) in genasm_frinit() argument
354 bcopy(&off, bp + PTC_FRINI_SOFF, sizeof (off)); in genasm_frinit()
458 int ii, off; in genasm_malloc() local
476 off = genasm_malinit(bp, umem_tmem_off, erroff, in genasm_malloc()
478 bp += off; in genasm_malloc()
479 allocoff -= off; in genasm_malloc()
480 erroff -= off; in genasm_malloc()
483 off = genasm_firstcache(bp, umem_alloc_sizes[0], allocoff); in genasm_malloc()
484 bp += off; in genasm_malloc()
485 allocoff -= off; in genasm_malloc()
486 erroff -= off; in genasm_malloc()
490 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], allocoff); in genasm_malloc()
491 bp += off; in genasm_malloc()
492 allocoff -= off; in genasm_malloc()
493 erroff -= off; in genasm_malloc()
508 int ii, off; in genasm_free() local
526 off = genasm_frinit(bp, umem_tmem_off, retoff, erroff, in genasm_free()
528 bp += off; in genasm_free()
529 erroff -= off; in genasm_free()
530 rbufoff -= off; in genasm_free()
533 off = genasm_firstcache(bp, umem_alloc_sizes[0], rbufoff); in genasm_free()
534 bp += off; in genasm_free()
535 erroff -= off; in genasm_free()
536 rbufoff -= off; in genasm_free()
540 off = genasm_gencache(bp, ii, umem_alloc_sizes[ii], rbufoff); in genasm_free()
541 bp += off; in genasm_free()
542 rbufoff -= off; in genasm_free()
543 erroff -= off; in genasm_free()