Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 25 of 31) sorted by relevance

12

/PHP-7.4/build/
H A Dorder_by_dep.awk67 split($1, mod, ";");
70 gsub("[^a-zA-Z0-9_-]", "", mod[1])
72 mods[mod_count++] = mod[1]
75 get_deps(mod[1], mod[2]);
/PHP-7.4/Zend/tests/
H A Dbug69957.phpt2 Bug #69957 (Different ways of handling div/mod by zero)
21 echo "\nVariable mod\n";
39 echo "\nLiteral mod\n";
57 echo "\nDouble mod\n";
67 Variable mod
74 Literal mod
81 Double mod
/PHP-7.4/tests/lang/
H A Dengine_assignExecutionOrder_003.phpt66 function mod($b)
78 $x[mod($x1)][mod($x2)] = $bx[mod($x3)];
/PHP-7.4/ext/session/
H A Dsession.c389 if (!PS(mod)) { in php_session_initialize()
565 PS(mod) = tmp; in PHP_INI_MH()
1389 for (i = 0, mod = ps_modules; i < MAX_MODULES; i++, mod++) { in _php_find_ps_module()
1390 if (*mod && !strcasecmp(name, (*mod)->s_name)) { in _php_find_ps_module()
1391 ret = *mod; in _php_find_ps_module()
1404 for (mod = ps_serializers; mod->name; mod++) { in _php_find_ps_serializer()
1406 ret = mod; in _php_find_ps_serializer()
1901 if (PS(mod) && PS(mod)->s_name) { in PHP_FUNCTION()
2074 if (!PS(mod) || PS(mod) != &ps_mod_user) { in PHP_FUNCTION()
3021 for (i = 0, mod = ps_modules; i < MAX_MODULES; i++, mod++) { in PHP_MINFO_FUNCTION()
[all …]
H A Dphp_session.h156 const ps_module *mod; member
H A Dmod_mm.c361 PS(id) = PS(mod)->s_create_sid((void **)&data); in PS_READ_FUNC()
/PHP-7.4/ext/com_dotnet/tests/
H A Dvariants.phpt56 mod: 0
70 mod: 2
116 mod:
154 mod:
232 mod:
270 mod:
320 mod:
382 mod:
440 mod:
502 mod:
[all …]
H A Dvariants_x64.phpt59 mod: 0
73 mod: 2
119 mod:
157 mod:
235 mod:
273 mod:
323 mod:
385 mod:
443 mod:
505 mod:
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dbug75938.phpt11 var_dump($mod = ($count % $columns));
12 var_dump($mod);
/PHP-7.4/ext/bcmath/libbcmath/src/
H A Draisemod.c63 bc_raisemod (bc_num base, bc_num expo, bc_num mod, bc_num *result, int scale) in bc_raisemod() argument
69 if (bc_is_zero(mod)) return -1; in bc_raisemod()
75 modulus = bc_copy_num (mod); in bc_raisemod()
H A Dbcmath.h143 _PROTOTYPE(int bc_raisemod, (bc_num base, bc_num expo, bc_num mod,
/PHP-7.4/ext/bcmath/tests/
H A Dbcmod_error2.phpt2 bcmod() - mod by 0
H A Dbcpowmod_error4.phpt2 bc_raisemod's mod can't be zero and expo can't be negative
/PHP-7.4/ext/standard/tests/strings/
H A Dbug61764.phpt8 //expected -30000 mod 2^32 = 4294937296, and not -30000
/PHP-7.4/ext/bcmath/
H A Dbcmath.c70 ZEND_ARG_INFO(0, mod)
407 bc_num first, second, mod, result; in PHP_FUNCTION() local
421 bc_init_num(&mod); in PHP_FUNCTION()
425 php_str2num(&mod, ZSTR_VAL(modulous)); in PHP_FUNCTION()
429 if (bc_raisemod(first, second, mod, &result, scale_int) != -1) { in PHP_FUNCTION()
437 bc_free_num(&mod); in PHP_FUNCTION()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_wait.c209 zend_module_entry *mod; in phpdbg_webdata_decompress() local
215 ZEND_HASH_FOREACH_PTR(&module_registry, mod) { in phpdbg_webdata_decompress()
216 if (mod->name) { in phpdbg_webdata_decompress()
218 ZVAL_NEW_STR(&value, zend_string_init(mod->name, strlen(mod->name), 0)); in phpdbg_webdata_decompress()
/PHP-7.4/ext/oci8/tests/
H A Dbind_boolean_1.phpt69 if (mod(:userid,2) = 0) then
/PHP-7.4/ext/phar/tests/
H A Dphar_createdefaultstub.phpt79 'mod' => 'audio/mod',
373 'mod' => 'audio/mod',
675 'mod' => 'audio/mod',
H A Dphar_setdefaultstub.phpt99 'mod' => 'audio/mod',
394 'mod' => 'audio/mod',
689 'mod' => 'audio/mod',
/PHP-7.4/ext/phar/tests/cache_list/files/
H A Dnophar.phar43 'mod' => 'audio/mod',
H A Dopenssl.phar43 'mod' => 'audio/mod',
/PHP-7.4/ext/phar/tests/files/
H A Dinclude_path2.phar43 'mod' => 'audio/mod',
H A Dnophar.phar43 'mod' => 'audio/mod',
H A Dopenssl.phar43 'mod' => 'audio/mod',
/PHP-7.4/ext/ldap/
H A Dldap.c2571 zval *link, *mods, *mod, *modinfo; in PHP_FUNCTION() local
2644 mod = fetched; in PHP_FUNCTION()
2647 if (Z_TYPE_P(mod) != IS_ARRAY) { in PHP_FUNCTION()
2652 SEPARATE_ARRAY(mod); in PHP_FUNCTION()
2654 zend_hash_internal_pointer_reset(Z_ARRVAL_P(mod)); in PHP_FUNCTION()
2655 num_modprops = zend_hash_num_elements(Z_ARRVAL_P(mod)); in PHP_FUNCTION()
2674 fetched = zend_hash_get_current_data(Z_ARRVAL_P(mod)); in PHP_FUNCTION()
2751 zend_hash_move_forward(Z_ARRVAL_P(mod)); in PHP_FUNCTION()
2767 mod = fetched; in PHP_FUNCTION()
2769 _ldap_hash_fetch(mod, LDAP_MODIFY_BATCH_ATTRIB, &attrib); in PHP_FUNCTION()
[all …]

Completed in 87 milliseconds

12