| /PHP_TRUNK/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;
|
| H A D | collator_is_numeric.h | 24 zend_uchar collator_is_numeric( UChar *str, int length, long *lval, double *dval, int allow_errors );
|
| H A D | collator_sort.c | 85 result->value.lval = ucol_strcoll( 194 result->value.lval = ucol_strcoll(
|
| /PHP_TRUNK/ext/intl/dateformat/ |
| H A D | dateformat_format_object.cpp | 50 long lval = Z_LVAL_PP(z); local 52 if ((long)valid_styles[i] == lval) {
|
| /PHP_TRUNK/ext/intl/timezone/ |
| H A D | timezone_methods.cpp | 177 long lval; local 180 switch (is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &lval, &dval, 0)) { 191 Z_LVAL_PP(arg) = lval;
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_constants.c | 129 c.value.value.lval = 1; 135 c.value.value.lval = 0; 148 c.value.value.lval = ZTS_V; 154 c.value.value.lval = ZEND_DEBUG; 179 ZEND_API void zend_register_long_constant(const char *name, uint name_len, long lval, int flags, int module_number TSRMLS_DC) argument 184 c.value.value.lval = lval;
|
| H A D | zend_constants.h | 41 #define REGISTER_LONG_CONSTANT(name, lval, flags) zend_register_long_constant((name), sizeof(name), (lval), (flags), module_number TSRMLS_CC) 46 #define REGISTER_NS_LONG_CONSTANT(ns, name, lval, flags) zend_register_long_constant(ZEND_NS_NAME(ns, name), sizeof(ZEND_NS_NAME(ns, name)), (lval), (flags), module_number TSRMLS_CC) 51 #define REGISTER_MAIN_LONG_CONSTANT(name, lval, flags) zend_register_long_constant((name), sizeof(name), (lval), (flags), 0 TSRMLS_CC) 65 ZEND_API void zend_register_long_constant(const char *name, uint name_len, long lval, int flags, int module_number TSRMLS_DC);
|
| H A D | zend_list.c | 101 rsrc_result->value.lval = rsrc_id; 133 id = (*passed_id)->value.lval;
|
| H A D | zend_variables.c | 62 zend_list_delete(zvalue->value.lval); 112 zend_list_addref(zvalue->value.lval);
|
| H A D | zend_operators.c | 595 long lval; local 623 lval = Z_LVAL_P(op); 625 Z_STRLEN_P(op) = zend_spprintf(&Z_STRVAL_P(op), 0, "%ld", lval); 818 long lval = Z_LVAL_P(op1) + Z_LVAL_P(op2); local 822 && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != (lval & LONG_SIGN_MASK)) { 826 ZVAL_LONG(result, lval); 880 long lval = Z_LVAL_P(op1) - Z_LVAL_P(op2); local 884 && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != (lval & LONG_SIGN_MASK)) { 888 ZVAL_LONG(result, lval); 1868 long lval; local 1902 long lval; local [all...] |
| 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_ini_scanner.l | 264 static void zend_ini_escape_string(zval *lval, char *str, int len, char quote_type TSRMLS_DC) 269 zend_ini_copy_value(lval, str, len); 272 s = t = Z_STRVAL_P(lval); 273 end = s + Z_STRLEN_P(lval); 292 Z_STRLEN_P(lval)--;
|
| H A D | zend_multiply.h | 24 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ 31 else (lval) = __tmpvar; \ 36 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ 43 else (lval) = __tmpvar; \ 48 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ 55 else (lval) = __tmpvar; \ 60 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ 68 else (lval) = __tmpvar; \ 73 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ 79 (lval) [all...] |
| H A D | zend_operators.h | 124 * The number's value is returned into the respective pointer, *lval or *dval, 131 static inline zend_uchar is_numeric_string_ex(const char *str, int length, long *lval, double *dval, int allow_errors, int *oflow_info) argument 254 if (lval) { 255 *lval = strtol(str, NULL, base); 268 static inline zend_uchar is_numeric_string(const char *str, int length, long *lval, double *dval, int allow_errors) { argument 269 return is_numeric_string_ex(str, length, lval, dval, allow_errors, NULL); 440 #define Z_LVAL(zval) (zval).value.lval 441 #define Z_BVAL(zval) ((zend_bool)(zval).value.lval) 452 #define Z_RESVAL(zval) (zval).value.lval
|
| H A D | zend_language_scanner.l | 563 retval_znode.u.constant.value.lval = 1; 1505 zendlval->value.lval = 0; 1507 zendlval->value.lval = strtol(bin, NULL, 2); 1520 zendlval->value.lval = strtol(yytext, NULL, 0); 1523 zendlval->value.lval = strtol(yytext, NULL, 0); 1551 zendlval->value.lval = 0; 1553 zendlval->value.lval = strtol(hex, NULL, 16); 1566 zendlval->value.lval = strtol(yytext, NULL, 10); 1674 zendlval->value.lval = CG(zend_lineno); 2186 zendlval->value.lval [all...] |
| /PHP_TRUNK/ext/mysqlnd/ |
| 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...] |
| /PHP_TRUNK/ext/filter/ |
| H A D | filter.c | 598 long lval; local 600 PHP_FILTER_GET_LONG_OPT(filter_args, lval); 604 filter_flags = lval; 610 filter = lval;
|
| H A D | logical_filters.c | 318 long lval; local 388 switch (is_numeric_string(num, p - num, &lval, &dval, 0)) { 392 Z_DVAL_P(value) = lval;
|
| /PHP_TRUNK/ext/intl/converter/ |
| H A D | converter.c | 157 long lval = Z_LVAL_P(val); local 158 if ((lval < 0) || (lval > 0x10FFFF)) { 159 php_converter_throw_failure(objval, U_ILLEGAL_ARGUMENT_ERROR TSRMLS_CC, "Invalid codepoint U+%04lx", lval); 162 if (lval > 0xFFFF) { 166 *(args->target++) = (UChar)(((lval - 0x10000) >> 10) | 0xD800); 167 *(args->target++) = (UChar)(((lval - 0x10000) & 0x3FF) | 0xDC00); 173 *(args->target++) = (UChar)lval;
|
| /PHP_TRUNK/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_TRUNK/ext/opcache/Optimizer/ |
| H A D | pass2.c | 167 nest_levels = ZEND_OP2_LITERAL(opline).value.lval;
|
| H A D | pass1_5.c | 285 char chval = (char)ZEND_OP2_LITERAL(opline).value.lval; 308 *ptr = (char)ZEND_OP2_LITERAL(next_op).value.lval;
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | ZendAccelerator.c | 1486 ((*EG(opline_ptr))->op2.u.constant.value.lval == ZEND_INCLUDE_ONCE || 1487 (*EG(opline_ptr))->op2.u.constant.value.lval == ZEND_REQUIRE_ONCE))) { 1643 ((*EG(opline_ptr))->op2.u.constant.value.lval != ZEND_INCLUDE_ONCE && 1644 (*EG(opline_ptr))->op2.u.constant.value.lval != ZEND_REQUIRE_ONCE)) { 1792 (opline->op2.u.constant.value.lval == ZEND_INCLUDE_ONCE || 1793 opline->op2.u.constant.value.lval == ZEND_REQUIRE_ONCE)) { 1894 ((*EG(opline_ptr))->op2.u.constant.value.lval == ZEND_INCLUDE_ONCE || 1895 (*EG(opline_ptr))->op2.u.constant.value.lval == ZEND_REQUIRE_ONCE))) { 1959 ((*EG(opline_ptr))->op2.u.constant.value.lval == ZEND_INCLUDE_ONCE || 1960 (*EG(opline_ptr))->op2.u.constant.value.lval [all...] |
| /PHP_TRUNK/ext/sockets/ |
| H A D | conversions.c | 330 long lval; local 335 switch (is_numeric_string(Z_STRVAL(lzval), Z_STRLEN(lzval), &lval, &dval, 0)) { 345 Z_LVAL(lzval) = lval; 367 long lval; local 370 lval = from_zval_integer_common(arr_value, ctx); 375 if (lval > INT_MAX || lval < INT_MIN) { 381 ival = (int)lval; 386 long lval; local 389 lval 405 long lval; local 424 long lval; local 443 long lval; local 462 long lval; local 1052 long lval; local [all...] |