ppref             133 uvm/uvm_amap.c pp_getreflen(int *ppref, int offset, int *refp, int *lenp)
ppref             136 uvm/uvm_amap.c 	if (ppref[offset] > 0) {		/* chunk size must be 1 */
ppref             137 uvm/uvm_amap.c 		*refp = ppref[offset] - 1;	/* don't forget to adjust */
ppref             140 uvm/uvm_amap.c 		*refp = (ppref[offset] * -1) - 1;
ppref             141 uvm/uvm_amap.c 		*lenp = ppref[offset+1];
ppref             151 uvm/uvm_amap.c pp_setreflen(int *ppref, int offset, int ref, int len)
ppref             154 uvm/uvm_amap.c 		ppref[offset] = ref + 1;
ppref             156 uvm/uvm_amap.c 		ppref[offset] = (ref + 1) * -1;
ppref             157 uvm/uvm_amap.c 		ppref[offset+1] = len;
ppref             932 uvm/uvm_amap.c  	int stopslot, *ppref, lcv, prevlcv;
ppref             936 uvm/uvm_amap.c 	ppref = amap->am_ppref;
ppref             945 uvm/uvm_amap.c 		pp_getreflen(ppref, lcv, &ref, &len);
ppref             947 uvm/uvm_amap.c 			pp_setreflen(ppref, lcv, ref, curslot - lcv);
ppref             948 uvm/uvm_amap.c 			pp_setreflen(ppref, curslot, ref, len - (curslot -lcv));
ppref             954 uvm/uvm_amap.c 		pp_getreflen(ppref, prevlcv, &prevref, &prevlen);
ppref             974 uvm/uvm_amap.c 		pp_getreflen(ppref, lcv, &ref, &len);
ppref             976 uvm/uvm_amap.c 			pp_setreflen(ppref, lcv, ref, stopslot - lcv);
ppref             977 uvm/uvm_amap.c 			pp_setreflen(ppref, stopslot, ref,
ppref             985 uvm/uvm_amap.c 			pp_setreflen(ppref, prevlcv, ref, prevlen + len);
ppref             987 uvm/uvm_amap.c 			pp_setreflen(ppref, lcv, ref, len);