/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | tparm.c | 130 pop(STACK *st) in pop() function 402 (void) pop(&stk); in tparm() 476 (void) pop(&stk); in tparm() 544 vars[*cp++ - 'a'] = pop(&stk); in tparm() 549 (short)pop(&stk); in tparm() 619 op2 = pop(&stk); in tparm() 620 op = pop(&stk); in tparm() 624 op2 = pop(&stk); in tparm() 625 op = pop(&stk); in tparm() 629 op2 = pop(&stk); in tparm() [all …]
|
/illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/ |
H A D | p.42 | 1 /Asia/ { pop["Asia"] += $3 } 2 /Africa/ { pop["Africa"] += $3 } 3 END { print "Asian population in millions is", pop["Asia"] 4 print "African population in millions is", pop["Africa"] }
|
H A D | p.48 | 2 { pop[$4] += $3 } 3 END { for (c in pop) 4 print c ":" pop[c] | "sort" }
|
H A D | p.26 | 1 /Asia/ { pop = pop + $3; n = n + 1 } 3 "Asian countries in millions is", pop }
|
H A D | p.50 | 2 { pop[$4 ":" $1] += $3 } 3 END { for (cc in pop) 4 print cc ":" pop[cc] | "sort -t: +0 -1 +2nr" }
|
H A D | p.26a | 1 /Asia/ { pop += $3; ++n } 3 "Asian countries in millions is", pop }
|
/illumos-gate/usr/src/uts/i86pc/sys/ |
H A D | asm_misc.h | 77 pop %edi; \ 78 pop %esi; \ 79 pop %ebx; \ 81 pop %ebp
|
/illumos-gate/usr/src/cmd/streams/strcmd/ |
H A D | strchg.c | 118 short pop; /* TRUE if -p */ in main() local 133 error = fromfile = is_a_tty = pop = popall = popupto = push = FALSE; in main() 178 if (pop || push) in main() 187 if (fromfile || pop) in main() 199 pop = TRUE; in main() 224 if (!pop && (popall || popupto)) { in main() 238 if (fromfile || pop) { in main() 435 if (pop) { in main()
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | asm.S | 1473 pop %ebx 1474 pop %ebp 1514 pop %ebx 1515 pop %ebp 1588 pop %esi 1589 pop %edi 1590 pop %ebx 1591 pop %ebp 2180 pop %ebp 2223 pop %ebp [all …]
|
H A D | start_eltorito.S | 153 pop %si 154 pop %bp 262 pop %eax
|
/illumos-gate/usr/src/lib/iconv_modules/ja/common/ |
H A D | jfp_iconv_unicode.h | 460 char **pop, /* point pointer to output buf */ in write_unicode() argument 465 char *op = *pop; in write_unicode() 511 *pop = op; in write_unicode() 525 char **pop, /* point pointer to output buf */ in write_unicode() argument 530 char *op = *pop; in write_unicode() 590 *pop = op; in write_unicode() 604 char **pop, /* point pointer to output buf */ in write_unicode() argument 609 char *op = *pop; in write_unicode() 640 *pop = op; in write_unicode()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/ |
H A D | procopen.c | 414 int pop[2]; in procopen() local 440 pop[0] = pop[1] = -1; in procopen() 535 if ((flags & PROC_ORPHAN) && pipe(pop)) in procopen() 583 close(pop[0]); in procopen() 584 close(pop[1]); in procopen() 589 write(pop[1], &proc->pid, sizeof(proc->pid)); in procopen() 888 if (read(pop[0], &proc->pid, sizeof(proc->pid)) != sizeof(proc->pid)) in procopen() 890 close(pop[0]); in procopen() 930 if (pop[0] >= 0) in procopen() 931 close(pop[0]); in procopen() [all …]
|
/illumos-gate/usr/src/cmd/dc/ |
H A D | dc.c | 150 arg1 = pop(); in commnds() 152 arg2 = pop(); in commnds() 157 p = pop(); in commnds() 185 p = pop(); in commnds() 200 p = pop(); in commnds() 224 arg1 = pop(); in commnds() 228 arg2 = pop(); in commnds() 261 p = pop(); in commnds() 280 p = pop(); in commnds() 311 p = pop(); in commnds() [all …]
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/ |
H A D | sfclose.c | 52 { reg Sfio_t* pop; local 54 if(!(pop = (*_Sfstack)(f,NIL(Sfio_t*))) ) 57 if(sfclose(pop) < 0) 58 { (*_Sfstack)(f,pop);
|
/illumos-gate/usr/src/common/ctf/ |
H A D | ctf_open.c | 208 ulong_t pop[CTF_K_MAX + 1] = { 0 }; in init_types() local 280 pop[CTF_K_STRUCT]++; in init_types() 282 pop[tp->ctt_type]++; in init_types() 300 pop[kind]++; in init_types() 317 if ((err = ctf_hash_create(&fp->ctf_structs, pop[CTF_K_STRUCT])) != 0) in init_types() 320 if ((err = ctf_hash_create(&fp->ctf_unions, pop[CTF_K_UNION])) != 0) in init_types() 323 if ((err = ctf_hash_create(&fp->ctf_enums, pop[CTF_K_ENUM])) != 0) in init_types() 327 pop[CTF_K_INTEGER] + pop[CTF_K_FLOAT] + pop[CTF_K_FUNCTION] + in init_types() 328 pop[CTF_K_TYPEDEF] + pop[CTF_K_POINTER] + pop[CTF_K_VOLATILE] + in init_types() 329 pop[CTF_K_CONST] + pop[CTF_K_RESTRICT])) != 0) in init_types()
|
/illumos-gate/usr/src/lib/libc/i386/unwind/ |
H A D | unwind_frame.S | 44 movl (%ebp), %edx / pop first frame [ back to f1() ] 45 movl (%edx), %ebp / pop second frame [ back to f2() ]
|
/illumos-gate/usr/src/lib/libm/common/m9x/ |
H A D | __fex_i386.c | 1163 static void pop(ucontext_t *uap) in pop() function 1301 pop(uap); in __fex_st_result() 1312 pop(uap); in __fex_st_result() 1313 pop(uap); in __fex_st_result() 1345 pop(uap); in __fex_st_result() 1369 pop(uap); in __fex_st_result() 1385 pop(uap); in __fex_st_result() 1434 pop(uap); in __fex_st_result() 1470 pop(uap); in __fex_st_result() 1506 pop(uap); in __fex_st_result() [all …]
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pragma/ |
H A D | tst.libdepfullyconnected.ksh | 90 exit 1 if pop(@new) ne pop(@order);
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/font/devpost/charlib/ |
H A D | ~= | 24 pop 25 (\176) stringwidth pop neg size -.15 mul (\176\055) ashow
|
H A D | L1 | 24 pop 32 {currentfile picstr readhexstring pop} image
|
H A D | Lb | 24 pop 32 {currentfile picstr readhexstring pop} image
|
H A D | lc | 30 pop 38 (\357) false charpath flattenpath pathbbox 0 0 size bvbbox astore pop
|
H A D | lf | 30 pop 38 (\357) false charpath flattenpath pathbbox 0 0 size bvbbox astore pop
|
/illumos-gate/usr/src/lib/libadt_jni/com/sun/audit/ |
H A D | AuditSession.java | 154 state = (byte[])stateStack.pop(); in finalize() 239 sh = (byte[])stateStack.pop(); in popState()
|
/illumos-gate/usr/src/lib/libc/i386/gen/ |
H A D | strchr.S | 88 pop %esi / restore esi ebx as per calling cvntn 89 pop %ebx
|