Home
last modified time | relevance | path

Searched refs:tmp (Results 76 – 100 of 1134) sorted by path

12345678910>>...46

/php-src/docs-old/
H A Dinput-filter.md150 zval **tmp;
173 if(zend_hash_find(HASH_OF(array_ptr), var, var_len+5, (void **)&tmp) == SUCCESS) {
174 *return_value = **tmp;
H A Dself-contained-extensions.md30 mkdir /tmp/newext
31 cd /tmp/newext
/php-src/ext/bcmath/
H A Dbcmath.c76 zend_long tmp; in ZEND_GET_MODULE() local
78 tmp = zend_ini_parse_quantity_warn(new_value, entry->name); in ZEND_GET_MODULE()
79 if (tmp < 0 || tmp > INT_MAX) { in ZEND_GET_MODULE()
84 *p = (int) tmp; in ZEND_GET_MODULE()
/php-src/ext/bcmath/libbcmath/src/
H A Dfloor_or_ceil.c50 bc_num tmp = _bc_do_add(result, BCG(_one_)); in bc_floor_or_ceil() local
51 tmp->n_sign = result->n_sign; in bc_floor_or_ceil()
53 return tmp; in bc_floor_or_ceil()
H A Dround.c161 bc_num tmp; in bc_round() local
164 tmp = bc_new_num(num->n_len + 1, 0); in bc_round()
165 tmp->n_value[0] = 1; in bc_round()
166 tmp->n_sign = num->n_sign; in bc_round()
171 tmp = _bc_do_add(*result, scaled_one); in bc_round()
172 tmp->n_sign = (*result)->n_sign; in bc_round()
177 *result = tmp; in bc_round()
/php-src/ext/calendar/
H A Deaster.c34 zend_long year, golden, solar, lunar, pfm, dom, tmp, easter, result; in _cal_easter() local
112 tmp = (4-pfm-dom) % 7; in _cal_easter()
113 if (tmp < 0) { in _cal_easter()
114 tmp += 7; in _cal_easter()
117 easter = pfm + tmp + 1; /* Easter as the number of days after 21st March */ in _cal_easter()
/php-src/ext/com_dotnet/
H A Dcom_com.c74 zval *tmp; in PHP_METHOD() local
86 user_name = zval_get_string(tmp); in PHP_METHOD()
91 password = zval_get_string(tmp); in PHP_METHOD()
415 zval *tmp; in php_com_get_id_of_name() local
441 zval tmp; in php_com_get_id_of_name() local
448 ZVAL_LONG(&tmp, *dispid); in php_com_get_id_of_name()
698 zval *tmp; in PHP_FUNCTION() local
700 if ((tmp = zend_hash_index_find(sink_ht, 0)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
701 type_lib_name = Z_STR_P(tmp); in PHP_FUNCTION()
702 if ((tmp = zend_hash_index_find(sink_ht, 1)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
[all …]
H A Dcom_extension.c176 zend_class_entry *tmp; in PHP_MINIT_FUNCTION() local
194 tmp = register_class_com(php_com_variant_class_entry); in PHP_MINIT_FUNCTION()
195 tmp->default_object_handlers = &php_com_object_handlers; in PHP_MINIT_FUNCTION()
196 tmp->create_object = php_com_object_new; in PHP_MINIT_FUNCTION()
197 tmp->get_iterator = php_com_iter_get; in PHP_MINIT_FUNCTION()
200 tmp = register_class_dotnet(php_com_variant_class_entry); in PHP_MINIT_FUNCTION()
201 tmp->default_object_handlers = &php_com_object_handlers; in PHP_MINIT_FUNCTION()
202 tmp->create_object = php_com_object_new; in PHP_MINIT_FUNCTION()
203 tmp->get_iterator = php_com_iter_get; in PHP_MINIT_FUNCTION()
H A Dcom_typeinfo.c518 zval tmp; in php_com_process_typeinfo() local
629 ZVAL_STR(&tmp, lc_ansi_name); in php_com_process_typeinfo()
630 zend_hash_index_update(id_to_name, func->memid, &tmp); in php_com_process_typeinfo()
H A Dcom_wrapper.c174 zval *tmp; in disp_getidsofnames() local
183 rgDispId[i] = (DISPID)Z_LVAL_P(tmp); in disp_getidsofnames()
217 zval *tmp; in disp_getdispid() local
227 *pid = (DISPID)Z_LVAL_P(tmp); in disp_getdispid()
444 zval *tmp, tmp2; in generate_dispids() local
528 zval *tmp; in disp_constructor() local
548 tmp = zend_list_insert(disp, le_dispatch); in disp_constructor()
549 disp->res = Z_RES_P(tmp); in disp_constructor()
584 zval tmp, *ntmp; in php_com_wrapper_export_as_sink() local
604 ZVAL_LONG(&tmp, pid); in php_com_wrapper_export_as_sink()
[all …]
/php-src/ext/curl/
H A Dinterface.c1075 char *tmp; in create_certinfo() local
1078 tmp = memchr(s, ':', sizeof(s)); in create_certinfo()
1079 if(tmp) { in create_certinfo()
1080 *tmp = '\0'; in create_certinfo()
/php-src/ext/curl/tests/
H A Dbug48203.phpt8 $fp = fopen(__DIR__ . '/bug48203.tmp', 'w');
25 <?php @unlink(__DIR__ . '/bug48203.tmp'); ?>
H A Dbug48203_multi.phpt9 $fp = fopen(__DIR__ . '/bug48203.tmp', 'w');
66 <?php @unlink(__DIR__ . '/bug48203.tmp'); ?>
H A Dbug54798-unix.phpt15 $fp = fopen(__DIR__ . '/bug54798.tmp', 'w+');
57 <?php @unlink(__DIR__ . '/bug54798.tmp'); ?>
H A Dbug54798.phpt9 $fp = fopen(__DIR__ . '/bug54798.tmp', 'w+');
51 <?php @unlink(__DIR__ . '/bug54798.tmp'); ?>
H A Dbug61948-unix.phpt10 open_basedir="/tmp"
15 var_dump(curl_setopt($ch, CURLOPT_COOKIEFILE, "/tmp/foo"));
23 …restriction in effect. File(/xxx/bar) is not within the allowed path(s): (/tmp) in %sbug61948-unix…
H A Dbug69316.phpt21 $temp_file = __DIR__ . '/body.tmp';
34 unlink(__DIR__ . '/body.tmp');
H A Dcurl_file_deleted_before_curl_close.phpt14 $temp_file = __DIR__ . '/curl_file_deleted_before_curl_close.tmp';
36 unlink(__DIR__ . '/curl_file_deleted_before_curl_close.tmp');
H A Dcurl_read_callback.phpt21 $sReadFile = $sFileBase.'_in.tmp';
22 $sWriteFile = $sFileBase.'_out.tmp';
44 $sReadFile = $sFileBase.'_in.tmp';
45 $sWriteFile = $sFileBase.'_out.tmp';
H A Dcurl_read_trampoline.phpt18 $sReadFile = $sFileBase.'_in.tmp';
19 $sWriteFile = $sFileBase.'_out.tmp';
42 $sReadFile = $sFileBase.'_in.tmp';
43 $sWriteFile = $sFileBase.'_out.tmp';
/php-src/ext/date/lib/
H A Dastro.c301 double tmp; in timelib_ts_to_julianday() local
303 tmp = (double) ts; in timelib_ts_to_julianday()
304 tmp /= (double) 86400; in timelib_ts_to_julianday()
305 tmp += (double) 2440587.5; in timelib_ts_to_julianday()
307 return tmp; in timelib_ts_to_julianday()
H A Ddow.c33 timelib_sll tmp; in positive_mod() local
35 tmp = x % y; in positive_mod()
36 if (tmp < 0) { in positive_mod()
37 tmp += y; in positive_mod()
40 return tmp; in positive_mod()
H A Dparse_date.c474 return tmp; in timelib_string()
847 timelib_long tmp; in timelib_parse_tz_cor() local
866 return tmp; in timelib_parse_tz_cor()
870 return tmp; in timelib_parse_tz_cor()
874 return sHOUR(tmp / 100) + sMIN(tmp % 100); in timelib_parse_tz_cor()
884 return tmp; in timelib_parse_tz_cor()
889 tmp = sHOUR(tmp / 10000) + sMIN((tmp / 100) % 100) + (tmp % 100); in timelib_parse_tz_cor()
890 return tmp; in timelib_parse_tz_cor()
899 return tmp; in timelib_parse_tz_cor()
25038 timelib_sll tmp; in timelib_parse_from_format_with_map() local
[all …]
H A Dparse_date.re472 return tmp;
845 timelib_long tmp;
864 return tmp;
868 return tmp;
872 return sHOUR(tmp / 100) + sMIN(tmp % 100);
882 return tmp;
887 tmp = sHOUR(tmp / 10000) + sMIN((tmp / 100) % 100) + (tmp % 100);
888 return tmp;
897 return tmp;
2188 timelib_sll tmp;
[all …]
H A Dparse_iso_intervals.c102 char *tmp = timelib_calloc(1, s->cur - s->tok + 1); in timelib_string() local
103 memcpy(tmp, s->tok, s->cur - s->tok); in timelib_string()
105 return tmp; in timelib_string()

Completed in 81 milliseconds

12345678910>>...46