Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 411) sorted by last modified time

12345678910>>...17

/PHP-5.5/win32/
H A Dphp_stdint.h235 #define INT8_C(val) val##i8 argument
236 #define INT16_C(val) val##i16 argument
237 #define INT32_C(val) val##i32 argument
238 #define INT64_C(val) val##i64 argument
240 #define UINT8_C(val) val##ui8 argument
241 #define UINT16_C(val) val##ui16 argument
242 #define UINT32_C(val) val##ui32 argument
243 #define UINT64_C(val) val##ui64 argument
H A Dstrtoi64.c12 int64_t val; in _strtoi64() local
62 val = 0; in _strtoi64()
96 val *= base; in _strtoi64()
98 || (neg && (val > acc || (val -= c) > acc)) /* underflow */ in _strtoi64()
99 || (val < acc || (val += c) < acc)) { /* overflow */ in _strtoi64()
105 acc = val; in _strtoi64()
/PHP-5.5/tests/lang/
H A DpassByReference_003.phpt5 function passbyVal($val) {
7 var_dump($val);
H A DpassByReference_005.phpt6 function v($val) {
7 $val = "Val changed";
20 function vr($val, &$ref) {
21 $val = "Val changed";
25 function rv(&$ref, $val) {
26 $val = "Val changed";
39 $val = "Val changed";
43 function v($val) {
44 $val = "Val changed";
57 $val = "Val changed";
[all …]
H A Dforeach_with_references_001.phpt8 foreach($arr as $key => $val) {
9 $val = $key;
14 foreach($arr as $key => &$val) {
15 $val = $key;
H A Deach_binary_safety.phpt7 while (list($key, $val) = each($arr)) {
9 echo urlencode($key), ' => ', urlencode($val), "\n";
H A Dengine_assignExecutionOrder_003.phpt62 $val = $arr[0][1];
63 echo "Expect 15 and get...$val\n";
H A Dexecution_order.phpt151 var $val = 10;
166 echo $c->val + ($c->val=200);
170 echo ($c->val=300) + $c->val;
H A DforeachLoop.017.phpt6 foreach ($a as $val=>$key) echo $key;
/PHP-5.5/
H A Dserver-tests.php133 foreach($w1 as $idx => $val) $w2[sprintf("%03d<",$idx)] = sprintf("%03d- ", $idx+1).$val;
134 foreach($o1 as $idx => $val) $o2[sprintf("%03d>",$idx)] = sprintf("%03d+ ", $idx+1).$val;
/PHP-5.5/tests/classes/
H A D__set__get_001.phpt24 function __set($nm, $val) {
25 echo "Setting [$nm] to $val\n";
28 $this->x[$nm] = $val;
H A D__set__get_004.phpt20 function __set($name, $val) {
21 $this->x[$name] = $val;
H A D__set__get_005.phpt22 function __set($name, $val) {
24 $this->x[$name] = $val;
40 function __set($name, $val) {
42 $this->x[$name] = $val;
H A D__set_data_corrupt.phpt19 function __set($prop, $val)
/PHP-5.5/sapi/roxen/
H A Droxen.c519 zvalue->value.str.val = estrndup(buf, zvalue->value.str.len); \
532 struct svalue *ind, *val; in php_roxen_hash_environment() local
543 val = low_mapping_lookup(headers->u.mapping, ind); in php_roxen_hash_environment()
545 val && val->type == PIKE_T_STRING) { in php_roxen_hash_environment()
552 zvalue->value.str.len = val->u.string->len; in php_roxen_hash_environment()
553 zvalue->value.str.val = estrndup(val->u.string->str, zvalue->value.str.len); in php_roxen_hash_environment()
/PHP-5.5/scripts/dev/
H A Dcheck_parameters.php88 $val = $lines_offset[$mid];
90 if ($val < $offset) {
97 } else if ($val > $offset) {
/PHP-5.5/sapi/isapi/
H A Dphp5isapi.c36 # define __except(val) argument
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c256 int val = fcntl( fd, F_GETFL, 0 ); in lsapi_set_nblock() local
259 if (!( val & O_NONBLOCK )) in lsapi_set_nblock()
261 return fcntl( fd, F_SETFL, val | O_NONBLOCK ); in lsapi_set_nblock()
266 if ( val & O_NONBLOCK ) in lsapi_set_nblock()
268 return fcntl( fd, F_SETFL, val &(~O_NONBLOCK) ); in lsapi_set_nblock()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_sockets.c471 int val; in fpm_socket_get_listening_queue() local
472 socklen_t len = sizeof(val); in fpm_socket_get_listening_queue()
475 if (0 > getsockopt(sock, SOL_SOCKET, SO_LISTENQLEN, &val, &len)) { in fpm_socket_get_listening_queue()
479 *cur_lq = val; in fpm_socket_get_listening_queue()
483 if (0 > getsockopt(sock, SOL_SOCKET, SO_LISTENQLIMIT, &val, &len)) { in fpm_socket_get_listening_queue()
487 *max_lq = val; in fpm_socket_get_listening_queue()
H A Dfastcgi.c546 char *val; in fcgi_read_request() local
555 val = estrdup("RESPONDER"); in fcgi_read_request()
556 zend_hash_update(req->env, "FCGI_ROLE", sizeof("FCGI_ROLE"), &val, sizeof(char*), NULL); in fcgi_read_request()
559 val = estrdup("AUTHORIZER"); in fcgi_read_request()
563 val = estrdup("FILTER"); in fcgi_read_request()
1085 char **val; local
1089 if (zend_hash_find(req->env, (char*)var, var_len+1, (void**)&val) == SUCCESS) {
1090 return *val;
1095 char* fcgi_putenv(fcgi_request *req, char* var, int var_len, char* val) argument
1098 if (val == NULL) {
[all …]
H A Dfastcgi.h126 char* fcgi_putenv(fcgi_request *req, char* var, int var_len, char* val);
H A Dfpm_conf.c248 for (p = val; *p; p++) { in fpm_conf_set_integer()
265 for (p = val; *p; p++) {
280 int len = strlen(val); in fpm_conf_set_time()
287 suffix = val[len-1]; in fpm_conf_set_time()
290 val[len-1] = '\0'; in fpm_conf_set_time()
291 seconds = 60 * atoi(val); in fpm_conf_set_time()
294 val[len-1] = '\0'; in fpm_conf_set_time()
298 val[len-1] = '\0'; in fpm_conf_set_time()
302 val[len-1] = '\0'; in fpm_conf_set_time()
308 seconds = atoi(val); in fpm_conf_set_time()
[all …]
H A Dfpm_main.c568 char *var, **val; in cgi_php_import_environment_variables() local
604 zend_hash_get_current_data_ex(request->env, (void **) &val, &pos) == SUCCESS; in cgi_php_import_environment_variables()
609 if (sapi_module.input_filter(filter_arg, var, val, strlen(*val), &new_val_len TSRMLS_CC)) { in cgi_php_import_environment_variables()
610 php_register_variable_safe(var, *val, new_val_len, array_ptr TSRMLS_CC); in cgi_php_import_environment_variables()
1640 char *val; local
1642 if ((val = strchr(php_optarg, '='))) {
1643 val++;
1644 if (!isalnum(*val) && *val != '"' && *val != '\'' && *val != '\0') {
1647 ini_entries_len += (val - php_optarg);
1650 memcpy(cgi_sapi_module.ini_entries + ini_entries_len, val, len - (val - php_optarg));
[all …]
/PHP-5.5/sapi/cli/
H A Dphp_cli.c1284 char *val; in WinMain() local
1286 if ((val = strchr(php_optarg, '='))) { in WinMain()
1287 val++; in WinMain()
1288 if (!isalnum(*val) && *val != '"' && *val != '\'' && *val != '\0') { in WinMain()
1290 memcpy(ini_entries + ini_entries_len, php_optarg, (val - php_optarg)); in WinMain()
1291 ini_entries_len += (val - php_optarg); in WinMain()
1294 memcpy(ini_entries + ini_entries_len, val, len - (val - php_optarg)); in WinMain()
1295 ini_entries_len += len - (val - php_optarg); in WinMain()
H A Dphp_cli_server.c457 char **val; in append_essential_headers() local
458 if (SUCCESS == zend_hash_find(&client->request.headers, "host", sizeof("host"), (void**)&val)) { in append_essential_headers()
461 smart_str_appends_ex(buffer, *val, persistent); in append_essential_headers()
687 char **val; in sapi_cli_server_read_cookies() local
691 return *val; in sapi_cli_server_read_cookies()
709 char *new_val = (char *)val; in sapi_cli_server_register_variable()
712 if (NULL == val) { in sapi_cli_server_register_variable()
1345 int val = 1; in php_network_listen_socket() local
1346 setsockopt(retval, SOL_SOCKET, SO_REUSEADDR, (char*)&val, sizeof(val)); in php_network_listen_socket()
1849 char **val; in php_cli_server_client_populate_request_info() local
[all …]

Completed in 100 milliseconds

12345678910>>...17