Lines Matching refs:temp
188 CNT_List local, *temp = &local; in __ghs_prof_dump_callcounts() local
191 CNT_List_packed local, *temp = &local; in __ghs_prof_dump_callcounts() local
196 CNT_List *temp; in __ghs_prof_dump_callcounts() local
201 temp = __cntFreeList__; in __ghs_prof_dump_callcounts()
205 temp = (CNT_List *) __ghs_calloc(sizeof(CNT_List), 16); in __ghs_prof_dump_callcounts()
210 static CNT_List_packed *temp = NULL; in __ghs_prof_dump_callcounts() local
212 if( temp == NULL ) in __ghs_prof_dump_callcounts()
213 temp = (CNT_List_packed *) __ghs_calloc(sizeof(CNT_List_packed), in __ghs_prof_dump_callcounts()
217 if (!temp) { in __ghs_prof_dump_callcounts()
232 temp->counts[i].pc = p->counts[i].pc; in __ghs_prof_dump_callcounts()
238 temp->counts[i].pc[0] = tpc->pc[0]; in __ghs_prof_dump_callcounts()
239 temp->counts[i].pc[1] = tpc->pc[1]; in __ghs_prof_dump_callcounts()
243 temp->counts[i].countPtr = (int *)(short)(*p->counts[i].countPtr); in __ghs_prof_dump_callcounts()
246 temp->counts[i].countPtr = (int *)(*p->counts[i].countPtr); in __ghs_prof_dump_callcounts()
248 temp->counts[i].countPtr = (int)(*p->counts[i].countPtr); in __ghs_prof_dump_callcounts()
255 if (HOSTIO_WRITE(fd, (void *) temp->counts, len) != len) { in __ghs_prof_dump_callcounts()
264 temp->next = __cntFreeList__; in __ghs_prof_dump_callcounts()
265 __cntFreeList__ = temp; in __ghs_prof_dump_callcounts()