Lines Matching refs:temp
327 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp);
328 p = bufprint(temp, end, "%s = %s\n", pair->key, pair->value);
329 if (fwrite(temp, p - temp, 1, fp) != 1) {
490 char temp[16];
491 snprintf(temp, sizeof temp, "%d", value);
492 iniFile_setValue(f, key, temp);
498 char temp[32];
499 snprintf(temp, sizeof temp, "%" PRId64, value);
500 iniFile_setValue(f, key, temp);
506 char temp[32];
507 snprintf(temp, sizeof temp, "%g", value);
508 iniFile_setValue(f, key, temp);
520 char temp[32];
540 snprintf(temp, sizeof temp, "%" PRId64 "%c", size/divisor, suffix);
542 snprintf(temp, sizeof temp, "%" PRId64, size);
544 iniFile_setValue(f, key, temp);