Home
last modified time | relevance | path

Searched refs:mask (Results 26 – 50 of 56) sorted by relevance

123

/PHP-5.4/ext/zip/lib/
H A Dzip_close.c78 mode_t mask; in zip_close() local
337 mask = umask(0); in zip_close()
338 umask(mask); in zip_close()
339 chmod(za->zn, 0666&~mask); in zip_close()
/PHP-5.4/ext/standard/tests/strings/
H A Dstrcspn_variation11.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
40 // defining array of mask strings
66 // loop through each element of the arrays for str,mask and start arguments
70 foreach($mask_array as $mask) {
72 var_dump( strcspn($str,$mask,$start) );
H A Dstrspn_variation11.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
40 // define the array of mask strings
66 // loop through each element of the arrays for str, mask and start argument
70 foreach($mask_array as $mask) {
72 var_dump( strspn($str,$mask,$start) );
H A Dstrspn_variation8.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
64 // defining array of different mask strings
96 // loop through each element of the array for heredoc str, mask str , start values and len values
102 foreach($mask_array as $mask) {
105 var_dump( strspn($str,$mask,$start,$len) );
H A Dstrcspn_variation8.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
63 // defining array of mask strings
100 foreach($mask_array as $mask) {
103 var_dump( strcspn($str,$mask,$start,$len) );
H A Dstrcspn_variation12.phpt5 /* Prototype : proto int strcspn(string str, string mask [,int start [,int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
34 // defining array of mask strings
65 // loop through each element of the arrays for str,mask,start and len arguments
70 foreach($mask_array as $mask) {
73 var_dump( strcspn($str,$mask,$start,$len) );
H A Dstrspn_variation12.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
34 // define the array of mask strings
70 foreach($mask_array as $mask) {
73 var_dump( strspn($str,$mask,$start,$len) );
/PHP-5.4/ext/standard/tests/file/
H A Dumask_variation1.phpt11 /* Prototype: int umask ( [int $mask] );
25 for($mask = 0000; $mask <= 0350; $mask++) {
27 echo sprintf('%03o', $mask);
30 umask($mask);
H A Dumask_variation3.phpt13 /* Prototype : int umask([int mask])
107 // loop through each element of the array for mask
H A Dumask_variation2.phpt11 /* Prototype: int umask ( [int $mask] );
25 for($mask = 0351; $mask <= 0777; $mask++) {
27 echo sprintf('%03o', $mask);
30 umask($mask);
H A Dumask_basic.phpt11 /* Prototype: int umask ( [int $mask] );
17 for($mask = 0000; $mask <= 0777; $mask++) {
18 echo "-- Setting umask to $mask --\n";
19 var_dump( umask($mask) );
22 if ($mask != umask()) {
/PHP-5.4/ext/standard/html_tables/
H A Dhtml_table_gen.php739 $mask = $numelems - 1; variable
742 $hashes[hashfun($e[0]) & $mask][] = $e;
/PHP-5.4/Zend/
H A Dzend_builtin_functions.c1658 zend_uint mask = va_arg(args, zend_uint); in copy_class_or_interface_name() local
1660 zend_uint comply_mask = (comply)? mask:0; in copy_class_or_interface_name()
1664 && (comply_mask == (ce->ce_flags & mask))) { in copy_class_or_interface_name()
1680 zend_uint mask = ZEND_ACC_TRAIT; in ZEND_FUNCTION() local
1688 …table) TSRMLS_CC, (apply_func_args_t) copy_class_or_interface_name, 3, return_value, mask, comply); in ZEND_FUNCTION()
1697 zend_uint mask = ZEND_ACC_INTERFACE | (ZEND_ACC_TRAIT & ~ZEND_ACC_EXPLICIT_ABSTRACT_CLASS); in ZEND_FUNCTION() local
1705 …table) TSRMLS_CC, (apply_func_args_t) copy_class_or_interface_name, 3, return_value, mask, comply); in ZEND_FUNCTION()
1713 zend_uint mask = ZEND_ACC_INTERFACE; in ZEND_FUNCTION() local
1721 …table) TSRMLS_CC, (apply_func_args_t) copy_class_or_interface_name, 3, return_value, mask, comply); in ZEND_FUNCTION()
H A DREADME.ZEND_VM26 you can use ANY mask to disable specialization according operand's op_type.
H A DOBJECTS2_HOWTO81 should set right type, function name and parameter mask for the
H A Dzend_API.h712 #define ZEND_DEFINE_PROPERTY(class_ptr, name, value, mask) \ argument
716 zend_declare_property(class_ptr, _name, namelen, value, mask TSRMLS_CC); \
/PHP-5.4/ext/pcre/pcrelib/sljit/
H A DsljitNativeARM_32.c1180 sljit_uw mask; in generate_int() local
1186 mask = 0xff000000; in generate_int()
1189 if (!(imm & mask)) { in generate_int()
1197 mask >>= 2; in generate_int()
1198 if (mask & 0x3) { in generate_int()
1201 mask = 0xff00; in generate_int()
1204 if (!(imm & mask)) { in generate_int()
1212 mask >>= 2; in generate_int()
1213 if (mask & 0x3) in generate_int()
H A DsljitNativeARM_64.c352 sljit_uw mask, uimm; in logical_imm() local
371 mask = ((sljit_uw)1 << len) - 1; in logical_imm()
372 if ((uimm & mask) != ((uimm >> len) & mask)) in logical_imm()
/PHP-5.4/ext/pcntl/
H A Dpcntl.c1233 sigset_t mask; in pcntl_signal_dispatch() local
1238 sigfillset(&mask); in pcntl_signal_dispatch()
1239 sigprocmask(SIG_BLOCK, &mask, &old_mask); in pcntl_signal_dispatch()
/PHP-5.4/ext/standard/
H A Dstring.c748 memset(mask, 0, 256); in php_charmask()
753 memset(mask+c, 1, input[3] - c + 1); in php_charmask()
778 mask[c]=1; in php_charmask()
795 char mask[256]; in php_trim() local
798 php_charmask((unsigned char*)what, what_len, mask TSRMLS_CC); in php_trim()
800 php_charmask((unsigned char*)" \n\r\t\v\0", 6, mask TSRMLS_CC); in php_trim()
805 if (mask[(unsigned char)c[i]]) { in php_trim()
816 if (mask[(unsigned char)c[i]]) { in php_trim()
2748 char mask[256]; local
2758 php_charmask((unsigned char *)delims, delims_len, mask TSRMLS_CC);
[all …]
/PHP-5.4/sapi/isapi/stresstest/
H A Dstresstest.cpp414 void DeleteTempFiles(const char *mask) in DeleteTempFiles() argument
420 _snprintf(FindPath, sizeof(FindPath)-1, "%s\\%s", temppath, mask); in DeleteTempFiles()
/PHP-5.4/main/
H A Dsnprintf.c479 register int mask = (1 << nbits) - 1; in ap_php_conv_p2() local
486 *--p = digits[num & mask]; in ap_php_conv_p2()
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c3217 pcre_uint32 chr, mask; in scan_prefix() local
3430 mask = 0xff; in scan_prefix()
3432 mask = 0xffff; in scan_prefix()
3434 mask = 0xffffffff; in scan_prefix()
3495 mask = 0; in scan_prefix()
3500 chr |= mask; in scan_prefix()
3515 chr |= mask; in scan_prefix()
3553 pcre_uint32 mask; in fast_forward_first_n_chars() local
3576 mask >>= 4; in fast_forward_first_n_chars()
3577 while (mask != 0) in fast_forward_first_n_chars()
[all …]
/PHP-5.4/sapi/litespeed/
H A Dlsapilib.c2724 sigset_t mask; in lsapi_prefork_server_accept() local
2816 sigemptyset( &mask ); in lsapi_prefork_server_accept()
2817 sigaddset( &mask, SIGCHLD ); in lsapi_prefork_server_accept()
2819 if ( sigprocmask(SIG_BLOCK, &mask, &orig_mask) < 0 ) in lsapi_prefork_server_accept()
/PHP-5.4/ext/session/
H A Dsession.c247 int mask; in bin_to_readable() local
255 mask = (1 << nbits) - 1; in bin_to_readable()
271 *out++ = hexconvtab[w & mask]; in bin_to_readable()

Completed in 152 milliseconds

123