| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_convert.c | 377 long lval = 0; local 385 if( ( is_numeric = collator_is_numeric( (UChar*) Z_STRVAL_P(str), UCHARS( Z_STRLEN_P(str) ), &lval, &dval, 1 ) ) ) 390 Z_LVAL_P(num) = lval;
|
| H A D | collator_is_numeric.c | 225 zend_uchar collator_is_numeric( UChar *str, int length, long *lval, double *dval, int allow_errors ) argument 245 if (lval) { 246 *lval = local_lval; 289 } else if (end_ptr_long && lval) { 290 *lval = local_lval;
|
| /PHP_5_3/ext/filter/ |
| H A D | filter.c | 611 long lval; local 613 PHP_FILTER_GET_LONG_OPT(filter_args, lval); 617 filter_flags = lval; 623 filter = lval;
|
| H A D | logical_filters.c | 310 long lval; local 380 switch (is_numeric_string(num, p - num, &lval, &dval, 0)) { 384 Z_DVAL_P(value) = lval;
|
| /PHP_5_3/ext/interbase/ |
| H A D | ibase_query.c | 87 ISC_LONG lval; member in union:__anon86::__anon87
|
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 1042 long lval; local 1046 switch (is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), &lval, &dval, 0)) { 1049 Z_DVAL_P(ret) = lval; 1083 long lval; local 1089 switch ((Z_TYPE_P(ret) = is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), &lval, &dval, 0))) { 1091 Z_LVAL_P(ret) = lval;
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_heap.c | 153 long lval = 0; local 154 if (spl_ptr_heap_cmp_cb_helper((zval *)object, heap_object, (zval *)a, (zval *)b, &lval TSRMLS_CC) == FAILURE) { 158 return lval; 178 long lval = 0; local 179 if (spl_ptr_heap_cmp_cb_helper((zval *)object, heap_object, (zval *)a, (zval *)b, &lval TSRMLS_CC) == FAILURE) { 183 return lval; 209 long lval = 0; local 210 if (spl_ptr_heap_cmp_cb_helper((zval *)object, heap_object, *a_priority_pp, *b_priority_pp, &lval TSRMLS_CC) == FAILURE) { 214 return lval;
|
| /PHP_5_3/Zend/ |
| H A D | zend.h | 306 long lval; /* long value */ member in union:_zvalue_value
|
| H A D | zend_constants.c | 127 c.value.value.lval = 1; 133 c.value.value.lval = 0; 146 c.value.value.lval = ZTS_V; 152 c.value.value.lval = ZEND_DEBUG; 177 ZEND_API void zend_register_long_constant(const char *name, uint name_len, long lval, int flags, int module_number TSRMLS_DC) argument 182 c.value.value.lval = lval;
|
| H A D | zend_ini_scanner.c | 266 static void zend_ini_escape_string(zval *lval, char *str, int len, char quote_type TSRMLS_DC) argument 271 zend_ini_copy_value(lval, str, len); 274 s = t = Z_STRVAL_P(lval); 275 end = s + Z_STRLEN_P(lval); 294 Z_STRLEN_P(lval)--;
|
| H A D | zend_operators.c | 543 long lval; local 571 lval = Z_LVAL_P(op); 573 Z_STRLEN_P(op) = zend_spprintf(&Z_STRVAL_P(op), 0, "%ld", lval); 766 long lval = Z_LVAL_P(op1) + Z_LVAL_P(op2); local 770 && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != (lval & LONG_SIGN_MASK)) { 774 ZVAL_LONG(result, lval); 828 long lval = Z_LVAL_P(op1) - Z_LVAL_P(op2); local 832 && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != (lval & LONG_SIGN_MASK)) { 836 ZVAL_LONG(result, lval); 1777 long lval; local 1811 long lval; local [all...] |
| H A D | zend_operators.h | 98 * The number's value is returned into the respective pointer, *lval or *dval, 102 static inline zend_uchar is_numeric_string(const char *str, int length, long *lval, double *dval, int allow_errors) argument 212 if (lval) { 213 *lval = strtol(str, NULL, base); 389 #define Z_LVAL(zval) (zval).value.lval 390 #define Z_BVAL(zval) ((zend_bool)(zval).value.lval) 401 #define Z_RESVAL(zval) (zval).value.lval
|
| H A D | zend_exceptions.c | 401 long lval = Z_LVAL_PP(arg); local 403 int l_tmp = zend_sprintf(s_tmp, "%ld", lval); /* SAFE */
|
| H A D | zend_compile.c | 554 if (modifiers->u.constant.value.lval & ZEND_ACC_ABSTRACT) { 555 if(modifiers->u.constant.value.lval & ZEND_ACC_PRIVATE) { 569 if (body->u.constant.value.lval == ZEND_ACC_ABSTRACT) { 4232 znode lval; local 4267 fetch_simple_variable(&lval, varname, 0 TSRMLS_CC); /* Relies on the fact that the default fetch is BP_VAR_W */ 4273 zend_do_assign(&dummy, &lval, &result TSRMLS_CC); 4276 zend_do_assign_ref(NULL, &lval, &result TSRMLS_CC); 4307 znode lval; local 4329 fetch_simple_variable(&lval, varname, 0 TSRMLS_CC); /* Relies on the fact that the default fetch is BP_VAR_W */ 4331 zend_do_assign_ref(NULL, &lval, [all...] |
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_debug.c | 1547 long lval = Z_LVAL_PP(arg); local 1549 int l_tmp = zend_sprintf(s_tmp, "%ld", lval); /* SAFE */ 1730 long lval = Z_LVAL_PP(arg); local 1732 int l_tmp = zend_sprintf(s_tmp, "%ld", lval); /* SAFE */
|
| H A D | mysqlnd_ps_codec.c | 95 int64_t lval = 0; local 97 case 8:lval = (int64_t) sint8korr(*row);break; 102 case 4:lval = (int64_t) sint4korr(*row);break; 103 case 3:lval = (int64_t) sint3korr(*row);break; 104 case 2:lval = (int64_t) sint2korr(*row);break; 105 case 1:lval = (int64_t) *(int8_t*)*row;break; 109 if ((L64(2147483647) < (int64_t) lval) || (L64(-2147483648) > (int64_t) lval)) { 111 tmp_len = sprintf((char *)&tmp, MYSQLND_LL_SPEC, lval); 115 ZVAL_LONG(zv, (long) lval); /* th [all...] |