Lines Matching refs:tmp
208 const char *tmp = src;
216 nv.name = tmp;
217 seperator = strchr(tmp, ' ');
220 nv.valueEnd = tmp + strlen(tmp);
221 tmp = NULL;
224 tmp = seperator + 1;
242 } while (tmp != NULL);
251 char *tmp = strstr(buffer, name);
253 if (tmp == NULL) {
256 tmp = tmp + strlen(name);
257 while (tmp < endData && *tmp == ' ') {
258 tmp++;
260 if (tmp >= endData) {
263 if (*tmp == '=') {
266 tmp = strstr(tmp + 1, name);
267 } while (tmp < endData);
268 tmp++;
271 while (tmp < endData && *tmp == ' ') {
272 tmp++;
274 for (; i < (size_t)length; tmp++) {
275 if (tmp >= endData || *tmp == ' ' || *tmp == '\n' || *tmp == '\r' || *tmp == '\t') {
279 if (*tmp == '=') {
287 value[i++] = *tmp;
544 char *tmp = strstr(dp->d_name, includeExt);
545 if (tmp == NULL) {
548 if (strcmp(tmp, includeExt) != 0) {