Lines Matching defs:tobj
2420 vm_object_t obj, tobj, lobj;
2445 for (lobj = tobj = obj; tobj; tobj = tobj->backing_object) {
2446 if (tobj != obj) {
2447 VM_OBJECT_RLOCK(tobj);
2448 kve->kve_offset += tobj->backing_object_offset;
2452 lobj = tobj;
2538 vm_object_t obj, tobj;
2561 for (tobj = obj;; tobj = tobj->backing_object) {
2562 m = vm_page_find_least(tobj, pindex);
2571 if (tobj->backing_object == NULL)
2573 pindex += OFF_TO_IDX(tobj->
2612 vm_object_t lobj, nobj, obj, tobj;
2652 for (tobj = obj; tobj != NULL;
2653 tobj = tobj->backing_object) {
2654 VM_OBJECT_RLOCK(tobj);
2655 kve->kve_offset += tobj->backing_object_offset;
2656 lobj = tobj;
2665 for (tobj = obj; tobj != NULL; tobj = nobj) {
2666 nobj = tobj->backing_object;
2667 if (tobj != obj && tobj != lobj)
2668 VM_OBJECT_RUNLOCK(tobj);