Searched defs:sp (Results 1 - 10 of 10) sorted by relevance

/system/core/libpixelflinger/tinyutils/
H A Dsmartpointer.h22 inline bool operator _op_ (const sp<T>& o) const { \
29 inline bool operator _op_ (const sp<U>& o) const { \
40 class sp class in namespace:android
43 inline sp() : m_ptr(0) { } function in class:android::sp
45 sp(T* other);
46 sp(const sp<T>& other);
47 template<typename U> sp(U* other);
48 template<typename U> sp(const sp<
95 sp<T>::sp(const sp<T>& other) function in class:android::sp
102 sp<T>::sp(U* other) : m_ptr(other) function in class:android::sp
108 sp<T>::sp(const sp<U>& other) function in class:android::sp
[all...]
/system/core/toolbox/
H A Drenice.c49 struct sched_param sp; local
72 sched_getparam(pid, &sp);
73 printf("RT prio: %d (of %d to %d)\n", sp.sched_priority,
122 struct sched_param sp = { .sched_priority = prio }; local
125 ret = sched_setscheduler(pid, SCHED_RR, &sp);
/system/core/debuggerd/arm/
H A Dmachine.c248 unsigned int sp = r.ARM_sp; local
250 p = sp - 64;
251 if (p > sp)
353 " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n",
/system/core/sh/
H A Dmemalloc.c131 struct stack_block *sp; local
137 sp = ckmalloc(sizeof(struct stack_block) - MINSIZE + blocksize);
138 sp->prev = stackp;
139 stacknxt = sp->space;
141 stackp = sp;
178 struct stack_block *sp; local
183 sp = stackp;
184 stackp = sp->prev;
185 ckfree(sp);
211 struct stack_block *sp; local
[all...]
H A Dinput.c388 struct strpush *sp; local
393 sp = ckmalloc(sizeof (struct strpush));
394 sp->prev = parsefile->strpush;
395 parsefile->strpush = sp;
397 sp = parsefile->strpush = &(parsefile->basestrpush);
398 sp->prevstring = parsenextc;
399 sp->prevnleft = parsenleft;
400 sp->prevlleft = parselleft;
401 sp->ap = (struct alias *)ap;
412 struct strpush *sp local
[all...]
H A Deval.c353 struct strlist *sp; local
367 for (sp = arglist.list ; sp ; sp = sp->next) {
368 setvar(n->nfor.var, sp->text, 0);
684 struct strlist *sp; local
747 for (sp = arglist.list ; sp ; sp
1201 struct strlist *sp; local
[all...]
H A Djobs.c1046 struct procstat *sp; local
1066 for (sp = jp->ps ; sp < jp->ps + jp->nprocs ; sp++) {
1067 if (sp->pid == -1)
1069 if (sp->pid == pid) {
1070 TRACE(("Job %d: changing status of proc %d from 0x%x to 0x%x\n", jp - jobtab + 1, pid, sp->status, status));
1071 sp->status = status;
1074 if (sp->status == -1)
1076 else if (WIFSTOPPED(sp
[all...]
H A Dvar.c367 struct strlist *sp; local
370 for (sp = cmdenviron ; sp ; sp = sp->next) {
371 if (strequal(sp->text, name))
372 return strchr(sp->text, '=') + 1;
H A Dexpand.c136 struct strlist *sp; local
161 sp = (struct strlist *)stalloc(sizeof (struct strlist));
162 sp->text = p;
163 *exparg.lastp = sp;
164 exparg.lastp = &sp->next;
947 struct strlist *sp; local
961 sp = (struct strlist *)stalloc(sizeof *sp);
962 sp->text = start;
963 *arglist->lastp = sp;
1072 struct strlist *sp; local
1254 struct strlist *sp; local
1275 struct strlist *sp; local
[all...]
/system/core/libcutils/
H A Dtztime.c182 static void gmtload P((struct state * sp));
186 struct tm * tmp, const struct state *sp));
197 long, struct tm *, const struct state* sp)),
198 long offset, const struct state * sp));
201 long, struct tm*, const struct state* sp)),
202 long offset, int * okayp, const struct state * sp));
204 struct tm * (*funcp) P((const time_t*, long, struct tm*,const struct state *sp)),
206 const struct state *sp));
208 const struct state * sp, struct tm * tmp));
213 static int tzload P((const char * name, struct state * sp,
311 tzload(const char *name, struct state * const sp, const int doextend) argument
[all...]

Completed in 172 milliseconds