Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 465) sorted by relevance

12345678910>>...19

/curl/lib/
H A Dcurl_ctype.h33 #define ISLOWPRINT(x) (((x) >= 9) && ((x) <= 0x0d)) argument
35 #define ISPRINT(x) (ISLOWPRINT(x) || (((x) >= ' ') && ((x) <= 0x7e))) argument
36 #define ISGRAPH(x) (ISLOWPRINT(x) || (((x) > ' ') && ((x) <= 0x7e))) argument
37 #define ISCNTRL(x) (ISLOWCNTRL(x) || IS7F(x)) argument
38 #define ISALPHA(x) (ISLOWER(x) || ISUPPER(x)) argument
39 #define ISXDIGIT(x) (ISDIGIT(x) || ISLOWHEXALHA(x) || ISUPHEXALHA(x)) argument
40 #define ISALNUM(x) (ISDIGIT(x) || ISLOWER(x) || ISUPPER(x)) argument
41 #define ISUPPER(x) (((x) >= 'A') && ((x) <= 'Z')) argument
42 #define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z')) argument
45 #define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d))) argument
[all …]
H A Dcurl_setup_once.h195 # define sclose(x) closesocket((x)) argument
197 # define sclose(x) CloseSocket((x)) argument
199 # define sclose(x) close_s((x)) argument
201 # define sclose(x) lwip_close((x)) argument
203 # define sclose(x) close((x)) argument
254 #define BIT(x) bool x argument
257 #define BIT(x) bit x:1 argument
282 #define DEBUGF(x) x argument
294 #define DEBUGASSERT(x) assert(x) argument
307 #define SET_SOCKERRNO(x) (WSASetLastError((int)(x))) argument
[all …]
H A Darpa_telnet.h59 #define CURL_TELOPT(x) telnetoptions[x] argument
61 #define CURL_TELOPT(x) "" argument
66 #define CURL_TELOPT_OK(x) ((x) <= CURL_TELOPT_MAXIMUM) argument
106 #define CURL_TELCMD_OK(x) ( ((unsigned int)(x) >= CURL_TELCMD_MINIMUM) && \ argument
107 ((unsigned int)(x) <= CURL_TELCMD_MAXIMUM) )
110 #define CURL_TELCMD(x) telnetcmds[(x)-CURL_TELCMD_MINIMUM] argument
112 #define CURL_TELCMD(x) "" argument
H A Dconncache.h56 #define CONNCACHE_LOCK(x) \ argument
58 if((x)->share) { \
59 Curl_share_lock((x), CURL_LOCK_DATA_CONNECT, \
61 DEBUGASSERT(!(x)->state.conncache_lock); \
62 (x)->state.conncache_lock = TRUE; \
66 #define CONNCACHE_UNLOCK(x) \ argument
68 if((x)->share) { \
69 DEBUGASSERT((x)->state.conncache_lock); \
75 #define CONNCACHE_LOCK(x) if((x)->share) \ argument
77 #define CONNCACHE_UNLOCK(x) if((x)->share) \ argument
[all …]
H A Dsplay.c160 struct Curl_tree *x; in Curl_splaygetbest() local
176 x = t->samen; in Curl_splaygetbest()
177 if(x != t) { in Curl_splaygetbest()
182 x->key = t->key; in Curl_splaygetbest()
193 x = t->larger; in Curl_splaygetbest()
196 return x; in Curl_splaygetbest()
218 struct Curl_tree *x; in Curl_splayremove() local
254 x = t->samen; in Curl_splayremove()
255 if(x != t) { in Curl_splayremove()
259 x->key = t->key; in Curl_splayremove()
[all …]
H A Dconnect.h82 #define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM, y) argument
83 #define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION, y) argument
84 #define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP, y) argument
86 #define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM) argument
87 #define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION) argument
88 #define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP) argument
H A Dselect.h79 #define SOCKET_READABLE(x,z) \ argument
80 Curl_socket_check(x, CURL_SOCKET_BAD, CURL_SOCKET_BAD, z)
81 #define SOCKET_WRITABLE(x,z) \ argument
82 Curl_socket_check(CURL_SOCKET_BAD, CURL_SOCKET_BAD, x, z)
93 #define FDSET_SOCK(x) 1 argument
94 #define VERIFY_SOCK(x) do { \ argument
95 if(!VALID_SOCK(x)) { \
106 #define VERIFY_SOCK(x) do { \ argument
107 if(!VALID_SOCK(x) || !FDSET_SOCK(x)) { \
H A Dcurl_ntlm_core.h39 #define SHORTPAIR(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff)) argument
40 #define LONGQUARTET(x) ((int)((x) & 0xff)), ((int)(((x) >> 8) & 0xff)), \ argument
41 ((int)(((x) >> 16) & 0xff)), ((int)(((x) >> 24) & 0xff))
H A Dasyn.h165 #define Curl_resolver_cancel(x) Curl_nop_stmt argument
166 #define Curl_resolver_kill(x) Curl_nop_stmt argument
167 #define Curl_resolver_is_resolved(x,y) CURLE_COULDNT_RESOLVE_HOST argument
168 #define Curl_resolver_wait_resolv(x,y) CURLE_COULDNT_RESOLVE_HOST argument
169 #define Curl_resolver_duphandle(x,y,z) CURLE_OK argument
170 #define Curl_resolver_init(x,y) CURLE_OK argument
173 #define Curl_resolver_cleanup(x) Curl_nop_stmt argument
H A Dbase64.c134 unsigned int x = 0; in Curl_base64_decode() local
141 x = (x << 6) | val; in Curl_base64_decode()
143 pos[2] = x & 0xff; in Curl_base64_decode()
144 pos[1] = (x >> 8) & 0xff; in Curl_base64_decode()
145 pos[0] = (x >> 16) & 0xff; in Curl_base64_decode()
151 unsigned int x = 0; in Curl_base64_decode() local
156 x <<= 6; in Curl_base64_decode()
166 x = (x << 6) | val; in Curl_base64_decode()
170 pos[1] = (x >> 8) & 0xff; in Curl_base64_decode()
171 pos[0] = (x >> 16) & 0xff; in Curl_base64_decode()
H A Dsha256.c334 #define RORc(x, y) \ argument
335 (((((unsigned long)(x) & 0xFFFFFFFFUL) >> (unsigned long)((y) & 31)) | \
336 ((unsigned long)(x) << (unsigned long)(32 - ((y) & 31)))) & 0xFFFFFFFFUL)
337 #define Sha256_Ch(x,y,z) (z ^ (x & (y ^ z))) argument
338 #define Sha256_Maj(x,y,z) (((x | y) & z) | (x & y)) argument
339 #define Sha256_S(x, n) RORc((x), (n)) argument
340 #define Sha256_R(x, n) (((x)&0xFFFFFFFFUL)>>(n)) argument
341 #define Sigma0(x) (Sha256_S(x, 2) ^ Sha256_S(x, 13) ^ Sha256_S(x, 22)) argument
342 #define Sigma1(x) (Sha256_S(x, 6) ^ Sha256_S(x, 11) ^ Sha256_S(x, 25)) argument
343 #define Gamma0(x) (Sha256_S(x, 7) ^ Sha256_S(x, 18) ^ Sha256_R(x, 3)) argument
[all …]
H A Dsigpipe.h37 #define SIGPIPE_VARIABLE(x) struct sigpipe_ignore x argument
75 #define sigpipe_ignore(x,y) Curl_nop_stmt argument
76 #define sigpipe_restore(x) Curl_nop_stmt argument
77 #define SIGPIPE_VARIABLE(x) argument
H A Dmultiif.h58 #define GETSOCK_WRITESOCK(x) (1 << (GETSOCK_WRITEBITSTART + (x))) argument
61 #define GETSOCK_READSOCK(x) (1 << (x)) argument
64 #define GETSOCK_MASK_RW(x) (GETSOCK_READSOCK(x)|GETSOCK_WRITESOCK(x)) argument
H A Dfopen.c55 #define IS_SEP(x) (((x) == '/') || ((x) == '\\')) argument
58 #define IS_SEP(x) ((x) == '\\') argument
61 #define IS_SEP(x) ((x) == '/') argument
/curl/src/
H A Dtool_setopt.h104 #define my_setopt(x,y,z) \ argument
107 #define my_setopt_str(x,y,z) \ argument
110 #define my_setopt_enum(x,y,z) \ argument
122 #define my_setopt_slist(x,y,z) \ argument
125 #define res_setopt(x,y,z) tool_setopt(x, FALSE, global, config, #y, y, z) argument
127 #define res_setopt_str(x,y,z) tool_setopt(x, TRUE, global, config, #y, y, z) argument
133 #define my_setopt(x,y,z) \ argument
136 #define my_setopt_str(x,y,z) \ argument
139 #define my_setopt_enum(x,y,z) \ argument
154 #define res_setopt(x,y,z) curl_easy_setopt(x,y,z) argument
[all …]
/curl/tests/data/
H A Dtest55348 Header0: %repeat[5000 x A]%
49 Header1: %repeat[5000 x A]%
50 Header2: %repeat[5000 x A]%
51 Header3: %repeat[5000 x A]%
52 Header4: %repeat[5000 x A]%
53 Header5: %repeat[5000 x A]%
54 Header6: %repeat[5000 x A]%
55 Header7: %repeat[5000 x A]%
57 Content-Type: application/x-www-form-urlencoded
59 %repeat[40960 x A]%
H A Dtest37320 %repeat[255 x %00]%
23 %repeat[255 x %00]%
26 %repeat[255 x %00]%
29 %repeat[255 x %00]%
43 %repeat[255 x %00]%
44 %repeat[255 x %00]%
45 %repeat[255 x %00]%
46 %repeat[255 x %00]%
H A Dtest230519 %hex[%01%7e%10%01]hex%%repeat[256 x helothisisdaniel]%
20 %hex[%01%7e%10%01]hex%%repeat[256 x helothisisdaniel]%
21 %hex[%81%7e%10%01]hex%%repeat[256 x helothisisdaniel]%
54 %repeat[256 x helothisisdaniel]%
55 %repeat[256 x helothisisdaniel]%
56 %repeat[256 x helothisisdaniel]%
H A Dtest24416 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
17 drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
18 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
H A Dtest10016 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
17 drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
18 drwxr-xr-x 2 98 98 512 May 2 1996 curl-releases
21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
H A Dtest104718 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
19 drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
20 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
23 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
25 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
27 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
H A Dtest52116 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
17 drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
18 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
H A Dtest25217 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
18 drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
19 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
22 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
24 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
26 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
H A Dtest35016 drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
17 drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
18 drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
21 dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
23 dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
25 dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
/curl/include/curl/
H A Dcurlver.h75 #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z)) argument
76 #define CURL_AT_LEAST_VERSION(x,y,z) \ argument
77 (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))

Completed in 66 milliseconds

12345678910>>...19