Searched refs:previous (Results 1 - 17 of 17) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dipc_mig.c619 ipc_port_t previous; local
640 ipc_port_nsrequest(port, 1, port, &previous);
643 assert(previous == IP_NULL);
724 ipc_port_t previous; local
735 ipc_port_nsrequest(port, mscount, port, &previous);
738 assert(previous == IP_NULL);
/macosx-10.5.8/xnu-1228.15.4/osfmk/ipc/
H A Dipc_port.c344 * Just cancels the previous request if notify is IP_NULL.
348 * returns previous with a ref (if non-null).
357 ipc_port_t previous; local
361 previous = port->ip_pdrequest;
365 *previousp = previous;
373 * Just cancels the previous request if notify is IP_NULL.
377 * returns previous with a ref (if non-null).
387 ipc_port_t previous; local
392 previous = port->ip_nsrequest;
405 *previousp = previous;
[all...]
H A Dipc_right.c248 * previous always gets IP_NULL. If notify is IP_NULL,
275 ipc_port_t previous; local
298 previous = ipc_right_dncancel_macro(
316 previous = ipc_right_dncancel_macro(space,
322 assert(previous == IP_NULL);
372 previous = IP_NULL;
383 *previousp = previous;
H A Dmach_port.c1355 ipc_port_t port, previous; local
1368 ipc_port_pdrequest(port, notify, &previous);
1371 *previousp = previous;
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dhw_exception.s151 tvecoff: stw r26,FM_BACKPTR(r1) ; Link back to the previous frame
247 lwz r4,SAVprev+4(r3) ; Pick up the previous savearea
255 stw r4,ACT_MACT_PCB(r8) ; Point to the previous savearea (or 0 if none)
758 lwz r4,SAVprev+4(r30) ; Get the previous save area
764 stw r4,ACT_MACT_PCB(r8) ; Save previous save area
971 stw r9,FM_BACKPTR(r1) ; Point back to previous stackptr
1042 lwz r9,SAVprev+4(r3) ; Get previous save area
1046 stw r9,ACT_MACT_PCB(r8) ; Point to previous context savearea
1191 lwz r24,SAVprev+4(r22) ; Pick up the previous area
1246 lwz r21,SAVprev+4(r24) ; (TEST/DEBUG) Get previous pointe
[all...]
H A Dsavearea_asm.s1090 lwz r29,SACprev+4(r2) ; and the previous
1092 lwz r0,SACvrswap+4(r31) ; Load the previous pool page vr conversion
1096 stw r29,SACprev+4(r28) ; Next guy points back to my previous
1195 ld r29,SACprev(r2) ; and the previous
1197 ld r0,SACvrswap(r31) ; Load the previous pool page vr conversion
1202 std r29,SACprev(r28) ; Next guy points back to my previous
1360 lwz r3,SACprev+4(r6) ; Get the previous pointer
1361 stw r3,SACprev+4(r2) ; The previous of my next points to my previous
1362 stw r2,SACnext+4(r3) ; The next of my previous point
[all...]
H A Dmisc_asm.s102 lwz r1,FM_ARG0(r1) ; Get previous stack frame
H A Dcswtch.s64 lwz r11,SAVprev+4(r3) /* Get the previous savearea */
162 lwz r11,SAVprev+4(r8) ; Get the previous of the switchee savearea
201 lwz r5,SAVprev+4(r10) ; Get the previous of this savearea
249 lwz r5,SAVprev+4(r10) ; Get the previous of this savearea
800 lwz r3,SAVprev+4(r14) ; Get the previous context
971 lwz r14,SAVprev+4(r30) ; Get the previous savearea
1199 lwz r4,SAVprev+4(r7) ; Pick up the previous area
1424 lwz r4,SAVprev+4(r30) ; Pick up the previous area
1429 lwz r5,SAVlevel(r4) ; Get the level associated with previous save
1562 lwz r3,SAVprev+4(r14) ; Get the previous contex
[all...]
H A Dhw_vm.s112 * 3) find mapping full path - finds all possible list previous elements
127 * 3) find mapping full path - finds all possible list previous elements
195 ; here so that we will know the previous elements so we can dequeue them
454 * 2) find mapping full path - finds all possible list previous elements
469 * 2) find mapping full path - finds all possible list previous elements
488 * 2) find mapping full path - finds all possible list previous elements
506 * 18) find mapping full path - finds all possible list previous elements
587 ; here so that we will know the previous elements so we can dequeue them
1614 eieio ; Synchronize all previous updates (mapInvPtexx didn't)
1623 crset cr1_eq ; cr1_eq <- previous lin
[all...]
H A Dmachine_routines_asm.s232 eieio ; Make sure of all previous accesses
331 eieio ; Make sure of all previous accesses
1995 lwz r5,ACT_PER_PROC(r4) ; Get the PerProc from the previous active thread
H A Dskiplists.s40 * successive list has only 1/F as many nodes on it as the previous, where F is the
86 * This is the fast call, that does not set up the previous-ptr vector or make
321 * This is the "full" call, that sets up a vector of ptrs to the previous node
322 * (or to the pmap, if there is no previous node) for each list that the mapping
398 mr r9,r3 ; current becomes previous
481 mr r9,r3 ; current becomes previous
536 * previous ptrs for each skip list. When called:
654 * find the mapping, which sets up the skipListPrev array with a vector of the previous
H A Dhw_lock.s1148 lwz r5,0(r1) ; Get previous save frame
1367 lwz r5,0(r1) ; Get previous save frame
H A Dlowmem_vectors.s72 ; always the case until the previous reset is handled (i.e., we have exited
3071 stw r30,quickfret+4(r29) ; Dequeue previous guy (really, it is ok to wait until after the release)
3344 std r30,quickfret(r29) ; Dequeue previous guy (really, it is ok to wait until after the release)
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dsysv_msg.c1175 struct msg *previous; local
1178 previous = NULL;
1213 if (previous == NULL) {
1226 previous;
1231 previous = msghdr;
/macosx-10.5.8/xnu-1228.15.4/osfmk/default_pager/
H A Ddp_memory_object.c112 * wait for previous writes to finish. (Because the kernel might
333 mach_port_t previous;
355 ipc_port_nsrequest(mem_obj, sync, mem_obj, &previous);
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dxsumas.s268 lwz r12,28(r3) ; load last word of previous chunk
/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dvm_user.c2444 ipc_port_t previous; local
2472 ipc_port_nsrequest(user_handle, 1, user_handle, &previous);

Completed in 152 milliseconds