Searched refs:bn (Results 1 – 4 of 4) sorted by relevance
/PHP-8.0/ext/openssl/ |
H A D | xp_ssl.c | 1177 BIGNUM *bn = NULL; in php_openssl_tmp_rsa_cb() local 1180 if (!rsa_tmp && ((bn = BN_new()) == NULL)) { in php_openssl_tmp_rsa_cb() 1183 if (!rsa_tmp && bn) { in php_openssl_tmp_rsa_cb() 1184 if (!BN_set_word(bn, RSA_F4) || ((rsa_tmp = RSA_new()) == NULL) || in php_openssl_tmp_rsa_cb() 1185 !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL)) { in php_openssl_tmp_rsa_cb() 1191 BN_free(bn); in php_openssl_tmp_rsa_cb()
|
H A D | openssl.c | 4000 zval *bn; \ 4001 if ((bn = zend_hash_str_find(Z_ARRVAL_P(_data), #_name, sizeof(#_name)-1)) != NULL && \ 4002 Z_TYPE_P(bn) == IS_STRING) { \ 4004 (unsigned char*)Z_STRVAL_P(bn), \ 4005 (int)Z_STRLEN_P(bn), NULL); \ 4259 zval *bn; in PHP_FUNCTION() local 4264 Z_TYPE_P(bn) == IS_STRING) { in PHP_FUNCTION() 4265 int nid = OBJ_sn2nid(Z_STRVAL_P(bn)); in PHP_FUNCTION() 4287 if ((bn = zend_hash_str_find(Z_ARRVAL_P(data), "d", sizeof("d") - 1)) != NULL && in PHP_FUNCTION() 4288 Z_TYPE_P(bn) == IS_STRING) { in PHP_FUNCTION() [all …]
|
/PHP-8.0/ext/hash/tests/ |
H A D | fnv1a64.phpt | 228 array( '9nJci0@/i_LoeJxL2S0-WTNH gbl&rC?bn$L~E[h%)YkS', 'b8c4873ffdaf0fac' ), 251 array( '>zgV)ZW?tknEq6dbb>[P+]Xo<c:}x(z7$bn-=FL33;Y&R>h6]', '2d02887219c5f7ba' ),
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 7694 union{lua_Number n;U64 b;}bn; 7695 bn.n=lua_tonumber(L,idx)+6755399441055744.0; 7696 if(bn.n==0.0&&!lua_isnumber(L,idx))luaL_typerror(L,idx,"number"); 7697 return(UB)bn.b;
|
Completed in 46 milliseconds