/third_party/python/Python/ |
H A D | pystrhex.c | 7 static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen, in _Py_strhex_impl() argument 11 assert(arglen >= 0); in _Py_strhex_impl() 50 if (bytes_per_sep_group && arglen > 0) { in _Py_strhex_impl() 52 resultlen = (arglen - 1) / abs_bytes_per_sep; in _Py_strhex_impl() 55 if (arglen >= PY_SSIZE_T_MAX / 2 - resultlen) { in _Py_strhex_impl() 58 resultlen += arglen * 2; in _Py_strhex_impl() 60 if ((size_t)abs_bytes_per_sep >= (size_t)arglen) { in _Py_strhex_impl() 88 for (i = j = 0; i < arglen; ++i) { in _Py_strhex_impl() 98 Py_ssize_t chunks = (arglen - 1) / abs_bytes_per_sep; in _Py_strhex_impl() 112 while (i < arglen) { in _Py_strhex_impl() 148 _Py_strhex(const char* argbuf, const Py_ssize_t arglen) _Py_strhex() argument 155 _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen) _Py_strhex_bytes() argument 162 _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen, PyObject* sep, const int bytes_per_group) _Py_strhex_with_sep() argument 170 _Py_strhex_bytes_with_sep(const char* argbuf, const Py_ssize_t arglen, PyObject* sep, const int bytes_per_group) _Py_strhex_bytes_with_sep() argument [all...] |
/third_party/python/Include/internal/ |
H A D | pycore_strhex.h | 14 const Py_ssize_t arglen); 19 const Py_ssize_t arglen); 24 const Py_ssize_t arglen, 29 const Py_ssize_t arglen,
|
H A D | pycore_fileutils.h | 182 Py_ssize_t arglen, 198 Py_ssize_t arglen,
|
/third_party/ffmpeg/ffbuild/ |
H A D | bin2c.c | 47 size_t arglen = strlen(argv[1]); in main() local 50 for (int i = 0; i < arglen; i++) { in main()
|
/third_party/toybox/toys/posix/ |
H A D | find.c | 90 int dir, plus, arglen, argsize, curly; member 121 newargs = xmalloc(sizeof(char *)*(aa->arglen+bb->namecount+1)); in flush_exec() 123 memcpy(newargs, aa->argstart, sizeof(char *)*aa->arglen); in flush_exec() 124 newargs[aa->arglen] = 0; in flush_exec() 126 int pos = aa->curly, rest = aa->arglen - aa->curly; in flush_exec() 132 rest = aa->arglen - aa->curly - 1; in flush_exec() 548 aa->arglen = len; in do_find() 559 ss += aa->arglen + 1; in do_find()
|
/third_party/tzdata/ |
H A D | zdump.c | 591 size_t arglen = strlen(argv[i]); in main() local 592 if (longest < arglen) in main() 593 longest = min(arglen, INT_MAX); in main() 941 size_t arglen, slen; in my_snprintf() local 946 arglen = strlen(arg); in my_snprintf() 954 arglen = n; in my_snprintf() 956 slen = arglen < size ? arglen : size - 1; in my_snprintf() 959 n = arglen <= INT_MAX ? arglen in my_snprintf() [all...] |
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | evp_local.h | 350 #define M_check_autoarg(ctx, arg, arglen, err) \ 359 *arglen = pksize; \ 362 if (*arglen < pksize) { \
|
/third_party/openssl/crypto/evp/ |
H A D | evp_local.h | 350 #define M_check_autoarg(ctx, arg, arglen, err) \ 359 *arglen = pksize; \ 362 if (*arglen < pksize) { \
|
/third_party/python/Modules/ |
H A D | binascii.c | 883 Py_ssize_t arglen; in binascii_a2b_hex_impl() local 890 arglen = hexstr->len; in binascii_a2b_hex_impl() 892 assert(arglen >= 0); in binascii_a2b_hex_impl() 898 if (arglen % 2) { in binascii_a2b_hex_impl() 907 retval = PyBytes_FromStringAndSize(NULL, (arglen/2)); in binascii_a2b_hex_impl() 912 for (i=j=0; i < arglen; i += 2) { in binascii_a2b_hex_impl()
|
H A D | socketmodule.c | 4334 Py_ssize_t arglen; in sock_sendto() local 4340 arglen = PyTuple_Size(args); in sock_sendto() 4341 switch (arglen) { in sock_sendto() 4356 arglen); in sock_sendto()
|
/third_party/python/Objects/ |
H A D | bytesobject.c | 393 getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx) in getnextarg() argument 396 if (argidx < arglen) { in getnextarg() 398 if (arglen < 0) in getnextarg() 585 Py_ssize_t arglen, argidx; in _PyBytes_FormatEx() local 608 arglen = PyTuple_GET_SIZE(args); in _PyBytes_FormatEx() 612 arglen = -1; in _PyBytes_FormatEx() 702 arglen = -1; in _PyBytes_FormatEx() 720 v = getnextarg(args, arglen, &argidx); in _PyBytes_FormatEx() 760 v = getnextarg(args, arglen, &argidx); in _PyBytes_FormatEx() 804 v = getnextarg(args, arglen, in _PyBytes_FormatEx() 2483 Py_ssize_t arglen = PyBytes_GET_SIZE(self); bytes_hex_impl() local [all...] |
H A D | unicodeobject.c | 2723 Py_ssize_t length, fill, arglen; in unicode_fromformat_write_str() local 2737 arglen = Py_MAX(length, width); in unicode_fromformat_write_str() 2743 if (_PyUnicodeWriter_Prepare(writer, arglen, maxchar) == -1) in unicode_fromformat_write_str() 2894 Py_ssize_t arglen; in unicode_fromformat_arg() local 2932 arglen = Py_MAX(precision, width); in unicode_fromformat_arg() 2933 if (_PyUnicodeWriter_Prepare(writer, arglen, 127) == -1) in unicode_fromformat_arg() 5373 _Py_DecodeUTF8_surrogateescape(const char *arg, Py_ssize_t arglen, in _Py_DecodeUTF8_surrogateescape() argument 5377 int res = _Py_DecodeUTF8Ex(arg, arglen, in _Py_DecodeUTF8_surrogateescape() 14325 Py_ssize_t arglen, argidx; member 14349 if (argidx < ctx->arglen) { in unicode_format_getnextarg() [all...] |
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_opt.c | 143 int arglen = strlen(arg); in match_template() local 150 if (arglen >= tlen && strncmp(arg, t, tlen) == 0) { in match_template()
|
/third_party/libfuse/lib/ |
H A D | fuse_opt.c | 173 int arglen = strlen(arg); in match_template() local 180 if (arglen >= tlen && strncmp(arg, t, tlen) == 0) { in match_template()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2grep.c | 3928 int arglen = (argequals == NULL)? in main() local 3930 if (oplen == arglen && strncmp(arg, op->long_name, oplen) == 0) in main() 3932 option_data = arg + arglen; in main() 3953 int arglen = (argequals == NULL || equals == NULL)? in main() local 3969 if (strncmp(arg, buff1, arglen) == 0 || in main() 3970 strncmp(arg, buff2, arglen) == 0) in main()
|
/third_party/NuttX/include/nuttx/net/ |
H A D | net.h | 166 FAR void *arg, size_t arglen);
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | tls1.h | 295 # define SSL_set_tlsext_status_ocsp_resp(ssl, arg, arglen) \ 296 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP,arglen,arg)
|
/third_party/openssl/include/openssl/ |
H A D | tls1.h | 291 # define SSL_set_tlsext_status_ocsp_resp(ssl, arg, arglen) \ 292 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP,arglen,arg)
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | tls1.h | 288 # define SSL_set_tlsext_status_ocsp_resp(ssl, arg, arglen) \ 289 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP,arglen,arg)
|