Home
last modified time | relevance | path

Searched refs:pop (Results 1 – 25 of 121) sorted by relevance

12345

/titanic_51/usr/src/lib/libcurses/screen/
H A Dtparm.c56 * print pop() as in printf(3), as defined in the local
60 * %c print pop() like %c in printf(3)
61 * %l pop() a string address and push its length.
71 * %+ %- %* %/ %m arithmetic (%m is mod): push(pop() op pop())
72 * %& %| %^ bit operations: push(pop() op pop())
73 * %= %> %< logical operations: push(pop() op pop())
74 * %A %O logical AND, OR push(pop() o
130 pop(STACK *st) pop() function
[all...]
/titanic_51/usr/src/uts/i86pc/sys/
H A Dasm_misc.h79 pop %edi; \
80 pop %esi; \
81 pop %ebx; \
83 pop %ebp
/titanic_51/usr/src/cmd/streams/strcmd/
H A Dstrchg.c120 short pop; /* TRUE if -p */ in main() local
135 error = fromfile = is_a_tty = pop = popall = popupto = push = FALSE; in main()
172 case 'a': /* pop All */ in main()
180 if (pop || push) in main()
189 if (fromfile || pop) in main()
201 pop = TRUE; in main()
204 case 'u': /* pop Upto */ in main()
226 if (!pop && (popall || popupto)) { in main()
228 "%s: -p option must be used with -a or -u to pop modules\n", in main()
240 if (fromfile || pop) { in main()
[all...]
/titanic_51/usr/src/lib/iconv_modules/ja/common/
H A Djfp_iconv_unicode.h460 char **pop, /* point pointer to output buf */ in write_unicode() argument
465 char *op = *pop; in write_unicode()
510 /* update *pop and *poleft only on successful return */ 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()
589 /* update *pop and *poleft only on successful return */ 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()
[all...]
/titanic_51/usr/src/grub/grub-0.97/stage2/
H A Dasm.S1473 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
[all...]
H A Dstart_eltorito.S153 pop %si
154 pop %bp
262 pop %eax
/titanic_51/usr/src/contrib/ast/src/lib/libast/misc/
H A Dprocopen.c414 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[ in procopen()
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfclose.c52 { reg Sfio_t* pop; local
54 if(!(pop = (*_Sfstack)(f,NIL(Sfio_t*))) )
57 if(sfclose(pop) < 0)
58 { (*_Sfstack)(f,pop);
/titanic_51/usr/src/lib/libast/common/sfio/
H A Dsfclose.c52 { reg Sfio_t* pop; local
54 if(!(pop = (*_Sfstack)(f,NIL(Sfio_t*))) )
57 if(sfclose(pop) < 0)
58 { (*_Sfstack)(f,pop);
/titanic_51/usr/src/lib/libc/i386/unwind/
H A Dunwind_frame.s44 movl (%ebp), %edx / pop first frame [ back to f1() ]
45 movl (%edx), %ebp / pop second frame [ back to f2() ]
64 movl (%ebp), %ebp / pop out one frame
/titanic_51/usr/src/cmd/dc/
H A Ddc.c152 arg1 = pop(); in commnds()
154 arg2 = pop(); in commnds()
159 p = pop(); in commnds()
187 p = pop(); in commnds()
202 p = pop(); in commnds()
226 arg1 = pop(); in commnds()
230 arg2 = pop(); in commnds()
263 p = pop(); in commnds()
282 p = pop(); in commnds()
313 p = pop(); in commnds()
1242 pop(void) pop() function
[all...]
/titanic_51/usr/src/common/ctf/
H A Dctf_open.c207 ulong_t pop[CTF_K_MAX + 1] = { 0 }; in init_types() local
279 pop[CTF_K_STRUCT]++; in init_types()
281 pop[tp->ctt_type]++; in init_types()
299 pop[kind]++; in init_types()
316 if ((err = ctf_hash_create(&fp->ctf_structs, pop[CTF_K_STRUCT])) != 0) in init_types()
319 if ((err = ctf_hash_create(&fp->ctf_unions, pop[CTF_K_UNION])) != 0) in init_types()
322 if ((err = ctf_hash_create(&fp->ctf_enums, pop[CTF_K_ENUM])) != 0) in init_types()
326 pop[CTF_K_INTEGER] + pop[CTF_K_FLOAT] + pop[CTF_K_FUNCTIO in init_types()
[all...]
/titanic_51/usr/src/lib/libm/common/m9x/
H A D__fex_i386.c1162 /* pop the saved stack */
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(ua in __fex_st_result()
[all...]
/titanic_51/usr/src/cmd/dtrace/test/tst/common/pragma/
H A Dtst.libdepfullyconnected.ksh90 exit 1 if pop(@new) ne pop(@order);
/titanic_51/usr/src/psm/stand/bootblks/ufs/i386/
H A Dmboot.S143 pop cx /* restore saved cx */
222 pop bx /* restore partition pointer */
248 pop bx /* restore partition pointer */
327 pop si /* and pass partition pointer ds:si */
/titanic_51/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 DL124 pop
32 {currentfile picstr readhexstring pop} image
H A DLb24 pop
32 {currentfile picstr readhexstring pop} image
H A Dlf30 pop
38 (\357) false charpath flattenpath pathbbox 0 0 size bvbbox astore pop
H A Drc30 pop
38 (\357) false charpath flattenpath pathbbox 0 0 size bvbbox astore pop
H A Drf30 pop
38 (\357) false charpath flattenpath pathbbox 0 0 size bvbbox astore pop
H A Dlc30 pop
38 (\357) false charpath flattenpath pathbbox 0 0 size bvbbox astore pop
/titanic_51/usr/src/lib/libadt_jni/com/sun/audit/
H A DAuditSession.java76 private Stack stateStack = new Stack(); // for push/pop
154 state = (byte[])stateStack.pop(); in finalize()
239 sh = (byte[])stateStack.pop(); in popState()
/titanic_51/usr/src/lib/libc/i386/gen/
H A Dstrchr.s88 pop %esi / restore esi ebx as per calling cvntn
89 pop %ebx
110 pop %esi
111 pop %ebx
/titanic_51/usr/src/common/crypto/modes/amd64/
H A Dgcm_intel.s108 * The CLTS and STTS macros push and pop P1 (%rdi) already.
114 pop %rsi
150 * If CR0_TS was not set above, pop %xmm0 - %xmm10 off stack,
172 pop %rbp

12345