Lines Matching +full:clang +full:- +full:analyzer
21 * SPDX-License-Identifier: curl
41 /* for ABI-compatibility with previous versions */
47 /* for ABI-compatibility with previous versions */
72 while(length--) { in curl_easy_escape()
95 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 - 0x3f */
96 0, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 - 0x4f */
97 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 - 0x5f */
98 0, 10, 11, 12, 13, 14, 15 /* 0x60 - 0x66 */
102 #define onehex2dec(x) hextable[x - '0']
111 * - REJECT_NADA: accept everything
112 * - REJECT_CTRL: rejects control characters (byte codes lower than 32) in
114 * - REJECT_ZERO: rejects decoded zero bytes
147 alloc -= 3; in Curl_urldecode()
151 alloc--; in Curl_urldecode()
166 *olen = ns - *ostring; in Curl_urldecode()
213 * Converts binary input to lowercase hex-encoded ASCII output.
214 * Null-terminated.
222 while(len-- && (olen >= 3)) { in Curl_hexencode()
223 /* clang-tidy warns on this line without this comment: */ in Curl_hexencode()
224 /* NOLINTNEXTLINE(clang-analyzer-core.UndefinedBinaryOperatorResult) */ in Curl_hexencode()
228 olen -= 2; in Curl_hexencode()