Home
last modified time | relevance | path

Searched refs:temp_str (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/ntp/sntp/libopts/
H A Dsave.c830 char * temp_str; in optionSaveFile() local
836 temp_str = strchr(dir, '>'); in optionSaveFile()
837 if (temp_str == NULL) in optionSaveFile()
839 if (temp_str[1] == '>') in optionSaveFile()
841 flen = (temp_str - dir); in optionSaveFile()
844 temp_str = AGALOC(flen + 1, "flag search str"); in optionSaveFile()
845 memcpy(temp_str, dir, flen); in optionSaveFile()
846 temp_str[flen] = NUL; in optionSaveFile()
847 save_flags |= save_flags_str2mask(temp_str, SVFL_NONE); in optionSaveFile()
848 AGFREE(temp_str); in optionSaveFile()
/freebsd/contrib/bc/src/
H A Dprogram.c2241 char* temp_str; in bc_program_asciify() local
2277 temp_str = bc_vm_malloc(v->len + 1); in bc_program_asciify()
2288 temp_str[i] = (bc_program_string(p, num))[0]; in bc_program_asciify()
2292 temp_str[i] = (char) bc_program_asciifyNum(p, num); in bc_program_asciify()
2296 temp_str[v->len] = '\0'; in bc_program_asciify()
2300 idx = bc_program_addString(p, temp_str); in bc_program_asciify()
2301 free(temp_str); in bc_program_asciify()
2343 free(temp_str); in bc_program_asciify()