Lines Matching refs:cryptedbuf
4948 zend_string *cryptedbuf = NULL; in PHP_FUNCTION() local
4970 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
4977 (unsigned char *)ZSTR_VAL(cryptedbuf), in PHP_FUNCTION()
4987 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
4988 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
4989 cryptedbuf = NULL; in PHP_FUNCTION()
4992 if (cryptedbuf) { in PHP_FUNCTION()
4993 zend_string_release(cryptedbuf); in PHP_FUNCTION()
5008 zend_string *cryptedbuf = NULL; in PHP_FUNCTION() local
5041 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5042 memcpy(ZSTR_VAL(cryptedbuf), crypttemp, cryptedlen); in PHP_FUNCTION()
5054 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5055 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5056 cryptedbuf = NULL; in PHP_FUNCTION()
5063 if (cryptedbuf) { in PHP_FUNCTION()
5064 zend_string_release(cryptedbuf); in PHP_FUNCTION()
5076 zend_string *cryptedbuf; in PHP_FUNCTION() local
5096 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5103 (unsigned char *)ZSTR_VAL(cryptedbuf), in PHP_FUNCTION()
5114 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5115 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5116 cryptedbuf = NULL; in PHP_FUNCTION()
5122 if (cryptedbuf) { in PHP_FUNCTION()
5123 zend_string_release(cryptedbuf); in PHP_FUNCTION()
5135 zend_string *cryptedbuf = NULL; in PHP_FUNCTION() local
5168 cryptedbuf = zend_string_alloc(cryptedlen, 0); in PHP_FUNCTION()
5169 memcpy(ZSTR_VAL(cryptedbuf), crypttemp, cryptedlen); in PHP_FUNCTION()
5183 ZSTR_VAL(cryptedbuf)[cryptedlen] = '\0'; in PHP_FUNCTION() local
5184 ZVAL_NEW_STR(crypted, cryptedbuf); in PHP_FUNCTION()
5185 cryptedbuf = NULL; in PHP_FUNCTION()
5189 if (cryptedbuf) { in PHP_FUNCTION()
5190 zend_string_release(cryptedbuf); in PHP_FUNCTION()