/osnet-11/usr/src/lib/libc/sparc/threads/ |
H A D | machdep.c | 38 setup_top_frame(void *stk, size_t stksize, ulwp_t *ulwp) argument 47 stack = (((uintptr_t)stk + stksize) & ~(STACK_ALIGN - 1)) - 64 ulwp_t *ulwp, caddr_t stk, size_t stksize) 75 if ((stack = (uintptr_t)setup_top_frame(stk, stksize, ulwp)) == NULL) 63 setup_context(ucontext_t *ucp, void *(*func)(ulwp_t *), ulwp_t *ulwp, caddr_t stk, size_t stksize) argument
|
/osnet-11/usr/src/lib/libc/amd64/threads/ |
H A D | machdep.c | 37 setup_top_frame(void *stk, size_t stksize, ulwp_t *ulwp) argument 50 stack = (uint64_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); 69 ulwp_t *ulwp, caddr_t stk, size_t stksize) 87 if ((stack = setup_top_frame(stk, stksize, ulwp)) == NULL) 68 setup_context(ucontext_t *ucp, void *(*func)(ulwp_t *), ulwp_t *ulwp, caddr_t stk, size_t stksize) argument
|
/osnet-11/usr/src/lib/libkvm/common/ |
H A D | test.c | 430 uintptr_t stk[16]; local 454 if (kvm_read(cookie, t.t_pcb.val[1] + STACK_BIAS, stk, 455 sizeof (stk)) != sizeof (stk)) { 460 printf("%-16lx ", stk[i]);
|
/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | tparm.c | 255 STACK stk; local 286 free_stack(&stk); 290 init_stack(&stk); 291 push(&stk, 0); 298 free_stack(&stk); 309 op = tops(&stk); 379 free_stack(&stk); 404 (void) pop(&stk); 478 (void) pop(&stk); 482 xp = pop_char_p(&stk); [all...] |
/osnet-11/usr/src/lib/libc/i386/threads/ |
H A D | machdep.c | 48 setup_top_frame(void *stk, size_t stksize, ulwp_t *ulwp) argument 67 stack = (uint32_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); 88 ulwp_t *ulwp, caddr_t stk, size_t stksize) 132 if ((stack = setup_top_frame(stk, stksize, ulwp)) == NULL) 87 setup_context(ucontext_t *ucp, void *(*func)(ulwp_t *), ulwp_t *ulwp, caddr_t stk, size_t stksize) argument
|
/osnet-11/usr/src/lib/libc/port/i18n/ |
H A D | plural_parser.c | 73 while (stk->index > 0) \ 74 freeexpr(stk->ptr[--stk->index]); \ 75 free(stk->ptr); \ 91 stack_push(struct stack *stk, struct expr *exp) argument 99 stk->ptr[stk->index++] = exp; 100 if (stk->index == MAX_STACK_SIZE) { 111 stack_pop(struct stack *stk, argument 114 if (stk 162 setop1(unsigned int op, unsigned int num, struct stack *stk, unsigned int flag) argument 189 setop_reduce(unsigned int n, unsigned int op, struct stack *stk, struct expr *exp1, struct expr *exp2, struct expr *exp3) argument 246 reduce(struct expr **nexp, unsigned int n, struct expr *exp, struct stack *stk) argument 458 struct stack *stk, stkbuf; local [all...] |
/osnet-11/usr/src/lib/libast/common/misc/ |
H A D | stk.c | 31 * This is a rewrite of the stk library that uses sfio 42 #include <stk.h> 49 * struct stk 76 struct stk struct 86 static struct stk *stkcur; /* pointer to current stk */ 90 ((struct stk*)(((char*)(stream))+STK_HDRSIZE))) 152 register struct stk *sp = stream2stk(stream); 217 register struct stk *sp; 227 sp = (struct stk*)(d [all...] |
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | AttributeVerifier.java | 804 StreamTokenizer stk = new StreamTokenizer(rdr); 806 initIdChar(stk); 833 if ((tt = stk.nextToken()) != StreamTokenizer.TT_WORD) { 842 String id = stk.sval; 848 if ((tt = stk.nextToken()) != TT_EQUALS) { 866 if ((tt = stk.nextToken()) != StreamTokenizer.TT_WORD) { 878 new StreamTokenizer(new StringReader(stk.sval)); 883 !stk.sval.equals(sttk.sval)) { 907 if ((tt = stk.nextToken()) != StreamTokenizer.TT_EOF) { 926 if ((tt = stk 1784 parseValueList(StreamTokenizer stk, AttributeDescriptor attDesc, int baseLineno) argument [all...] |
/osnet-11/usr/src/lib/libast/common/comp/ |
H A D | setlocale.c | 2587 int stk[AST_LC_COUNT]; local 2614 single(stk[i], NiL, 0); 2641 single(stk[i], NiL, 0); 2644 stk[k++] = cat[i];
|
/osnet-11/usr/src/lib/libc/port/threads/ |
H A D | thr.c | 230 caddr_t stk = ulwp->ul_stk; local 238 ulwp->ul_stk = stk; 323 void *stk; local 394 if ((stk = mmap(NULL, mapsize, stackprot, 401 (void) munmap(stk, mapsize); 403 ulwp->ul_stk = stk; 406 ulwp->ul_stktop = (uintptr_t)stk + mapsize; 409 (void) mprotect(stk, guardsize, PROT_NONE); 558 _thrp_create(void *stk, size_t stksize, void *(*func)(void *), void *arg, argument 580 if ((stk || stksiz 721 thr_create(void *stk, size_t stksize, void *(*func)(void *), void *arg, long flags, thread_t *new_thread) argument 1746 _thrp_stksegment(ulwp_t *ulwp, stack_t *stk) argument 1756 thr_stksegment(stack_t *stk) argument [all...] |
/osnet-11/usr/src/lib/libast/common/regex/ |
H A D | reglib.h | 61 #include <stk.h> 304 Stk_t* stk; /* stack pointer */ member in struct:Vector_s 539 Stk_pos_t stk; /* exec stack pos */ member in struct:reglib_s
|