Lines Matching refs:tmp
29 char *tmp; in LLVMFuzzerTestOneInput() local
45 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
46 buf = string_alloc_buf(tmp, &gc); in LLVMFuzzerTestOneInput()
48 free(tmp); in LLVMFuzzerTestOneInput()
49 tmp = NULL; in LLVMFuzzerTestOneInput()
91 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
92 skip_leading_whitespace(tmp); in LLVMFuzzerTestOneInput()
93 free(tmp); in LLVMFuzzerTestOneInput()
94 tmp = NULL; in LLVMFuzzerTestOneInput()
97 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
98 chomp(tmp); in LLVMFuzzerTestOneInput()
99 free(tmp); in LLVMFuzzerTestOneInput()
100 tmp = NULL; in LLVMFuzzerTestOneInput()
103 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
105 rm_trailing_chars(tmp, tmp2); in LLVMFuzzerTestOneInput()
106 free(tmp); in LLVMFuzzerTestOneInput()
108 tmp = NULL; in LLVMFuzzerTestOneInput()
112 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
113 string_clear(tmp); in LLVMFuzzerTestOneInput()
114 free(tmp); in LLVMFuzzerTestOneInput()
115 tmp = NULL; in LLVMFuzzerTestOneInput()
118 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
119 buf_string_match_head_str(bufp, tmp); in LLVMFuzzerTestOneInput()
120 free(tmp); in LLVMFuzzerTestOneInput()
121 tmp = NULL; in LLVMFuzzerTestOneInput()
124 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
125 buf_string_compare_advance(bufp, tmp); in LLVMFuzzerTestOneInput()
126 free(tmp); in LLVMFuzzerTestOneInput()
127 tmp = NULL; in LLVMFuzzerTestOneInput()
132 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
133 if (strlen(tmp) > 0) { in LLVMFuzzerTestOneInput()
134 buf_parse(bufp, (int)generic_ssizet, tmp, strlen(tmp)); in LLVMFuzzerTestOneInput()
137 free(tmp); in LLVMFuzzerTestOneInput()
138 tmp = NULL; in LLVMFuzzerTestOneInput()
141 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
142 string_mod(tmp, fuzz_randomizer_get_int(0, 12312), in LLVMFuzzerTestOneInput()
146 free(tmp); in LLVMFuzzerTestOneInput()
147 tmp = NULL; in LLVMFuzzerTestOneInput()
150 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
153 string_replace_leading(tmp, match, (char)fuzz_randomizer_get_int(0, 255)); in LLVMFuzzerTestOneInput()
156 free(tmp); in LLVMFuzzerTestOneInput()
157 tmp = NULL; in LLVMFuzzerTestOneInput()
160 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
161 buf_write(bufp, tmp, strlen(tmp)); in LLVMFuzzerTestOneInput()
163 free(tmp); in LLVMFuzzerTestOneInput()
164 tmp = NULL; in LLVMFuzzerTestOneInput()
167 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
169 buf_write_prepend(bufp, tmp, strlen(tmp)); in LLVMFuzzerTestOneInput()
171 free(tmp); in LLVMFuzzerTestOneInput()
172 tmp = NULL; in LLVMFuzzerTestOneInput()
184 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
185 buf_catrunc(bufp, tmp); in LLVMFuzzerTestOneInput()
186 free(tmp); in LLVMFuzzerTestOneInput()
187 tmp = NULL; in LLVMFuzzerTestOneInput()
208 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
209 buf_puts(bufp, tmp); in LLVMFuzzerTestOneInput()
210 free(tmp); in LLVMFuzzerTestOneInput()
211 tmp = NULL; in LLVMFuzzerTestOneInput()
230 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
231 if (strlen(tmp) < BUF_SIZE_MAX) { in LLVMFuzzerTestOneInput()
232 buffer_list_push(buflistp, tmp); in LLVMFuzzerTestOneInput()
234 free(tmp); in LLVMFuzzerTestOneInput()
235 tmp = NULL; in LLVMFuzzerTestOneInput()
244 tmp = get_random_string(); in LLVMFuzzerTestOneInput()
246 buflistp, fuzz_randomizer_get_int(0, 1024), tmp); in LLVMFuzzerTestOneInput()
248 free(tmp); in LLVMFuzzerTestOneInput()
249 tmp = NULL; in LLVMFuzzerTestOneInput()