Home
last modified time | relevance | path

Searched refs:tmp_s (Results 1 – 9 of 9) sorted by relevance

/external/oss-fuzz/projects/apache-httpd/
Dfuzz_utils.c111 char *tmp_s = new_str; in LLVMFuzzerTestOneInput() local
112 ap_getword_conf2(pool, &tmp_s); in LLVMFuzzerTestOneInput()
115 ap_strcasecmp_match(tmp_s, new_dst); in LLVMFuzzerTestOneInput()
116 ap_strcasestr(tmp_s, new_dst); in LLVMFuzzerTestOneInput()
119 tmp_s = new_str; in LLVMFuzzerTestOneInput()
120 ap_get_list_item(pool, &tmp_s); in LLVMFuzzerTestOneInput()
121 tmp_s = new_str; in LLVMFuzzerTestOneInput()
122 ap_find_list_item(pool, &tmp_s, "kjahsdfkj"); in LLVMFuzzerTestOneInput()
123 ap_find_token(pool, tmp_s, "klsjdfk"); in LLVMFuzzerTestOneInput()
124 ap_find_last_token(pool, tmp_s, "sdadf"); in LLVMFuzzerTestOneInput()
[all …]
/external/musl/src/multibyte/
Dmbsnrtowcs.c8 const char *tmp_s; in mbsnrtowcs() local
19 tmp_s = s; in mbsnrtowcs()
30 n = s ? n - (s - tmp_s) : 0; in mbsnrtowcs()
/external/libvpx/test/
Dlpf_test.cc65 uint16_t tmp_s[kNumCoeffs]; in InitInput() local
70 tmp_s[j] = rnd->Rand16(); in InitInput()
76 tmp_s[j] = rnd->Rand16(); in InitInput()
78 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] + (limit - 1)); in InitInput()
80 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] - (limit - 1)); in InitInput()
95 tmp_s[j] = rnd->Rand16(); in InitInput()
97 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput()
98 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] + (limit - 1)); in InitInput()
100 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput()
101 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] - (limit - 1)); in InitInput()
[all …]
/external/scapy/scapy/contrib/
Dgtp.py406 tmp_s = s
407 while tmp_s:
408 tmp_len = orb(tmp_s[0]) + 1
409 if tmp_len > len(tmp_s):
410 …ing("APN prematured end of character-string (size=%i, remaining bytes=%i)" % (tmp_len, len(tmp_s)))
411 ret_s += tmp_s[1:tmp_len]
412 tmp_s = tmp_s[tmp_len:]
413 if len(tmp_s) :
/external/libaom/test/
Dlpf_test.cc62 uint16_t tmp_s[kNumCoeffs]; in InitInput() local
67 tmp_s[j] = rnd->Rand16(); in InitInput()
73 tmp_s[j] = rnd->Rand16(); in InitInput()
75 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] + (limit - 1)); in InitInput()
77 tmp_s[j] = static_cast<uint16_t>(tmp_s[j - 1] - (limit - 1)); in InitInput()
92 tmp_s[j] = rnd->Rand16(); in InitInput()
94 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput()
95 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] + (limit - 1)); in InitInput()
97 tmp_s[(j % 32) * 32 + j / 32] = static_cast<uint16_t>( in InitInput()
98 tmp_s[((j - 1) % 32) * 32 + (j - 1) / 32] - (limit - 1)); in InitInput()
[all …]
/external/scapy/scapy/layers/
Ddns.py209 tmp_s = s
212 while tmp_s:
213 tmp_len = orb(tmp_s[0]) + 1
214 if tmp_len > len(tmp_s):
215 …S RR TXT prematured end of character-string (size=%i, remaining bytes=%i)" % (tmp_len, len(tmp_s)))
216 ret_s += tmp_s[1:tmp_len]
217 tmp_s = tmp_s[tmp_len:]
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dutils.h97 string tmp_s = ""; in DebugString() local
99 StrAppend(&tmp_s, StrCat(DebugString(el), ", ")); in DebugString()
101 return StrCat("{", tmp_s.substr(0, tmp_s.length() - 2), "}"); in DebugString()
/external/mesa3d/src/util/format/
Du_format.c632 uint8_t *tmp_s = NULL; in util_format_translate() local
642 tmp_s = malloc(width * sizeof *tmp_s); in util_format_translate()
651 if (tmp_s) { in util_format_translate()
652 util_format_unpack_s_8uint(src_format, tmp_s, src_row, width); in util_format_translate()
653 util_format_pack_s_8uint(dst_format, dst_row, tmp_s, width); in util_format_translate()
660 free(tmp_s); in util_format_translate()
/external/clang/test/CodeGen/
Dbuiltins-x86.c38 signed short tmp_s; in f0() local