Home
last modified time | relevance | path

Searched refs:L (Results 1 – 25 of 132) sorted by relevance

123456

/PHP-7.4/ext/standard/
H A Dcrypt_blowfish.c467 tmp2 = L >> 8; \
469 tmp3 = L >> 16; \
471 tmp4 = L >> 24; \
487 tmp2 = L >> 6; \
489 tmp3 = L >> 14; \
525 R = L; \
533 L = R = 0; \
672 BF_word L, R; in BF_crypt() local
708 L = R = 0; in BF_crypt()
723 *(ptr - 4) = L; in BF_crypt()
[all …]
/PHP-7.4/ext/hash/
H A Dhash_whirlpool.c80 L[0] = in WhirlpoolTransform()
90 L[1] = in WhirlpoolTransform()
99 L[2] = in WhirlpoolTransform()
108 L[3] = in WhirlpoolTransform()
117 L[4] = in WhirlpoolTransform()
126 L[5] = in WhirlpoolTransform()
135 L[6] = in WhirlpoolTransform()
144 L[7] = in WhirlpoolTransform()
164 L[0] = in WhirlpoolTransform()
174 L[1] = in WhirlpoolTransform()
[all …]
/PHP-7.4/win32/
H A Dioutil.c586 *(endw+1) = L'\0'; in php_win32_ioutil_dirname()
761 ret_real[0] = L'\\'; in php_win32_ioutil_realpath_h()
1078 ((reparse_target[4] >= L'A' && reparse_target[4] <= L'Z') || in php_win32_ioutil_readlink_int()
1079 (reparse_target[4] >= L'a' && reparse_target[4] <= L'z')) && in php_win32_ioutil_readlink_int()
1087 (reparse_target[4] == L'U' || reparse_target[4] == L'u') && in php_win32_ioutil_readlink_int()
1088 (reparse_target[5] == L'N' || reparse_target[5] == L'n') && in php_win32_ioutil_readlink_int()
1089 (reparse_target[6] == L'C' || reparse_target[6] == L'c') && in php_win32_ioutil_readlink_int()
1116 ((reparse_target[4] >= L'A' && reparse_target[4] <= L'Z') || in php_win32_ioutil_readlink_int()
1117 (reparse_target[4] >= L'a' && reparse_target[4] <= L'z')) && in php_win32_ioutil_readlink_int()
1195 if(target[0] == L'\\' && target[1] == L'\\' && target[2] == L'?' && target[3] == L'\\') { in php_win32_ioutil_readlink_w()
[all …]
H A Dreaddir.c45 …might_need_prefix = resolvedw_len >= 3 && PHP_WIN32_IOUTIL_IS_LETTERW(resolvedw[0]) && L':' == res… in opendir()
65 if (index >= 0 && filespecw[index] == L'/' || index == 0 && filespecw[index] == L'\\') in opendir()
66 filespecw[index] = L'\0'; in opendir()
67 wcscat(filespecw, L"\\*"); in opendir()
163 …might_need_prefix = dirw_len >= 3 && PHP_WIN32_IOUTIL_IS_LETTERW(dp->dirw[0]) && L':' == dp->dirw[… in rewinddir()
184 if (index >= 0 && (filespecw[index] == L'/' || in rewinddir()
185 (filespecw[index] == L'\\' && index == 0))) in rewinddir()
186 filespecw[index] = L'\0'; in rewinddir()
187 wcscat(filespecw, L"\\*"); in rewinddir()
H A Dioutil.h115 #define PHP_WIN32_IOUTIL_FW_SLASHW L'/'
117 #define PHP_WIN32_IOUTIL_BW_SLASHW L'\\'
122 #define PHP_WIN32_IOUTIL_DEFAULT_DIR_SEPARATORW L';'
124 #define PHP_WIN32_IOUTIL_IS_LETTERW(c) (((c) >= L'a' && (c) <= L'z') || ((c) >= L'A' && (c) <= L'Z'…
125 #define PHP_WIN32_IOUTIL_JUNCTION_PREFIXW L"\\??\\"
127 #define PHP_WIN32_IOUTIL_LONG_PATH_PREFIXW L"\\\\?\\"
129 #define PHP_WIN32_IOUTIL_UNC_PATH_PREFIXW L"\\\\?\\UNC\\"
159 (!((len) >= 1 && L' ' == pathw[(len)-1] || \
160 …(len) > 1 && !PHP_WIN32_IOUTIL_IS_SLASHW(pathw[(len)-2]) && L'.' != pathw[(len)-2] && L'.' == path…
221 ret[mb_len] = L'\0'; in php_win32_ioutil_conv_any_to_w()
[all …]
/PHP-7.4/ext/pcre/tests/
H A Dbug79363.phpt2 Bug #79363 (\p{L} doesn't work alongside \p{Arabic} in a character class)
6 var_dump(preg_replace('/[\p{L}\p{Arabic}]/', '0', $str));
7 var_dump(preg_replace('/[^\p{L}\p{Arabic}]/', '0', $str));
H A Drecursion_limit.phpt15 var_dump(preg_match_all('/\p{Ll}(\p{L}((\p{Ll}\p{Ll})))/', 'aeiou', $dummy));
18 var_dump(preg_match_all('/\p{Ll}\p{L}\p{Ll}\p{Ll}/', 'aeiou', $dummy));
/PHP-7.4/ext/phar/tests/cache_list/files/
H A Dfrontcontroller13.phar4 ������������������� ���index.php/����L�G/������w������� ���oof/test.php3����L�G3���B�Z�������
5 ���oof/hi.php����L�G���|D)�������<?php
/PHP-7.4/ext/phar/tests/files/
H A Dfrontcontroller13.phar4 ������������������� ���index.php/����L�G/������w������� ���oof/test.php3����L�G3���B�Z�������
5 ���oof/hi.php����L�G���|D)�������<?php
/PHP-7.4/ext/standard/tests/strings/
H A Dpack.phpt30 print_r(unpack("L", pack("L", 65534)));
31 print_r(unpack("L", pack("L", 0)));
32 print_r(unpack("L", pack("L", 2147483650)));
33 print_r(unpack("L", pack("L", 4294967295)));
34 print_r(unpack("L", pack("L", -2147483648)));
H A Dbug61764.phpt10 print_r(unpack('I', pack('L', -30000)));
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_defs.h36 #define NULL (0L)
38 #define NULL (void *)(0L)
/PHP-7.4/ext/xmlrpc/tests/
H A Dbug71501.phpt9 $params = 'Lê Trung Hiếu';
19 <string>Lê Trung Hiếu</string>
/PHP-7.4/ext/readline/
H A Dconfig.m447 -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS
54 -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS
61 -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS
68 -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS
75 -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS
/PHP-7.4/ext/phar/
H A Dshortarc.php117 $L = unpack('V', $a = (binary)fread($fp, 4));
122 if ($L[1] - strlen($m) < 8192) {
123 $read = $L[1] - strlen($m);
127 } while (strlen($last) && strlen($m) < $L[1]);
129 if (strlen($m) < $L[1]) {
132 $L[1] . '"');
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_x509_parse_basic.phpt18 …string(96) "/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnange…
25 ["L"]=>
40 ["L"]=>
157 DirName:/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnangelo@ph…
166 …string(96) "/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnange…
305 DirName:/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnangelo@ph…
H A Dbug39217cert1.txt8 hvcNAQEBBQADgY0AMIGJAoGBAL2t4aX933WXYlofuY+L+16Tdl/KxpAammyfcW8u
/PHP-7.4/ext/date/tests/
H A Dgmdate_variation7.phpt19 var_dump( gmdate('L', $timestamp_non_leap_year) );
22 var_dump( gmdate('L') );
23 var_dump( gmdate('L', $timestamp) );
/PHP-7.4/ext/opcache/tests/
H A Dpreload_variance.inc32 // Requires K & L, delay to runtime.
37 public function method($a): L {}
/PHP-7.4/Zend/
H A Dzend_strtod.c1215 Long L; local
1233 L = -L >> Exp_shift;
1241 word1(&u) = L >= 31 ? 1 : 1 << 31 - L;
1987 L = 0;
2002 *x++ = L;
2003 L = 0;
2009 *x++ = L;
2546 Long L; local
2711 L = (Long) (10*(ULong)L + (c - '0'));
3759 Long L; local
[all …]
H A Dzend_errors.h23 #define E_ERROR (1<<0L)
/PHP-7.4/ext/standard/tests/array/
H A Darray_rand_variation4.phpt155 string\([0-9]*\) "[#&!N <\n\t'"\0]*[U#$>]*[rL]*[L]*"
158 string\([0-9]*\) "[#&!N <\n\t'"\0]*[U#$>]*[rL]*[L]*"
163 string\([0-9]*\) "[#&!N <\n\t'"\0]*[U#$>]*[rL]*[L]*"
165 string\([0-9]*\) "[#&!N <\n\t'"\0]*[U#$>]*[rL]*[L]*"
/PHP-7.4/ext/standard/tests/time/
H A Didate.phpt28 L: 0
/PHP-7.4/ext/pdo_mysql/
H A Dconfig.m4102 -L$PHP_ZLIB_DIR/$PHP_LIBDIR -L$PDO_MYSQL_LIB_DIR
104 PDO_MYSQL_LIBS="$PDO_MYSQL_LIBS -L$PHP_ZLIB_DIR/$PHP_LIBDIR -lz"
110 -L$PDO_MYSQL_LIB_DIR
/PHP-7.4/ext/phar/tests/
H A Dphar_createdefaultstub.phpt158 if ($L[1] - strlen($m) < 8192) {
159 $read = $L[1] - strlen($m);
165 if (strlen($m) < $L[1]) {
168 $L[1] . '"');
452 if ($L[1] - strlen($m) < 8192) {
453 $read = $L[1] - strlen($m);
459 if (strlen($m) < $L[1]) {
462 $L[1] . '"');
755 $read = $L[1] - strlen($m);
761 if (strlen($m) < $L[1]) {
[all …]

Completed in 74 milliseconds

123456