Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dwarnless.c43 #define CURL_MASK_USHORT ((unsigned short)~0) macro
44 #define CURL_MASK_SSHORT (CURL_MASK_USHORT >> 1)
69 DEBUGASSERT(ulnum <= (unsigned long) CURL_MASK_USHORT); in curlx_ultous()
70 return (unsigned short)(ulnum & (unsigned long) CURL_MASK_USHORT); in curlx_ultous()
235 DEBUGASSERT((unsigned long) slnum <= (unsigned long) CURL_MASK_USHORT); in curlx_sltous()
236 return (unsigned short)(slnum & (long) CURL_MASK_USHORT); in curlx_sltous()
314 DEBUGASSERT(uinum <= (unsigned int) CURL_MASK_USHORT); in curlx_uitous()
315 return (unsigned short) (uinum & (unsigned int) CURL_MASK_USHORT); in curlx_uitous()