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

12345678

/barrelfish-2018-10-04/lib/compiler-rt/builtins/arm/
H A Daeabi_idivmod.S22 sub sp, sp, #4
23 mov r2, sp
25 ldr r1, [sp]
26 add sp, sp, #4
H A Daeabi_uidivmod.S23 sub sp, sp, #4
24 mov r2, sp
26 ldr r1, [sp]
27 add sp, sp, #4
H A Daeabi_ldivmod.S23 sub sp, sp, #16
24 add r12, sp, #8
25 str r12, [sp]
27 ldr r2, [sp, #8]
28 ldr r3, [sp, #12]
29 add sp, sp, #16
H A Daeabi_uldivmod.S23 sub sp, sp, #16
24 add r12, sp, #8
25 str r12, [sp]
27 ldr r2, [sp, #8]
28 ldr r3, [sp, #12]
29 add sp, sp, #16
H A Dsync_synchronize.S26 stmfd sp!, {r7, lr}
27 add r7, sp, #0
29 ldmfd sp!, {r7, pc}
/barrelfish-2018-10-04/lib/libc/riscv/sys/
H A Dcerror.S39 addi sp, sp, -16
40 sd a0, 0(sp)
41 sd ra, 8(sp)
43 ld a1, 0(sp)
44 ld ra, 8(sp)
48 addi sp, sp, 16
/barrelfish-2018-10-04/lib/libc/aarch64/sys/
H A Dcerror.S33 sub sp, sp, #16
34 stp x0, lr, [sp]
36 ldp x1, lr, [sp]
40 add sp, sp, #16
/barrelfish-2018-10-04/lib/phoenix/
H A Dscheduler.c39 static int map_fill_strand(sched_policy* sp, int thr);
40 static int map_fill_core(sched_policy* sp, int thr);
41 static int map_fill_chip(sched_policy* sp, int thr);
47 int (*map)(sched_policy* sp, int thr_idx);
65 void sched_policy_put(sched_policy* sp) argument
73 int sched_thr_to_cpu(sched_policy* sp, int thr) argument
75 return sp->map(sp, thr);
78 static int map_fill_strand(sched_policy* sp, int thr) argument
80 int num_cpus = sp
84 map_fill_core(sched_policy* sp, int thr) argument
101 map_fill_chip(sched_policy* sp, int thr) argument
[all...]
H A Dscheduler.h43 void sched_policy_put(sched_policy* sp);
44 int sched_thr_to_cpu(sched_policy* sp, int thr);
/barrelfish-2018-10-04/lib/libc/arm/gen/
H A Dalloca.S43 sub sp, sp, r0 /* Adjust the stack pointer */
44 mov r0, sp /* r0 = base of new space */
/barrelfish-2018-10-04/lib/libc/gdtoa/
H A Dmachdep_ldisQ.c46 strtold_l(const char * __restrict s, char ** __restrict sp, locale_t locale) argument
50 strtorQ_l(s, sp, FLT_ROUNDS, &result, locale);
H A Dmachdep_ldisd.c45 strtold_l(const char * __restrict s, char ** __restrict sp, locale_t locale) argument
48 return strtod_l(s, sp, locale);
H A Dmachdep_ldisx.c46 strtold_l(const char * __restrict s, char ** __restrict sp, locale_t locale) argument
51 strtorx_l(s, sp, FLT_ROUNDS, &result, locale);
/barrelfish-2018-10-04/lib/gdtoa/
H A Dstrtopd.c36 strtopd(s, sp, d) char *s; char **sp; double *d;
38 strtopd(CONST char *s, char **sp, double *d)
51 k = strtodg(s, sp, fpi, &exp, bits);
H A Dstrtof.c38 strtof_l(s, sp, loc) CONST char *s; char **sp; locale_t loc;
40 strtof_l(CONST char *s, char **sp, locale_t loc)
54 k = strtodg_l(s, sp, fpi, &exp, bits, loc);
87 strtof(s, sp) CONST char *s; char **sp;
89 strtof(CONST char *s, char **sp)
92 return strtof_l(s, sp, __get_locale());
/barrelfish-2018-10-04/kernel/arch/armv8/
H A Dsysreg.S29 sub sp, sp, #96
31 stp x0, x1, [sp, #16 * 0]
32 stp x2, x3, [sp, #16 * 1]
33 stp x4, x5, [sp, #16 * 2]
34 stp x6, x7, [sp, #16 * 3]
35 stp x8, x9, [sp, #16 * 4]
36 stp x10, x11, [sp, #16 * 5]
84 ldp x0, x1, [sp], #16
85 ldp x2, x3, [sp], #1
[all...]
H A Dsmc_hvc.S29 ldr x4, [sp]
40 ldr x4, [sp]
/barrelfish-2018-10-04/lib/cxx/unwind/
H A DDwarfInstructions.hpp228 pint_t *sp = stack; local
229 *(++sp) = initialStackValue;
233 for (pint_t *t = sp; t > stack; --t) {
234 fprintf(stderr, "sp[] = 0x%llX\n", (uint64_t)(*t));
246 *(++sp) = value;
253 value = *sp--;
254 *(++sp) = addressSpace.getP(value);
263 *(++sp) = value;
272 *(++sp) = (pint_t)svalue;
281 *(++sp)
[all...]
/barrelfish-2018-10-04/lib/barrelfish/include/target/x86_32/
H A Dregisters_target.h32 uint32_t *sp = (uint32_t *)stack; local
33 sp[0] = 0; // fake return address
34 sp[1] = arg1;
35 sp[2] = arg2;
36 sp[3] = arg3;
37 sp[4] = arg4;
/barrelfish-2018-10-04/lib/libc/amd64/gen/
H A Dsignalcontext.c49 uint64_t sp; local
61 sp = (ucp->uc_mcontext.mc_rsp - 128 - sizeof(ucontext_t)) & ~15UL;
62 sig_uc = (ucontext_t *)sp;
64 sp = (sp - sizeof(siginfo_t)) & ~15UL;
65 sig_si = (siginfo_t *)sp;
68 sp -= 3 * sizeof(uint64_t);
69 args = (uint64_t *)sp;
73 sp -= 16;
88 ucp->uc_mcontext.mc_rbp = (register_t)sp;
[all...]
/barrelfish-2018-10-04/lib/libc/aarch64/gen/
H A Dsetjmp.S38 sub sp, sp, #16
39 stp x0, lr, [sp]
47 ldp x0, lr, [sp]
48 add sp, sp, #16
52 mov x9, sp
78 sub sp, sp, #32
79 stp x0, lr, [sp]
[all...]
/barrelfish-2018-10-04/lib/tzcode/stdtime/
H A Dlocaltime.c184 static void gmtload(struct state * sp);
210 const struct state * sp, struct tm * tmp);
216 static int typesequiv(const struct state * sp, int a, int b);
217 static int tzload(const char * name, struct state * sp,
219 static int tzparse(const char * name, struct state * sp,
300 struct state * sp = lclptr; local
313 if (sp == NULL) {
321 for (i = 0; i < sp->typecnt; ++i) {
322 const struct ttinfo * const ttisp = &sp->ttis[sp
1218 gmtload(struct state *const sp) argument
1343 struct state * sp; local
1840 const struct state * sp; local
2043 const struct state * sp; local
2189 struct state * sp; local
[all...]
/barrelfish-2018-10-04/tools/usbboot/
H A Dtrusted.S5 stmfd sp!, {r4-r12,lr}
12 ldmfd sp!, {r4-r12,lr}
/barrelfish-2018-10-04/lib/libc/riscv/gen/
H A Dsetjmp.S41 addi sp, sp, -(2 * 8)
42 sd a0, 0(sp)
43 sd ra, 8(sp)
51 ld a0, 0(sp)
52 ld ra, 8(sp)
53 addi sp, sp, (2 * 8)
59 sd sp, (1 * 8)(a0)
105 addi sp, s
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/asm/
H A Dppc64-mont.pl83 $sp="r1";
142 # sp----------->+-------------------------------+
143 # | saved sp |
198 subf $tp,$tp,$sp ; $sp-$tp
200 subf $tp,$sp,$tp ; $tp-$sp
201 $STUX $sp,$sp,$tp ; alloca
203 $PUSH r14,`2*$SIZE_T`($sp)
[all...]

Completed in 107 milliseconds

12345678