Searched refs:tag_len (Results 1 – 2 of 2) sorted by relevance
/PHP-7.3/ext/openssl/ |
H A D | openssl.c | 6495 char *tag, int tag_len, zend_long options, int enc) /* {{{ */ in php_openssl_cipher_init() argument 6517 if (!EVP_CIPHER_CTX_ctrl(cipher_ctx, mode->aead_set_tag_flag, tag_len, NULL)) { in php_openssl_cipher_init() 6521 } else if (!enc && tag && tag_len > 0) { in php_openssl_cipher_init() 6608 zend_long options = 0, tag_len = 16; in PHP_FUNCTION() local 6627 PHP_OPENSSL_CHECK_LONG_TO_INT(tag_len, tag_len); in PHP_FUNCTION() 6644 &iv, &iv_len, &free_iv, NULL, tag_len, options, 1) == FAILURE || in PHP_FUNCTION() 6663 zend_string *tag_str = zend_string_alloc(tag_len, 0); in PHP_FUNCTION() 6667 ZSTR_VAL(tag_str)[tag_len] = '\0'; in PHP_FUNCTION() 6668 ZSTR_LEN(tag_str) = tag_len; in PHP_FUNCTION() 6731 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(tag_len, tag); in PHP_FUNCTION() [all …]
|
/PHP-7.3/ext/mbstring/oniguruma/src/ |
H A D | regexec.c | 6398 size_t tag_len; in onig_builtin_monitor() local 6444 tag_len = tag_end - tag_start; in onig_builtin_monitor() 6445 if (tag_len >= sizeof(buf)) tag_len = sizeof(buf) - 1; in onig_builtin_monitor() 6446 for (i = 0; i < tag_len; i++) buf[i] = tag_start[i]; in onig_builtin_monitor() 6447 buf[tag_len] = '\0'; in onig_builtin_monitor()
|
Completed in 37 milliseconds