Lines Matching refs:cryptedbuf

5653 	zend_string *cryptedbuf = NULL;  in PHP_FUNCTION()  local
5675 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5682 (unsigned char *)ZSTR_VAL(cryptedbuf), in PHP_FUNCTION()
5692 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5693 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5694 cryptedbuf = NULL; in PHP_FUNCTION()
5699 if (cryptedbuf) { in PHP_FUNCTION()
5700 zend_string_release_ex(cryptedbuf, 0); in PHP_FUNCTION()
5715 zend_string *cryptedbuf = NULL; in PHP_FUNCTION() local
5748 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5749 memcpy(ZSTR_VAL(cryptedbuf), crypttemp, cryptedlen); in PHP_FUNCTION()
5761 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5762 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5763 cryptedbuf = NULL; in PHP_FUNCTION()
5772 if (cryptedbuf) { in PHP_FUNCTION()
5773 zend_string_release_ex(cryptedbuf, 0); in PHP_FUNCTION()
5785 zend_string *cryptedbuf; in PHP_FUNCTION() local
5805 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5812 (unsigned char *)ZSTR_VAL(cryptedbuf), in PHP_FUNCTION()
5823 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5824 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5825 cryptedbuf = NULL; in PHP_FUNCTION()
5833 if (cryptedbuf) { in PHP_FUNCTION()
5834 zend_string_release_ex(cryptedbuf, 0); in PHP_FUNCTION()
5846 zend_string *cryptedbuf = NULL; in PHP_FUNCTION() local
5879 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5880 memcpy(ZSTR_VAL(cryptedbuf), crypttemp, cryptedlen); in PHP_FUNCTION()
5894 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5895 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5896 cryptedbuf = NULL; in PHP_FUNCTION()
5902 if (cryptedbuf) { in PHP_FUNCTION()
5903 zend_string_release_ex(cryptedbuf, 0); in PHP_FUNCTION()