Lines Matching defs:sp
856 // if current sp is already near the lower end of page 101, and we need to
861 // The following code works by adjusting sp first, then accessing the "bottom"
877 address sp;
886 // sp might be slightly above current stack pointer; if that's the case, we
890 sp = (address)&sp;
892 if (sp > bottom) {
893 size = sp - bottom;
3816 struct sched_param sp;
3820 if (pthread_getschedparam(self, &policy, &sp) != 0)
3823 sp.sched_priority = newpri;
3824 if (pthread_setschedparam(self, policy, &sp) != 0)
3845 struct sched_param sp;
3847 pthread_getschedparam(pthread_self(), &policy, &sp);
3848 *priority_ptr = sp.sched_priority;