/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | nto.c | 53 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 60 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 61 return (PRWord *) CONTEXT(t);
|
H A D | darwin.c | 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 50 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 51 return (PRWord *) CONTEXT(t);
|
H A D | dgux.c | 53 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 58 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 59 return (PRWord *) CONTEXT(t);
|
H A D | nec.c | 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 49 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 50 return (PRWord *) CONTEXT(t);
|
H A D | osf1.c | 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 50 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 51 return (PRWord *) CONTEXT(t);
|
H A D | qnx.c | 46 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 51 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 52 return (PRWord *) CONTEXT(t);
|
H A D | sony.c | 46 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 52 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 53 return (PRWord *) CONTEXT(t);
|
H A D | sunos4.c | 89 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 94 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 95 return (PRWord *) CONTEXT(t);
|
H A D | bsdi.c | 56 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 62 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 63 return (PRWord *) CONTEXT(t);
|
H A D | freebsd.c | 56 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 62 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 63 return (PRWord *) CONTEXT(t);
|
H A D | linux.c | 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 50 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 51 return (PRWord *) CONTEXT(t);
|
H A D | netbsd.c | 58 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 64 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 65 return (PRWord *) CONTEXT(t);
|
H A D | openbsd.c | 58 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 64 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 65 return (PRWord *) CONTEXT(t);
|
H A D | reliantunix.c | 49 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 54 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 55 return (PRWord *) CONTEXT(t);
|
H A D | rhapsody.c | 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 50 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 51 return (PRWord *) CONTEXT(t);
|
H A D | scoos.c | 49 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 54 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 55 return (PRWord *) CONTEXT(t);
|
H A D | hpux.c | 129 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 135 *np = sizeof(CONTEXT(t)) / sizeof(PRWord); 136 return (PRWord *) CONTEXT(t);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | prthinfo.c | 47 PR_IMPLEMENT(PRWord *) 58 PRWord *sp, *esp, *p0; 83 sp = (PRWord*) &stack_end; 84 esp = (PRWord*) _pr_top_of_task_stack; 88 sp = (PRWord*) PR_GetSP(t); 89 esp = (PRWord*) t->stack->stackTop; 92 ((sp > (PRWord*)t->stack->stackBottom) && 93 (sp <= (PRWord*)t->stack->stackTop))); 98 esp = (PRWord*) &stack_end; 100 esp = (PRWord*) PR_GetS [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w16gc.c | 41 PRWord * 56 return (PRWord *) CONTEXT(t);
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/msgc/include/ |
H A D | prgc.h | 67 PRWord flags, PRInt32 initialHeapSize, PRInt32 segmentSize, PRThreadScope scope); 238 PR_EXTERN(PRWord GCPTR *)PR_AllocMemory( 239 PRWord bytes, PRInt32 typeIndex, PRWord flags); 240 PR_EXTERN(PRWord GCPTR *)PR_AllocSimpleMemory( 241 PRWord bytes, PRInt32 typeIndex); 349 PRWord flags; /* trace flags (see below) */ 350 PRWord busyMemory; /* memory in use right now */ 351 PRWord freeMemory; /* memory free right now */ 352 PRWord allocMemor [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/lib/msgc/src/ |
H A D | prmsgc.c | 196 PRWord *hbits; 203 PRWord *hbits; 234 PRWord *q[MAX_SCAN_Q]; 252 static PRWord bigAllocBytes = 0; 277 ((PRWord) (((unsigned long)(_cbix) << TYPEIX_SHIFT) \ 284 (((PRWord *)(_p))[0] |= MARK_BIT) 286 (((PRWord *)(_p))[0] & MARK_BIT) 302 SET_BIT((_sp)->hbits, (((PRWord*)(_ph)) - ((PRWord*) (_sp)->base))) 305 CLEAR_BIT((_sp)->hbits, (((PRWord*)(_p [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/ |
H A D | btmisc.c | 88 PR_IMPLEMENT(PRWord *)
|
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/ |
H A D | xptcinvoke_mips.cpp | 96 if ((PRWord)d & 4) d++; 100 if ((PRWord)d & 4) d++; 104 if ((PRWord)d & 4) d++;
|
H A D | xptcstubs_mips.cpp | 98 if ((PRWord)ap & 4) ap++; 102 if ((PRWord)ap & 4) ap++; 106 if ((PRWord)ap & 4) ap++;
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/ |
H A D | os2gc.c | 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 65 return (PRWord *)&t->md.gcContext;
|