Lines Matching refs:temp
214 void* temp;
223 temp = MALLOC(*count * size, MTAG);
224 if (temp == NULL)
230 memcpy(temp, buffer, *count * size);
232 swap_byte_order(temp, *count, size);
235 temp = buffer;
237 *count = fwrite(temp, size, *count, impl->value);
240 FREE(temp);
241 temp = NULL;
391 LCHAR* temp;
394 temp = fgets(string, n, impl->value);
396 *result = temp;
397 if (temp == NULL && ferror(impl->value))