Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 1772) sorted by last modified time

12345678910>>...71

/PHP-7.4/
H A Dconfigure.ac156 T_MD=`$php_shtool echo -n -e %B`
157 T_ME=`$php_shtool echo -n -e %b`
185 dnl Support systems with system libraries in e.g. /usr/lib64.
803 CFLAGS=`echo "$CFLAGS" | "${SED}" -e 's/-O[0-9s]*//g'`
804 CXXFLAGS=`echo "$CXXFLAGS" | "${SED}" -e 's/-O[0-9s]*//g'`
823 CFLAGS=`echo "$CFLAGS" | "${SED}" -e 's/-O[0-9s]*//g'`
824 CXXFLAGS=`echo "$CXXFLAGS" | "${SED}" -e 's/-O[0-9s]*//g'`
/PHP-7.4/ext/gd/
H A Dgd.c205 ZEND_ARG_INFO(0, e)
560 ZEND_ARG_INFO(0, e)
1765 int e, st; in PHP_FUNCTION() local
1775 e = E; in PHP_FUNCTION()
1776 if (e < 0) { in PHP_FUNCTION()
1777 e %= 360; in PHP_FUNCTION()
3345 int e, st; in PHP_FUNCTION() local
3355 e = E; in PHP_FUNCTION()
3356 if (e < 0) { in PHP_FUNCTION()
3357 e %= 360; in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/pgsql/
H A Dpgsql.c525 ZEND_ARG_INFO(0, e)
/PHP-7.4/ext/filter/
H A Dlogical_filters.c500 char *e, *s, *t; in _php_filter_validate_domain() local
507 e = domain + l; in _php_filter_validate_domain()
508 t = e - 1; in _php_filter_validate_domain()
512 e = t; in _php_filter_validate_domain()
526 while (s < e) { in _php_filter_validate_domain()
599 char *e, *s, *t; in php_filter_validate_url() local
608 e = s + l; in php_filter_validate_url()
609 t = e - 1; in php_filter_validate_url()
/PHP-7.4/azure/i386/
H A Djob.yml72 set -e
82 set -e
84 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
/PHP-7.4/ext/intl/locale/
H A Dlocale_methods.c687 UEnumeration* e = NULL; in PHP_FUNCTION() local
714 e = uloc_openKeywords( loc_name, &status ); in PHP_FUNCTION()
715 if( e != NULL ) in PHP_FUNCTION()
727 while( ( kw_key = uenum_next( e, &kw_key_len, &status ) ) != NULL ){ in PHP_FUNCTION()
754 uenum_close( e ); in PHP_FUNCTION()
/PHP-7.4/ext/date/
H A Dphp_date.c4178 timelib_time *b = NULL, *e = NULL; in date_interval_initialize() local
4184 timelib_strtointerval(format, format_length, &b, &e, &p, &r, &errors); in date_interval_initialize()
4194 if(b && e) { in date_interval_initialize()
4196 timelib_update_ts(e, NULL); in date_interval_initialize()
4197 *rt = timelib_diff(b, e); in date_interval_initialize()
4207 timelib_free(e); in date_interval_initialize()
4651 timelib_time *b = NULL, *e = NULL; in date_period_initialize() local
4657 timelib_strtointerval(format, format_length, &b, &e, &p, &r, &errors); in date_period_initialize()
4664 *et = e; in date_period_initialize()
/PHP-7.4/main/
H A Dmain.c358 if (e == NULL) { in php_disable_functions()
361 while (*e) { in php_disable_functions()
362 switch (*e) { in php_disable_functions()
366 *e = '\0'; in php_disable_functions()
373 s = e; in php_disable_functions()
377 e++; in php_disable_functions()
397 while (*e) { in php_disable_classes()
398 switch (*e) { in php_disable_classes()
402 *e = '\0'; in php_disable_classes()
409 s = e; in php_disable_classes()
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dbug79375.phpt31 } catch(mysqli_sql_exception $e) {
32 echo $e->getMessage()."\n";
45 } catch(mysqli_sql_exception $e) {
46 echo $e->getMessage()."\n";
57 } catch(mysqli_sql_exception $e) {
58 echo $e->getMessage()."\n";
72 } catch (mysqli_sql_exception $e) {
73 echo $e->getMessage()."\n";
86 } catch(mysqli_sql_exception $e) {
87 echo $e->getMessage()."\n";
H A Dmysqli_next_result_no_repeat_error.phpt20 } catch (mysqli_sql_exception $e) {
H A Dmysqli_report.phpt41 } catch (\ValueError $e) {
42 echo $e->getMessage() . \PHP_EOL;
75 } catch (\ValueError $e) {
76 echo $e->getMessage() . \PHP_EOL;
184 } catch (mysqli_sql_exception $e) {
185 printf("[013] %s\n", $e->getMessage());
196 } catch (mysqli_sql_exception $e) {
197 printf("[016] %s\n", $e->getMessage());
/PHP-7.4/build/
H A Dconfig.guess492 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
495 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
H A Dconfig.sub1186 | arm | arm[lb]e | arme[lb] | armv* \
1259 | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \
1260 | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \
/PHP-7.4/ext/gd/libgd/
H A Dgd.c1591 gdImageFilledArc(im, cx, cy, w, h, s, e, color, gdNoFill); in gdImageArc()
1602 if ((s % 360) == (e % 360)) { in gdImageFilledArc()
1603 s = 0; e = 360; in gdImageFilledArc()
1609 if (e > 360) { in gdImageFilledArc()
1610 e = e % 360; in gdImageFilledArc()
1617 while (e < s) { in gdImageFilledArc()
1618 e += 360; in gdImageFilledArc()
1620 if (s == e) { in gdImageFilledArc()
1621 s = 0; e = 360; in gdImageFilledArc()
1625 for (i = s, pti = 1; i <= e; i++, pti++) { in gdImageFilledArc()
[all …]
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch3211 const char *s, *e;
/PHP-7.4/ext/date/lib/
H A Dparse_date.re1830 char *e = s + len - 1;
1840 while (isspace(*s) && s < e) {
1843 while (isspace(*e) && e > s) {
1844 e--;
1847 if (e - s < 0) {
1859 e++;
1861 in.str = timelib_malloc((e - s) + YYMAXFILL);
1862 memset(in.str, 0, (e - s) + YYMAXFILL);
1863 memcpy(in.str, s, (e - s));
1864 in.lim = in.str + (e - s) + YYMAXFILL;
[all …]
H A Dparse_date.c24938 char *e = s + len - 1; in timelib_strtotime() local
24948 while (isspace(*s) && s < e) { in timelib_strtotime()
24951 while (isspace(*e) && e > s) { in timelib_strtotime()
24952 e--; in timelib_strtotime()
24955 if (e - s < 0) { in timelib_strtotime()
24967 e++; in timelib_strtotime()
24969 in.str = timelib_malloc((e - s) + YYMAXFILL); in timelib_strtotime()
24970 memset(in.str, 0, (e - s) + YYMAXFILL); in timelib_strtotime()
24971 memcpy(in.str, s, (e - s)); in timelib_strtotime()
24972 in.lim = in.str + (e - s) + YYMAXFILL; in timelib_strtotime()
/PHP-7.4/ext/xml/tests/
H A Dbug70962.phpt19 $xml = "<a><b>&lt;d&gt;\n &lt;e&gt;</b><![CDATA[ ]]><c>\n \t</c></a>";
35 <e>
/PHP-7.4/ext/ffi/tests/
H A Dbug79576.phpt12 } catch (Throwable $e) {
13 echo get_class($e) . ": " . $e->getMessage()."\n";
17 } catch (Throwable $e) {
18 echo get_class($e) . ": " . $e->getMessage()."\n";
26 } catch (Throwable $e) {
27 echo get_class($e) . ": " . $e->getMessage()."\n";
/PHP-7.4/ext/phar/
H A Dphar_object.c338 char *e = *entry + 1, *u = NULL, *u1 = NULL, *saveu = NULL; in phar_postprocess_ru_web() local
350 if (zend_hash_str_exists(&(pphar->manifest), e, e_len)) { in phar_postprocess_ru_web()
365 u1 = strrchr(e, '/'); in phar_postprocess_ru_web()
374 u = strrchr(e, '/'); in phar_postprocess_ru_web()
/PHP-7.4/Zend/
H A Dzend_operators.c3074 const char *e = ptr + 1; local
3076 if (*e == '-' || *e == '+') {
3077 ptr = e++;
3079 if (ZEND_IS_DIGIT(*e)) {
/PHP-7.4/ext/openssl/
H A Dopenssl.c588 static int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) in ZEND_GET_MODULE()
591 r->e = e; in ZEND_GET_MODULE()
614 static void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, const BIGNUM **d) in RSA_get0_key() argument
617 *e = r->e; in RSA_get0_key()
4231 BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp; in php_openssl_pkey_init_and_assign_rsa() local
4234 OPENSSL_PKEY_SET_BN(data, e); in php_openssl_pkey_init_and_assign_rsa()
4236 if (!n || !d || !RSA_set0_key(rsa, n, e, d)) { in php_openssl_pkey_init_and_assign_rsa()
4858 const BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp; in PHP_FUNCTION() local
4860 RSA_get0_key(rsa, &n, &e, &d); in PHP_FUNCTION()
4866 OPENSSL_PKEY_GET_BN(z_rsa, e); in PHP_FUNCTION()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.c2581 #define php_select(m, r, w, e, t) select(m, r, w, e, t) argument
/PHP-7.4/ext/standard/
H A Dstring.c1463 e = c+len; in php_strtolower()
2206 e--;
3221 char *e; local
3304 char *e; local
3562 --e;
3574 e -= 16;
3587 e -= 16;
5567 char *e; local
5575 l = (e-s) < (ee-e) ? (e-s) : (ee-e);
5577 e += l;
[all …]
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_cache_slot_opt.phpt14 } catch (TypeError $e) {
15 echo $e->getMessage(), "\n";

Completed in 311 milliseconds

12345678910>>...71