Lines Matching refs:len1
4212 int i, len1, len2, *eksl, nkeys; in PHP_FUNCTION() local
4277 …if (!EVP_SealInit(&ctx, cipher, eks, eksl, NULL, pkeys, nkeys) || !EVP_SealUpdate(&ctx, buf, &len1… in PHP_FUNCTION()
4283 EVP_SealFinal(&ctx, buf + len1, &len2); in PHP_FUNCTION()
4285 if (len1 + len2 > 0) { in PHP_FUNCTION()
4287 buf[len1 + len2] = '\0'; in PHP_FUNCTION()
4288 buf = erealloc(buf, len1 + len2 + 1); in PHP_FUNCTION()
4289 ZVAL_STRINGL(sealdata, (char *)buf, len1 + len2, 0); in PHP_FUNCTION()
4311 RETVAL_LONG(len1 + len2); in PHP_FUNCTION()
4335 int len1, len2; in PHP_FUNCTION() local
4367 …unsigned char *)ekey, ekey_len, NULL, pkey) && EVP_OpenUpdate(&ctx, buf, &len1, (unsigned char *)d… in PHP_FUNCTION()
4368 if (!EVP_OpenFinal(&ctx, buf + len1, &len2) || (len1 + len2 == 0)) { in PHP_FUNCTION()
4386 buf[len1 + len2] = '\0'; in PHP_FUNCTION()
4387 ZVAL_STRINGL(opendata, erealloc(buf, len1 + len2 + 1), len1 + len2, 0); in PHP_FUNCTION()