Lines Matching defs:temp
130 TokenList temp, tt = (TokenList) psw_calloc(sizeof(TokenListRec), 1);
136 temp = ll;
137 while((temp->next != NULL) && strcmp((char *)(temp->token->val), (char *)(t->val)))
138 temp = temp->next;
139 tt->next = temp->next;
140 temp->next = tt;
1918 char *temp;
1919 if ((temp = malloc((unsigned) s)) == NULL)
1921 return(temp);
1925 char *temp;
1926 if ((temp = calloc((unsigned) n, (unsigned) s)) == NULL)
1928 return(temp);