Searched refs:sp (Results 1 - 25 of 1151) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Ddecl7.C6 void* sp; member in struct:S
11 struct S s = { &s.sp };
12 return s.sp;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20040112-1.c5 ftn (char *sp) argument
11 *sp = 0xE8;
12 status = *(volatile char *) sp;
H A D20000629-1.c6 char c, *q, *sp; local
9 sp=p+1;
10 c=*sp;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/
H A Dc90-scanf-3.c11 foo (char **sp, wchar_t **lsp) argument
16 scanf ("%as", sp); /* { dg-warning "C" "%as" } */
18 scanf ("%a[bcd]", sp); /* { dg-warning "C" "%a[]" } */
H A Dext-4.c9 foo (char **sp, wchar_t **lsp) argument
15 scanf ("%as", sp);
17 scanf ("%a[bcd]", sp);
/openbsd-current/usr.bin/mail/
H A Dstrings.c56 struct strings *sp; local
63 for (sp = &stringdope[0]; sp < &stringdope[NSPACE]; sp++) {
64 if (sp->s_topFree == NULL && (STRINGSIZE << index) >= s)
66 if (sp->s_nleft >= s)
70 if (sp >= &stringdope[NSPACE])
72 if (sp->s_topFree == NULL) {
73 index = sp - &stringdope[0];
74 sp
94 struct strings *sp; local
116 struct strings *sp; local
[all...]
/openbsd-current/usr.bin/vi/vi/
H A Dv_screen.c32 v_screen(SCR *sp, VICMD *vp) argument
40 if (F_ISSET(sp, SC_COMEDIT)) {
41 msgq(sp, M_ERR,
50 if (TAILQ_NEXT(sp, q))
51 sp->nextdisp = TAILQ_NEXT(sp, q);
52 else if (TAILQ_FIRST(&sp->gp->dq) == sp) {
53 msgq(sp, M_ERR, "No other screen to switch to");
56 sp
[all...]
H A Dv_util.c36 v_eof(SCR *sp, MARK *mp) argument
41 v_emsg(sp, NULL, VIM_EOF);
43 if (db_last(sp, &lno))
46 v_emsg(sp, NULL, VIM_EOF);
48 msgq(sp, M_BERR, "Movement past the end-of-file");
59 v_eol(SCR *sp, MARK *mp) argument
64 v_emsg(sp, NULL, VIM_EOL);
66 if (db_get(sp, mp->lno, DBG_FATAL, NULL, &len))
69 v_emsg(sp, NULL, VIM_EOL);
71 msgq(sp, M_BER
82 v_nomove(SCR *sp) argument
94 v_sof(SCR *sp, MARK *mp) argument
109 v_sol(SCR *sp) argument
136 v_emsg(SCR *sp, char *p, vim_t which) argument
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_tag_mismatch_riscv64.S80 addi fp, sp, 256
87 sd x31, 248(sp)
88 sd x30, 240(sp)
89 sd x29, 232(sp)
90 sd x28, 224(sp)
91 sd x27, 216(sp)
92 sd x26, 208(sp)
93 sd x25, 200(sp)
94 sd x24, 192(sp)
95 sd x23, 184(sp)
[all...]
/openbsd-current/sys/lib/libkern/arch/arm/
H A D__aeabi_uldivmod.S40 sub sp, sp, #16
41 add r4, sp, #8
42 str r4, [sp]
44 add sp, sp, #8
/openbsd-current/gnu/llvm/compiler-rt/lib/orc/
H A Delfnix_tls.aarch64.S24 sub sp, sp, #REGISTER_SAVE_SPACE_SIZE
25 stp x29, x30, [sp, #16 * 1]
26 stp x27, x28, [sp, #16 * 2]
27 stp x25, x26, [sp, #16 * 3]
28 stp x23, x24, [sp, #16 * 4]
29 stp x21, x22, [sp, #16 * 5]
30 stp x19, x20, [sp, #16 * 6]
31 stp x17, x18, [sp, #16 * 7]
32 stp x15, x16, [sp, #1
[all...]
H A Dmacho_tlv.arm64.S23 sub sp, sp, #REGISTER_SAVE_SPACE_SIZE
24 stp x29, x30, [sp, #16 * 1]
25 stp x27, x28, [sp, #16 * 2]
26 stp x25, x26, [sp, #16 * 3]
27 stp x23, x24, [sp, #16 * 4]
28 stp x21, x22, [sp, #16 * 5]
29 stp x19, x20, [sp, #16 * 6]
30 stp x17, x18, [sp, #16 * 7]
31 stp x15, x16, [sp, #1
[all...]
/openbsd-current/lib/libc/gdtoa/
H A Dstrtold.c37 strtold(const char * __restrict s, char ** __restrict sp) argument
39 return strtod(s, sp);
/openbsd-current/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_trampoline_mips64.S24 daddiu $sp, $sp, -144
25 sd $ra, 136($sp)
27 sd $gp, 128($sp)
28 sd $a7, 120($sp)
29 sd $a6, 112($sp)
30 sd $a5, 104($sp)
31 sd $a4, 96($sp)
32 sd $a3, 88($sp)
33 sd $a2, 80($sp)
[all...]
H A Dxray_trampoline_mips.S27 addiu $sp, $sp, -36
28 sw $ra, 32($sp)
30 sw $a3, 28($sp)
31 sw $a2, 24($sp)
32 sw $a1, 20($sp)
33 sw $a0, 16($sp)
34 sdc1 $f14, 8($sp)
35 sdc1 $f12, 0($sp)
50 ldc1 $f12, 0($sp)
[all...]
/openbsd-current/usr.bin/vi/common/
H A Doptions_f.c33 f_altwerase(SCR *sp, OPTION *op, char *str, u_long *valp) argument
36 O_CLR(sp, O_TTYWERASE);
44 f_columns(SCR *sp, OPTION *op, char *str, u_long *valp) argument
48 msgq(sp, M_ERR, "Screen columns too small, less than %d",
63 msgq(sp, M_ERR, "Screen columns too large, greater than %d",
74 f_lines(SCR *sp, OPTION *op, char *str, u_long *valp) argument
78 msgq(sp, M_ERR, "Screen lines too small, less than %d",
93 msgq(sp, M_ERR, "Screen lines too large, greater than %d",
102 o_set(sp, O_LINES, 0, NULL, *valp);
104 sp
127 f_paragraph(SCR *sp, OPTION *op, char *str, u_long *valp) argument
141 f_print(SCR *sp, OPTION *op, char *str, u_long *valp) argument
155 f_readonly(SCR *sp, OPTION *op, char *str, u_long *valp) argument
172 f_recompile(SCR *sp, OPTION *op, char *str, u_long *valp) argument
189 f_reformat(SCR *sp, OPTION *op, char *str, u_long *valp) argument
199 f_section(SCR *sp, OPTION *op, char *str, u_long *valp) argument
213 f_secure(SCR *sp, OPTION *op, char *str, u_long *valp) argument
226 f_ttywerase(SCR *sp, OPTION *op, char *str, u_long *valp) argument
237 f_w300(SCR *sp, OPTION *op, char *str, u_long *valp) argument
254 f_w1200(SCR *sp, OPTION *op, char *str, u_long *valp) argument
271 f_w9600(SCR *sp, OPTION *op, char *str, u_long *valp) argument
288 f_window(SCR *sp, OPTION *op, char *str, u_long *valp) argument
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000801-1.c9 register char *sp; local
13 sp = bp + 3;
14 c = *sp;
15 *sp = *bp;
17 sp = bp + 1;
18 c = *sp;
19 *sp = *bp;
H A D960327-1.c10 char *sp = s + 12; local
18 while (*--sp == '0')
20 sprintf (sp + 1, "X");
/openbsd-current/sys/arch/alpha/alpha/
H A Ddebug.s73 lda t0, FRAME_SIZE*8(a4) /* what would sp have been? */
74 stq t0, FRAME_SP*8(a4) /* belatedly save sp for ddb view */
75 lda sp, -32(sp) /* set up stack frame */
76 stq ra, (32-8)(sp) /* save ra */
77 stq s0, (32-16)(sp) /* save s0 */
80 mov sp, s0
92 cmpule sp, t0, t1 /* sp <= debug_stack_bottom */
96 cmpule t0, sp, t
[all...]
/openbsd-current/sys/arch/alpha/include/
H A Dprofile.h68 lda sp, -FRAME_SIZE(sp)
70 stq at_reg, OFFSET_AT(sp)
71 stq v0, OFFSET_V0(sp)
72 stq t0, OFFSET_T0(sp)
73 stq t1, OFFSET_T1(sp)
74 stq t2, OFFSET_T2(sp)
75 stq t3, OFFSET_T3(sp)
76 stq t4, OFFSET_T4(sp)
77 stq t5, OFFSET_T5(sp)
[all...]
/openbsd-current/usr.bin/vi/ex/
H A Dex_visual.c35 ex_visual(SCR *sp, EXCMD *cmdp) argument
43 if (!O_ISSET(sp, O_OPEN)) {
44 msgq(sp, M_ERR,
50 sp->lno = cmdp->addr1.lno == 0 ? 1 : cmdp->addr1.lno;
71 sp->frp->lno = sp->lno;
72 sp->frp->cno = 0;
73 (void)nonblank(sp, sp->lno, &sp
[all...]
H A Dex_args.c43 ex_next(SCR *sp, EXCMD *cmdp) argument
51 if (cmdp->argc == 0 && (sp->cargv == NULL || sp->cargv[1] == NULL)) {
52 msgq(sp, M_ERR, "No more files to edit");
59 if (argv_exp0(sp,
60 cmdp, sp->cargv[1], strlen(sp->cargv[1])))
62 return (ex_edit(sp, cmdp));
64 return (ex_N_next(sp, cmdp));
68 if (file_m1(sp,
124 ex_N_next(SCR *sp, EXCMD *cmdp) argument
166 ex_prev(SCR *sp, EXCMD *cmdp) argument
211 ex_rew(SCR *sp, EXCMD *cmdp) argument
249 ex_args(SCR *sp, EXCMD *cmdp) argument
288 ex_buildargv(SCR *sp, EXCMD *cmdp, char *name) argument
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_vfork_riscv64.inc.S13 addi sp, sp, -16
15 sd ra, 8(sp)
18 ld ra, 8(sp)
20 addi sp, sp, 16
31 addi sp, sp, -16
33 sd x10, 8(sp)
38 // put old sp t
[all...]
/openbsd-current/games/sail/
H A Ddr_3.c44 struct ship *sp, *sq; /* r11, r10 */ local
53 foreachship(sp) {
58 if (sp->file->captain[0] || sp->file->dir == 0)
60 if (!sp->file->struck && windspeed && !snagged(sp)
61 && sp->specs->crew3) {
62 ta = maxturns(sp, &af);
63 ma = maxmove(sp, sp
184 struct ship *sp; local
195 struct ship *sp; local
219 step(int com, struct ship *sp, char *moved) argument
311 struct ship *sp; local
321 struct ship *sp; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dxbg.c4 foo (type *sp, int a) argument
9 t = sp[a];
10 i = (int)(type)sp[a];

Completed in 312 milliseconds

1234567891011>>