l 419 Zend/zend_API.c zend_long l; l 422 Zend/zend_API.c if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), &l, dest)) != IS_DOUBLE)) { l 424 Zend/zend_API.c *dest = (double)(l); l 1591 Zend/zend_API.c ZEND_API zval *add_get_index_long(zval *arg, zend_ulong index, zend_long l) /* {{{ */ l 1595 Zend/zend_API.c ZVAL_LONG(&tmp, l); l 442 Zend/zend_API.h ZEND_API zval *add_get_index_long(zval *arg, zend_ulong idx, zend_long l); l 450 Zend/zend_API.h ZEND_API int add_property_long_ex(zval *arg, const char *key, size_t key_len, zend_long l); l 566 Zend/zend_API.h #define CHECK_NULL_PATH(p, l) (strlen(p) != l) l 568 Zend/zend_API.h #define ZVAL_STRINGL(z, s, l) do { \ l 569 Zend/zend_API.h ZVAL_NEW_STR(z, zend_string_init(s, l, 0)); \ l 581 Zend/zend_API.h #define ZVAL_PSTRINGL(z, s, l) do { \ l 582 Zend/zend_API.h ZVAL_NEW_STR(z, zend_string_init(s, l, 1)); \ l 613 Zend/zend_API.h #define RETVAL_LONG(l) ZVAL_LONG(return_value, l) l 620 Zend/zend_API.h #define RETVAL_STRINGL(s, l) ZVAL_STRINGL(return_value, s, l) l 631 Zend/zend_API.h #define RETURN_LONG(l) { RETVAL_LONG(l); return; } l 638 Zend/zend_API.h #define RETURN_STRINGL(s, l) { RETVAL_STRINGL(s, l); return; } l 464 Zend/zend_exceptions.c static size_t compute_escaped_string_len(const char *s, size_t l) { l 465 Zend/zend_exceptions.c size_t i, len = l; l 466 Zend/zend_exceptions.c for (i = 0; i < l; ++i) { l 478 Zend/zend_exceptions.c static void smart_str_append_escaped(smart_str *str, const char *s, size_t l) { l 480 Zend/zend_exceptions.c size_t i, len = compute_escaped_string_len(s, l); l 486 Zend/zend_exceptions.c for (i = 0; i < l; ++i) { l 98 Zend/zend_language_scanner.c #define HANDLE_NEWLINES(s, l) \ l 100 Zend/zend_language_scanner.c char *p = (s), *boundary = p+(l); \ l 26 Zend/zend_llist.c ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char persistent) l 28 Zend/zend_llist.c l->head = NULL; l 29 Zend/zend_llist.c l->tail = NULL; l 30 Zend/zend_llist.c l->count = 0; l 31 Zend/zend_llist.c l->size = size; l 32 Zend/zend_llist.c l->dtor = dtor; l 33 Zend/zend_llist.c l->persistent = persistent; l 36 Zend/zend_llist.c ZEND_API void zend_llist_add_element(zend_llist *l, void *element) l 38 Zend/zend_llist.c zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent); l 40 Zend/zend_llist.c tmp->prev = l->tail; l 42 Zend/zend_llist.c if (l->tail) { l 43 Zend/zend_llist.c l->tail->next = tmp; l 45 Zend/zend_llist.c l->head = tmp; l 47 Zend/zend_llist.c l->tail = tmp; l 48 Zend/zend_llist.c memcpy(tmp->data, element, l->size); l 50 Zend/zend_llist.c ++l->count; l 54 Zend/zend_llist.c ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element) l 56 Zend/zend_llist.c zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent); l 58 Zend/zend_llist.c tmp->next = l->head; l 60 Zend/zend_llist.c if (l->head) { l 61 Zend/zend_llist.c l->head->prev = tmp; l 63 Zend/zend_llist.c l->tail = tmp; l 65 Zend/zend_llist.c l->head = tmp; l 66 Zend/zend_llist.c memcpy(tmp->data, element, l->size); l 68 Zend/zend_llist.c ++l->count; l 72 Zend/zend_llist.c #define DEL_LLIST_ELEMENT(current, l) \ l 76 Zend/zend_llist.c (l)->head = (current)->next;\ l 81 Zend/zend_llist.c (l)->tail = (current)->prev;\ l 83 Zend/zend_llist.c if ((l)->dtor) {\ l 84 Zend/zend_llist.c (l)->dtor((current)->data);\ l 86 Zend/zend_llist.c pefree((current), (l)->persistent);\ l 87 Zend/zend_llist.c --l->count; l 90 Zend/zend_llist.c ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, void *element2)) l 92 Zend/zend_llist.c zend_llist_element *current=l->head; l 96 Zend/zend_llist.c DEL_LLIST_ELEMENT(current, l); l 104 Zend/zend_llist.c ZEND_API void zend_llist_destroy(zend_llist *l) l 106 Zend/zend_llist.c zend_llist_element *current=l->head, *next; l 110 Zend/zend_llist.c if (l->dtor) { l 111 Zend/zend_llist.c l->dtor(current->data); l 113 Zend/zend_llist.c pefree(current, l->persistent); l 117 Zend/zend_llist.c l->count = 0; l 121 Zend/zend_llist.c ZEND_API void zend_llist_clean(zend_llist *l) l 123 Zend/zend_llist.c zend_llist_destroy(l); l 124 Zend/zend_llist.c l->head = l->tail = NULL; l 128 Zend/zend_llist.c ZEND_API void zend_llist_remove_tail(zend_llist *l) l 130 Zend/zend_llist.c zend_llist_element *old_tail = l->tail; l 138 Zend/zend_llist.c l->head = NULL; l 141 Zend/zend_llist.c l->tail = old_tail->prev; l 142 Zend/zend_llist.c --l->count; l 144 Zend/zend_llist.c if (l->dtor) { l 145 Zend/zend_llist.c l->dtor(old_tail->data); l 147 Zend/zend_llist.c pefree(old_tail, l->persistent); l 164 Zend/zend_llist.c ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)) l 168 Zend/zend_llist.c element=l->head; l 172 Zend/zend_llist.c DEL_LLIST_ELEMENT(element, l); l 179 Zend/zend_llist.c ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func) l 183 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 196 Zend/zend_llist.c ZEND_API void zend_llist_sort(zend_llist *l, llist_compare_func_t comp_func) l 203 Zend/zend_llist.c if (l->count <= 0) { l 207 Zend/zend_llist.c elements = (zend_llist_element **) emalloc(l->count * sizeof(zend_llist_element *)); l 211 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 215 Zend/zend_llist.c zend_sort(elements, l->count, sizeof(zend_llist_element *), l 218 Zend/zend_llist.c l->head = elements[0]; l 221 Zend/zend_llist.c for (i = 1; i < l->count; i++) { l 226 Zend/zend_llist.c l->tail = elements[i-1]; l 231 Zend/zend_llist.c ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void *arg) l 235 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 241 Zend/zend_llist.c ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func, int num_args, ...) l 247 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 254 Zend/zend_llist.c ZEND_API size_t zend_llist_count(zend_llist *l) l 256 Zend/zend_llist.c return l->count; l 260 Zend/zend_llist.c ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos) l 262 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 264 Zend/zend_llist.c *current = l->head; l 273 Zend/zend_llist.c ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos) l 275 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 277 Zend/zend_llist.c *current = l->tail; l 286 Zend/zend_llist.c ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos) l 288 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 300 Zend/zend_llist.c ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) l 302 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 50 Zend/zend_llist.h ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char persistent); l 51 Zend/zend_llist.h ZEND_API void zend_llist_add_element(zend_llist *l, void *element); l 52 Zend/zend_llist.h ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element); l 53 Zend/zend_llist.h ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, void *element2)); l 54 Zend/zend_llist.h ZEND_API void zend_llist_destroy(zend_llist *l); l 55 Zend/zend_llist.h ZEND_API void zend_llist_clean(zend_llist *l); l 56 Zend/zend_llist.h ZEND_API void zend_llist_remove_tail(zend_llist *l); l 58 Zend/zend_llist.h ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func); l 59 Zend/zend_llist.h ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)); l 60 Zend/zend_llist.h ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void *arg); l 61 Zend/zend_llist.h ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func, int num_args, ...); l 62 Zend/zend_llist.h ZEND_API size_t zend_llist_count(zend_llist *l); l 63 Zend/zend_llist.h ZEND_API void zend_llist_sort(zend_llist *l, llist_compare_func_t comp_func); l 66 Zend/zend_llist.h ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos); l 67 Zend/zend_llist.h ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos); l 68 Zend/zend_llist.h ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos); l 69 Zend/zend_llist.h ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos); l 71 Zend/zend_llist.h #define zend_llist_get_first(l) zend_llist_get_first_ex(l, NULL) l 72 Zend/zend_llist.h #define zend_llist_get_last(l) zend_llist_get_last_ex(l, NULL) l 73 Zend/zend_llist.h #define zend_llist_get_next(l) zend_llist_get_next_ex(l, NULL) l 74 Zend/zend_llist.h #define zend_llist_get_prev(l) zend_llist_get_prev_ex(l, NULL) l 177 Zend/zend_operators.c zend_long l = Z_RES_HANDLE_P(op); l 179 Zend/zend_operators.c ZVAL_LONG(op, l); l 441 Zend/zend_operators.c zend_long l = (Z_RES_HANDLE_P(op) ? 1 : 0); l 444 Zend/zend_operators.c ZVAL_BOOL(op, l); l 137 Zend/zend_string.h static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, int persistent) l 139 Zend/zend_string.h zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); l 151 Zend/zend_string.h ZSTR_LEN(ret) = (n * m) + l; l 240 Zend/zend_string.h static zend_always_inline zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, int persistent) l 246 Zend/zend_string.h ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); l 247 Zend/zend_string.h ZSTR_LEN(ret) = (n * m) + l; l 254 Zend/zend_string.h ret = zend_string_safe_alloc(n, m, l, persistent); l 255 Zend/zend_string.h memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); l 608 Zend/zend_types.h #define ZVAL_LONG(z, l) { \ l 610 Zend/zend_types.h Z_LVAL_P(__z) = l; \ l 237 ext/com_dotnet/com_typeinfo.c size_t l; l 239 ext/com_dotnet/com_typeinfo.c l = strlen(search_string); l 241 ext/com_dotnet/com_typeinfo.c if ((TL = zend_ts_hash_str_find_ptr(&php_com_typelibraries, search_string, l)) != NULL) { l 249 ext/com_dotnet/com_typeinfo.c name_dup = estrndup(search_string, l); l 255 ext/com_dotnet/com_typeinfo.c search_string, l, TL)) { l 129 ext/date/lib/parse_date.c #define TIMELIB_PROCESS_YEAR(x, l) { \ l 130 ext/date/lib/parse_date.c if (((x) == TIMELIB_UNSET) || ((l) >= 4)) { \ l 53 ext/date/lib/parse_tz.c #define timelib_conv_int(l) (l) l 55 ext/date/lib/parse_tz.c #define timelib_conv_int(l) ((l & 0x000000ff) << 24) + ((l & 0x0000ff00) << 8) + ((l & 0x00ff0000) >> 8) + ((l & 0xff000000) >> 24) l 148 ext/dba/libinifile/inifile.c size_t l; l 157 ext/dba/libinifile/inifile.c l = strlen(val); l 158 ext/dba/libinifile/inifile.c while (l && (strchr(" \t\r\n", val[l-1]))) { l 159 ext/dba/libinifile/inifile.c l--; l 161 ext/dba/libinifile/inifile.c return estrndup(val, l); l 1932 ext/exif/exif.c int i, ap, l, b, idx=0, unknown=0; l 2005 ext/exif/exif.c if ((l = info_data->length) > 1) { l 2008 ext/exif/exif.c for(ap=0; ap<l; ap++) { l 2009 ext/exif/exif.c if (l>1) { l 2014 ext/exif/exif.c if (l>1) { l 2016 ext/exif/exif.c for (b=0;b<l;b++) { l 2023 ext/exif/exif.c if (l==1) { l 2032 ext/exif/exif.c if (l==1) { l 2040 ext/exif/exif.c if (l>1) { l 2042 ext/exif/exif.c for (b=0;b<l;b++) { l 2049 ext/exif/exif.c if (l==1) { l 2058 ext/exif/exif.c if (l==1) { l 2066 ext/exif/exif.c if (l==1) { l 2074 ext/exif/exif.c if (l==1) { l 2083 ext/exif/exif.c if (l>1) { l 69 ext/fileinfo/libmagic/apprentice.c #define EATAB {while (isascii((unsigned char) *l) && \ l 70 ext/fileinfo/libmagic/apprentice.c isspace((unsigned char) *l)) ++l;} l 71 ext/fileinfo/libmagic/apprentice.c #define LOWCASE(l) (isupper((unsigned char) (l)) ? \ l 72 ext/fileinfo/libmagic/apprentice.c tolower((unsigned char) (l)) : (l)) l 263 ext/fileinfo/libmagic/apprentice.c get_type(const struct type_tbl_s *tbl, const char *l, const char **t) l 268 ext/fileinfo/libmagic/apprentice.c if (strncmp(l, p->name, p->len) == 0) { l 270 ext/fileinfo/libmagic/apprentice.c *t = l + p->len; l 278 ext/fileinfo/libmagic/apprentice.c get_standard_integer_type(const char *l, const char **t) l 282 ext/fileinfo/libmagic/apprentice.c if (isalpha((unsigned char)l[1])) { l 283 ext/fileinfo/libmagic/apprentice.c switch (l[1]) { l 316 ext/fileinfo/libmagic/apprentice.c l += 2; l 317 ext/fileinfo/libmagic/apprentice.c } else if (isdigit((unsigned char)l[1])) { l 328 ext/fileinfo/libmagic/apprentice.c if (isdigit((unsigned char)l[2])) { l 332 ext/fileinfo/libmagic/apprentice.c switch (l[1]) { l 349 ext/fileinfo/libmagic/apprentice.c l += 2; l 355 ext/fileinfo/libmagic/apprentice.c ++l; l 358 ext/fileinfo/libmagic/apprentice.c *t = l; l 1487 ext/fileinfo/libmagic/apprentice.c get_cond(const char *l, const char **t) l 1502 ext/fileinfo/libmagic/apprentice.c if (strncmp(l, p->name, p->len) == 0 && l 1503 ext/fileinfo/libmagic/apprentice.c isspace((unsigned char)l[p->len])) { l 1505 ext/fileinfo/libmagic/apprentice.c *t = l + p->len; l 1559 ext/fileinfo/libmagic/apprentice.c const char *l = *lp; l 1561 ext/fileinfo/libmagic/apprentice.c while (!isspace((unsigned char)*++l)) l 1562 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1569 ext/fileinfo/libmagic/apprentice.c "invalid", *l); l 1570 ext/fileinfo/libmagic/apprentice.c *lp = l; l 1573 ext/fileinfo/libmagic/apprentice.c *lp = l; l 1581 ext/fileinfo/libmagic/apprentice.c const char *l = *lp; l 1585 ext/fileinfo/libmagic/apprentice.c ++l; l 1587 ext/fileinfo/libmagic/apprentice.c val = (uint64_t)strtoull(l, &t, 0); l 1588 ext/fileinfo/libmagic/apprentice.c l = t; l 1590 ext/fileinfo/libmagic/apprentice.c eatsize(&l); l 1591 ext/fileinfo/libmagic/apprentice.c *lp = l; l 1597 ext/fileinfo/libmagic/apprentice.c const char *l = *lp; l 1601 ext/fileinfo/libmagic/apprentice.c while (!isspace((unsigned char)*++l)) { l 1602 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1610 ext/fileinfo/libmagic/apprentice.c m->str_range = CAST(uint32_t, strtoul(l, &t, 0)); l 1613 ext/fileinfo/libmagic/apprentice.c l = t - 1; l 1679 ext/fileinfo/libmagic/apprentice.c "invalid", *l); l 1683 ext/fileinfo/libmagic/apprentice.c if (l[1] == '/' && !isspace((unsigned char)l[2])) l 1684 ext/fileinfo/libmagic/apprentice.c l++; l 1688 ext/fileinfo/libmagic/apprentice.c *lp = l; l 1691 ext/fileinfo/libmagic/apprentice.c *lp = l; l 1707 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 1718 ext/fileinfo/libmagic/apprentice.c while (*l == '>') { l 1719 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1774 ext/fileinfo/libmagic/apprentice.c if (*l == '&') { /* m->cont_level == 0 checked below. */ l 1775 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1778 ext/fileinfo/libmagic/apprentice.c if (*l == '(') { l 1779 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1784 ext/fileinfo/libmagic/apprentice.c if (*l == '&') { /* m->cont_level == 0 checked below */ l 1785 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1795 ext/fileinfo/libmagic/apprentice.c m->offset = (uint32_t)strtoul(l, &t, 0); l 1796 ext/fileinfo/libmagic/apprentice.c if (l == t) l 1798 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "offset `%s' invalid", l); l 1799 ext/fileinfo/libmagic/apprentice.c l = t; l 1807 ext/fileinfo/libmagic/apprentice.c if (*l == '.') { l 1808 ext/fileinfo/libmagic/apprentice.c l++; l 1809 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1853 ext/fileinfo/libmagic/apprentice.c *l); l 1856 ext/fileinfo/libmagic/apprentice.c l++; l 1860 ext/fileinfo/libmagic/apprentice.c if (*l == '~') { l 1862 ext/fileinfo/libmagic/apprentice.c l++; l 1864 ext/fileinfo/libmagic/apprentice.c if ((op = get_op(*l)) != -1) { l 1866 ext/fileinfo/libmagic/apprentice.c l++; l 1868 ext/fileinfo/libmagic/apprentice.c if (*l == '(') { l 1870 ext/fileinfo/libmagic/apprentice.c l++; l 1872 ext/fileinfo/libmagic/apprentice.c if (isdigit((unsigned char)*l) || *l == '-') { l 1873 ext/fileinfo/libmagic/apprentice.c m->in_offset = (int32_t)strtol(l, &t, 0); l 1874 ext/fileinfo/libmagic/apprentice.c if (l == t) l 1877 ext/fileinfo/libmagic/apprentice.c "in_offset `%s' invalid", l); l 1878 ext/fileinfo/libmagic/apprentice.c l = t; l 1880 ext/fileinfo/libmagic/apprentice.c if (*l++ != ')' || l 1881 ext/fileinfo/libmagic/apprentice.c ((m->in_op & FILE_OPINDIRECT) && *l++ != ')')) l 1889 ext/fileinfo/libmagic/apprentice.c m->cond = get_cond(l, &l); l 1899 ext/fileinfo/libmagic/apprentice.c if (*l == 'u') { l 1905 ext/fileinfo/libmagic/apprentice.c m->type = get_type(type_tbl, l + 1, &l); l 1911 ext/fileinfo/libmagic/apprentice.c m->type = get_standard_integer_type(l, &l); l 1923 ext/fileinfo/libmagic/apprentice.c m->type = get_type(type_tbl, l, &l); l 1930 ext/fileinfo/libmagic/apprentice.c if (*l == 'd') l 1931 ext/fileinfo/libmagic/apprentice.c m->type = get_standard_integer_type(l, &l); l 1932 ext/fileinfo/libmagic/apprentice.c else if (*l == 's' && !isalpha((unsigned char)l[1])) { l 1934 ext/fileinfo/libmagic/apprentice.c ++l; l 1941 ext/fileinfo/libmagic/apprentice.c m->type = get_type(special_tbl, l, &l); l 1946 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "type `%s' invalid", l); l 1954 ext/fileinfo/libmagic/apprentice.c if (*l == '~') { l 1959 ext/fileinfo/libmagic/apprentice.c ++l; l 1963 ext/fileinfo/libmagic/apprentice.c if ((op = get_op(*l)) != -1) { l 1976 ext/fileinfo/libmagic/apprentice.c r = parse_indirect_modifier(ms, m, &l); l 1978 ext/fileinfo/libmagic/apprentice.c r = parse_string_modifier(ms, m, &l); l 1982 ext/fileinfo/libmagic/apprentice.c parse_op_modifier(ms, m, &l, op); l 1991 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1994 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 1995 ext/fileinfo/libmagic/apprentice.c ++l; l 1996 ext/fileinfo/libmagic/apprentice.c if (*l == '=') { l 2002 ext/fileinfo/libmagic/apprentice.c ++l; l 2009 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 2010 ext/fileinfo/libmagic/apprentice.c ++l; l 2011 ext/fileinfo/libmagic/apprentice.c if (*l == '=') { l 2013 ext/fileinfo/libmagic/apprentice.c ++l; l 2017 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 2018 ext/fileinfo/libmagic/apprentice.c ++l; l 2022 ext/fileinfo/libmagic/apprentice.c if (*l == 'x' && ((isascii((unsigned char)l[1]) && l 2023 ext/fileinfo/libmagic/apprentice.c isspace((unsigned char)l[1])) || !l[1])) { l 2024 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 2025 ext/fileinfo/libmagic/apprentice.c ++l; l 2032 ext/fileinfo/libmagic/apprentice.c if (m->reln != 'x' && getvalue(ms, m, &l, action)) l 2045 ext/fileinfo/libmagic/apprentice.c if (l[0] == '\b') { l 2046 ext/fileinfo/libmagic/apprentice.c ++l; l 2048 ext/fileinfo/libmagic/apprentice.c } else if ((l[0] == '\\') && (l[1] == 'b')) { l 2049 ext/fileinfo/libmagic/apprentice.c ++l; l 2050 ext/fileinfo/libmagic/apprentice.c ++l; l 2053 ext/fileinfo/libmagic/apprentice.c for (i = 0; (m->desc[i++] = *l++) != '\0' && i < sizeof(m->desc); ) l 2080 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 2097 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 2103 ext/fileinfo/libmagic/apprentice.c m->factor_op = *l++; l 2106 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "Unknown factor op `%c'", *l); l 2110 ext/fileinfo/libmagic/apprentice.c factor = strtoul(l, &el, 0); l 2116 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "Bad factor `%s'", l); l 2143 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 2150 ext/fileinfo/libmagic/apprentice.c "`%.*s', new type `%s'", name, (int)len, buf, l); l 2161 ext/fileinfo/libmagic/apprentice.c for (i = 0; *l && i < len && goodchar(*l, extra); buf[i++] = *l++) l 2164 ext/fileinfo/libmagic/apprentice.c if (i == len && *l) { l 2171 ext/fileinfo/libmagic/apprentice.c if (!isspace((unsigned char)*l) && !goodchar(*l, extra)) l 2173 ext/fileinfo/libmagic/apprentice.c name, line, *l); l 2754 ext/fileinfo/libmagic/apprentice.c const char *l = *p; l 2756 ext/fileinfo/libmagic/apprentice.c if (LOWCASE(*l) == 'u') l 2757 ext/fileinfo/libmagic/apprentice.c l++; l 2759 ext/fileinfo/libmagic/apprentice.c switch (LOWCASE(*l)) { l 2765 ext/fileinfo/libmagic/apprentice.c l++; l 2771 ext/fileinfo/libmagic/apprentice.c *p = l; l 741 ext/fileinfo/libmagic/cdf.c cdf_namecmp(const char *d, const uint16_t *s, size_t l) l 743 ext/fileinfo/libmagic/cdf.c for (; l--; d++, s++) l 956 ext/fileinfo/libmagic/cdf.c uint32_t l = CDF_GETUINT32(q, o); l 957 ext/fileinfo/libmagic/cdf.c inp[i].pi_str.s_len = l; l 959 ext/fileinfo/libmagic/cdf.c (const void *)(&q[o4 + sizeof(l)]); l 961 ext/fileinfo/libmagic/cdf.c "u, s = %s\n", l, l 962 ext/fileinfo/libmagic/cdf.c CDF_ROUND(l, sizeof(l)), l 964 ext/fileinfo/libmagic/cdf.c if (l & 1) l 965 ext/fileinfo/libmagic/cdf.c l++; l 966 ext/fileinfo/libmagic/cdf.c o += l >> 1; l 1026 ext/fileinfo/libmagic/cdf.c #define extract_catalog_field(t, f, l) \ l 1027 ext/fileinfo/libmagic/cdf.c if (b + l + sizeof(cep->f) > eb) { \ l 1031 ext/fileinfo/libmagic/cdf.c memcpy(&cep->f, b + (l), sizeof(cep->f)); \ l 30 ext/fileinfo/libmagic/elfclass.h u.l = 1; l 149 ext/fileinfo/libmagic/file.h uint32_t l; l 459 ext/fileinfo/libmagic/softmagic.c v = file_signextend(ms, m, (uint64_t)p->l); l 545 ext/fileinfo/libmagic/softmagic.c file_fmttime(p->l, 0, tbuf)) == -1) l 555 ext/fileinfo/libmagic/softmagic.c file_fmttime(p->l, FILE_T_LOCAL, tbuf)) == -1) l 871 ext/fileinfo/libmagic/softmagic.c DO_CVT(l, (uint32_t)); l 973 ext/fileinfo/libmagic/softmagic.c p->l = (int32_t) l 995 ext/fileinfo/libmagic/softmagic.c p->l = (int32_t) l 1013 ext/fileinfo/libmagic/softmagic.c p->l = (int32_t) l 1021 ext/fileinfo/libmagic/softmagic.c p->l = ((uint32_t)p->hl[0]<<24)|((uint32_t)p->hl[1]<<16)| l 1026 ext/fileinfo/libmagic/softmagic.c p->l = ((uint32_t)p->hl[3]<<24)|((uint32_t)p->hl[2]<<16)| l 1256 ext/fileinfo/libmagic/softmagic.c off = q->l; l 1539 ext/fileinfo/libmagic/softmagic.c offset = p->l & off; l 1542 ext/fileinfo/libmagic/softmagic.c offset = p->l | off; l 1545 ext/fileinfo/libmagic/softmagic.c offset = p->l ^ off; l 1548 ext/fileinfo/libmagic/softmagic.c offset = p->l + off; l 1551 ext/fileinfo/libmagic/softmagic.c offset = p->l - off; l 1554 ext/fileinfo/libmagic/softmagic.c offset = p->l * off; l 1557 ext/fileinfo/libmagic/softmagic.c offset = p->l / off; l 1560 ext/fileinfo/libmagic/softmagic.c offset = p->l % off; l 1564 ext/fileinfo/libmagic/softmagic.c offset = p->l; l 1845 ext/fileinfo/libmagic/softmagic.c uint64_t l = m->value.q; l 1875 ext/fileinfo/libmagic/softmagic.c v = p->l; l 1960 ext/fileinfo/libmagic/softmagic.c l = 0; l 1966 ext/fileinfo/libmagic/softmagic.c l = 0; l 1972 ext/fileinfo/libmagic/softmagic.c l = 0; l 1984 ext/fileinfo/libmagic/softmagic.c l = 0; l 2014 ext/fileinfo/libmagic/softmagic.c l = v = 0; l 2095 ext/fileinfo/libmagic/softmagic.c matched = v != l; l 2099 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2103 ext/fileinfo/libmagic/softmagic.c matched = v == l; l 2107 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2112 ext/fileinfo/libmagic/softmagic.c matched = v > l; l 2117 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2120 ext/fileinfo/libmagic/softmagic.c matched = (int64_t) v > (int64_t) l; l 2124 ext/fileinfo/libmagic/softmagic.c (long long)v, (long long)l, matched); l 2130 ext/fileinfo/libmagic/softmagic.c matched = v < l; l 2135 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2138 ext/fileinfo/libmagic/softmagic.c matched = (int64_t) v < (int64_t) l; l 2142 ext/fileinfo/libmagic/softmagic.c (long long)v, (long long)l, matched); l 2147 ext/fileinfo/libmagic/softmagic.c matched = (v & l) == l; l 2152 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, (unsigned long long)l, l 2157 ext/fileinfo/libmagic/softmagic.c matched = (v & l) != l; l 2162 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, (unsigned long long)l, l 460 ext/filter/logical_filters.c size_t l; l 465 ext/filter/logical_filters.c l = len; l 466 ext/filter/logical_filters.c e = domain + l; l 472 ext/filter/logical_filters.c l--; l 476 ext/filter/logical_filters.c if (l > 253) { l 537 ext/filter/logical_filters.c size_t l; l 544 ext/filter/logical_filters.c l = strlen(s); l 545 ext/filter/logical_filters.c e = url->host + l; l 549 ext/filter/logical_filters.c if (*s == '[' && *t == ']' && _php_filter_validate_ipv6((s + 1), l - 2)) { l 555 ext/filter/logical_filters.c if (!_php_filter_validate_domain(url->host, l, FILTER_FLAG_HOSTNAME)) { l 150 ext/filter/sanitizing_filters.c size_t l, i; l 152 ext/filter/sanitizing_filters.c l = strlen((const char*)allowed_list); l 153 ext/filter/sanitizing_filters.c for (i = 0; i < l; ++i) { l 3514 ext/gd/gd.c int ch = 0, col, x, y, size, i, l = 0; l 3532 ext/gd/gd.c l = strlen((char *)str); l 3549 ext/gd/gd.c for (i = 0; (i < l); i++) { l 3555 ext/gd/gd.c for (i = 0; (i < l); i++) { l 35 ext/gd/gd_ctx.c static int _php_image_output_putbuf(struct gdIOCtx *ctx, const void* buf, int l) /* {{{ */ l 37 ext/gd/gd_ctx.c return php_write((void *)buf, l); l 53 ext/gd/gd_ctx.c static int _php_image_stream_putbuf(struct gdIOCtx *ctx, const void* buf, int l) /* {{{ */ l 56 ext/gd/gd_ctx.c return php_stream_write(stream, (void *)buf, l); l 1595 ext/gd/libgd/gd.c int l; l 1596 ext/gd/libgd/gd.c l = strlen ((char *) s); l 1597 ext/gd/libgd/gd.c for (i = 0; (i < l); i++) { l 1606 ext/gd/libgd/gd.c int l; l 1607 ext/gd/libgd/gd.c l = strlen ((char *) s); l 1608 ext/gd/libgd/gd.c for (i = 0; (i < l); i++) { l 1619 ext/gd/libgd/gd.c int l; l 1620 ext/gd/libgd/gd.c l = strlen16(s); l 1621 ext/gd/libgd/gd.c for (i = 0; (i < l); i++) { l 1630 ext/gd/libgd/gd.c int l; l 1631 ext/gd/libgd/gd.c l = strlen16(s); l 1632 ext/gd/libgd/gd.c for (i = 0; i < l; i++) { l 1866 ext/gd/libgd/gd.c int l, x1, x2, dy; l 1931 ext/gd/libgd/gd.c l = x+1; l 1934 ext/gd/libgd/gd.c if (l<x1) { l 1935 ext/gd/libgd/gd.c FILL_PUSH(y, l, x1-1, -dy); l 1942 ext/gd/libgd/gd.c FILL_PUSH(y, l, x-1, dy); l 1949 ext/gd/libgd/gd.c l = x; l 1961 ext/gd/libgd/gd.c int i, l, x1, x2, dy; l 2001 ext/gd/libgd/gd.c l = x+1; l 2004 ext/gd/libgd/gd.c if (l<x1) { l 2005 ext/gd/libgd/gd.c FILL_PUSH(y, l, x1-1, -dy); l 2014 ext/gd/libgd/gd.c FILL_PUSH(y, l, x-1, dy); l 2020 ext/gd/libgd/gd.c l = x; l 1575 ext/gd/libgd/gd_interpolation.c int l; l 1584 ext/gd/libgd/gd_interpolation.c for (l = -1; l < 3; l++) { l 1585 ext/gd/libgd/gd_interpolation.c const gdFixed f = gd_itofx(l) - f_g; l 1592 ext/gd/libgd/gd_interpolation.c const int _k = ((k+1)*4) + (l+1); l 2072 ext/gd/libgd/gd_interpolation.c int l; l 2091 ext/gd/libgd/gd_interpolation.c for (l=-1; l< 3; l++) { l 2092 ext/gd/libgd/gd_interpolation.c const gdFixed f = gd_itofx(l) - f_g; l 2098 ext/gd/libgd/gd_interpolation.c const int _k = ((k + 1) * 4) + (l + 1); l 66 ext/gd/libgd/wbmp.c int cnt, l, accu; l 75 ext/gd/libgd/wbmp.c for (l = cnt - 1; l > 0; l--) l 76 ext/gd/libgd/wbmp.c putout (0x80 | (i & 0x7f << 7 * l) >> 7 * l, out); l 178 ext/gd/libgd/xbm.c size_t i, l; l 185 ext/gd/libgd/xbm.c if ((l = strlen(name)) == 0) { l 189 ext/gd/libgd/xbm.c for (i=0; i<l; i++) { l 32 ext/hash/hash_gost.c l ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \ l 34 ext/hash/hash_gost.c t = (k2) + l; \ l 38 ext/hash/hash_gost.c #define R(tables, key, h, i, t, l, r) \ l 40 ext/hash/hash_gost.c l = h[i + 1]; \ l 58 ext/hash/hash_gost.c r = l; \ l 59 ext/hash/hash_gost.c l = t; \ l 89 ext/hash/hash_gost.c #define A(x, l, r) \ l 90 ext/hash/hash_gost.c l = x[0] ^ x[2]; \ l 98 ext/hash/hash_gost.c x[6] = l; \ l 101 ext/hash/hash_gost.c #define AA(x, l, r) \ l 102 ext/hash/hash_gost.c l = x[0]; \ l 106 ext/hash/hash_gost.c x[4] = l ^ r; \ l 108 ext/hash/hash_gost.c l = x[1]; \ l 112 ext/hash/hash_gost.c x[5] = l ^ r; \ l 125 ext/hash/hash_gost.c #define S(s, l, r) \ l 127 ext/hash/hash_gost.c s[i + 1] = l; l 200 ext/hash/hash_gost.c R((tables), key, h, i, t, l, r); \ l 201 ext/hash/hash_gost.c S(s, l, r); \ l 203 ext/hash/hash_gost.c A(u, l, r); \ l 207 ext/hash/hash_gost.c AA(v, l, r); \ l 213 ext/hash/hash_gost.c php_hash_uint32 l, r, t, key[8], u[8], v[8], w[8], s[8], *h = context->state, *m = data; l 291 ext/hash/hash_gost.c php_hash_uint32 i, j, l[8] = {0}; l 297 ext/hash/hash_gost.c memcpy(l, context->count, sizeof(context->count)); l 298 ext/hash/hash_gost.c Gost(context, l); l 299 ext/hash/hash_gost.c memcpy(l, &context->state[8], sizeof(l)); l 300 ext/hash/hash_gost.c Gost(context, l); l 200 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd); l 456 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd) l 459 ext/iconv/iconv.c size_t in_left = l; l 3825 ext/imap/php_imap.c int l = strlen(tmp) - 2, l2; l 3829 ext/imap/php_imap.c tmp[l] = '\0'; l 3830 ext/imap/php_imap.c tempstring = emalloc(l); l 3831 ext/imap/php_imap.c memcpy(tempstring, tmp, l); l 3835 ext/imap/php_imap.c tempstring = erealloc(tempstring, l + l2 + CRLF_LEN + 1); l 3836 ext/imap/php_imap.c memcpy(tempstring + l, custom_headers_param->value, l2); l 3837 ext/imap/php_imap.c memcpy(tempstring + l + l2, CRLF, CRLF_LEN); l 3838 ext/imap/php_imap.c l += l2 + CRLF_LEN; l 3843 ext/imap/php_imap.c mystring = emalloc(l + CRLF_LEN + 1); l 3844 ext/imap/php_imap.c memcpy(mystring, tempstring, l); l 3845 ext/imap/php_imap.c memcpy(mystring + l , CRLF, CRLF_LEN); l 3846 ext/imap/php_imap.c mystring[l + CRLF_LEN] = '\0'; l 93 ext/interbase/ibase_events.c char **events, unsigned short *l, char **event_buf, char **result_buf) l 108 ext/interbase/ibase_events.c *l = (unsigned short) isc_event_block(event_buf, result_buf, count, events[0], l 120 ext/interbase/ibase_events.c isc_wait_for_event(dummy_result, &ib_link->handle, *l, *event_buf, *result_buf); l 121 ext/interbase/ibase_events.c isc_event_counts(dummy_count, *l, *event_buf, *result_buf); l 482 ext/interbase/ibase_query.c double l; l 487 ext/interbase/ibase_query.c l = Z_DVAL_P(val) * pow(10, -array->ar_desc.array_desc_scale) + .5; l 489 ext/interbase/ibase_query.c l = Z_DVAL_P(val) * pow(10, -array->ar_desc.array_desc_scale) - .5; l 494 ext/interbase/ibase_query.c if (l > SHRT_MAX || l < SHRT_MIN) { l 498 ext/interbase/ibase_query.c *(short*) buf = (short) l; l 501 ext/interbase/ibase_query.c if (l > ISC_LONG_MAX || l < ISC_LONG_MIN) { l 505 ext/interbase/ibase_query.c *(ISC_LONG*) buf = (ISC_LONG) l; l 509 ext/interbase/ibase_query.c long double l; l 513 ext/interbase/ibase_query.c if (!sscanf(Z_STRVAL_P(val), "%Lf", &l)) { l 519 ext/interbase/ibase_query.c if (l > 0) { l 520 ext/interbase/ibase_query.c *(ISC_INT64 *) buf = (ISC_INT64) (l * pow(10, l 523 ext/interbase/ibase_query.c *(ISC_INT64 *) buf = (ISC_INT64) (l * pow(10, l 537 ext/interbase/ibase_query.c ISC_INT64 l; l 564 ext/interbase/ibase_query.c if (!sscanf(Z_STRVAL_P(val), "%" LL_MASK "d", &l)) { l 569 ext/interbase/ibase_query.c *(ISC_INT64 *) buf = l; l 884 ext/interbase/ibase_query.c ibase_tr_list **l; l 911 ext/interbase/ibase_query.c for (l = &ib_query->link->tr_list; *l != NULL; l = &(*l)->next); l 912 ext/interbase/ibase_query.c *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list)); l 913 ext/interbase/ibase_query.c (*l)->trans = trans; l 914 ext/interbase/ibase_query.c (*l)->next = NULL; l 1081 ext/interbase/ibase_query.c zend_long l; l 1108 ext/interbase/ibase_query.c "ls", &l, &query, &query_len) && l == PHP_IBASE_CREATE) { l 1116 ext/interbase/ibase_query.c } else if (((l = INI_INT("ibase.max_links")) != -1) && (IBG(num_links) >= l)) { l 1118 ext/interbase/ibase_query.c "(" ZEND_LONG_FMT ") reached", l); l 1317 ext/interbase/ibase_query.c unsigned short l; l 1339 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d", *(ISC_INT64 *) data); l 1340 ext/interbase/ibase_query.c ZVAL_STRINGL(val,string_data,l); l 1345 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, n % f); l 1347 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, -n % f); l 1349 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "-0.%0*" LL_MASK "d", -scale, -n % f); l 1351 ext/interbase/ibase_query.c ZVAL_STRINGL(val,string_data,l); l 1364 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), ZEND_LONG_FMT ".%0*" ZEND_LONG_FMT_SPEC, n / f, -scale, n % f); l 1366 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), ZEND_LONG_FMT ".%0*" ZEND_LONG_FMT_SPEC, n / f, -scale, -n % f); l 1368 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "-0.%0*" ZEND_LONG_FMT_SPEC, -scale, -n % f); l 1370 ext/interbase/ibase_query.c ZVAL_STRINGL(val, string_data, l); l 1404 ext/interbase/ibase_query.c l = strftime(string_data, sizeof(string_data), format, &t); l 1408 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d %02d:%02d:%02d", t.tm_mon+1, t.tm_mday, l 1412 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d", t.tm_mon + 1, t.tm_mday, t.tm_year+1900); l 1415 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%02d:%02d:%02d", t.tm_hour, t.tm_min, t.tm_sec); l 1419 ext/interbase/ibase_query.c ZVAL_STRINGL(val, string_data, l); l 580 ext/interbase/interbase.c ibase_tr_list *l; l 584 ext/interbase/interbase.c for (l = link->tr_list; l != NULL; ++i) { l 585 ext/interbase/interbase.c ibase_tr_list *p = l; l 612 ext/interbase/interbase.c l = l->next; l 678 ext/interbase/interbase.c ibase_tr_list **l; l 679 ext/interbase/interbase.c for (l = &trans->db_link[i]->tr_list; *l != NULL; l = &(*l)->next) { l 680 ext/interbase/interbase.c if ( (*l)->trans == trans) { l 681 ext/interbase/interbase.c ibase_tr_list *p = *l; l 682 ext/interbase/interbase.c *l = p->next; l 825 ext/interbase/interbase.c HMODULE l = GetModuleHandle("fbclient"); l 827 ext/interbase/interbase.c if (!l && !(l = GetModuleHandle("gds32"))) { l 830 ext/interbase/interbase.c info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); l 956 ext/interbase/interbase.c zend_long l; l 976 ext/interbase/interbase.c if ((l = INI_INT("ibase.max_links")) != -1 && IBG(num_links) >= l) { l 987 ext/interbase/interbase.c if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) { l 1086 ext/interbase/interbase.c ibase_tr_list *l; l 1115 ext/interbase/interbase.c for (l = ib_link->tr_list; l != NULL; l = l->next) { l 1116 ext/interbase/interbase.c if (l->trans != NULL) l->trans->handle = 0; l 1255 ext/interbase/interbase.c ibase_tr_list **l; l 1266 ext/interbase/interbase.c for (l = &ib_link[i]->tr_list; *l != NULL; l = &(*l)->next); l 1267 ext/interbase/interbase.c *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list)); l 1268 ext/interbase/interbase.c (*l)->trans = ib_trans; l 1269 ext/interbase/interbase.c (*l)->next = NULL; l 1463 ext/interbase/interbase.c int l; l 1465 ext/interbase/interbase.c l = spprintf(&res, 0, "%" LL_MASK "d", result); l 1466 ext/interbase/interbase.c RETURN_STRINGL(res, l); l 211 ext/interbase/php_ibase_udf.c ISC_INT64 l; l 251 ext/interbase/php_ibase_udf.c l = *(ISC_INT64*)argv[i]->dsc_address; l 253 ext/interbase/php_ibase_udf.c if (argv[i]->dsc_scale == 0 && l <= ZEND_LONG_MAX && l >= ZEND_LONG_MIN) { l 254 ext/interbase/php_ibase_udf.c ZVAL_LONG(&args[i], (zend_long)l); l 256 ext/interbase/php_ibase_udf.c ZVAL_DOUBLE(&args[i], ((double)l)/scales[-argv[i]->dsc_scale]); l 52 ext/intl/grapheme/grapheme_util.c void grapheme_substr_ascii(char *str, size_t str_len, int32_t f, int32_t l, char **sub_str, int32_t *sub_str_len) l 62 ext/intl/grapheme/grapheme_util.c if ((l < 0 && -l > str_len2)) { l 64 ext/intl/grapheme/grapheme_util.c } else if (l > 0 && l > str_len2) { l 65 ext/intl/grapheme/grapheme_util.c l = str_len2; l 72 ext/intl/grapheme/grapheme_util.c if (l < 0 && str_len2 < f - l) { l 90 ext/intl/grapheme/grapheme_util.c if (l < 0) { l 91 ext/intl/grapheme/grapheme_util.c l = (str_len2 - f) + l; l 92 ext/intl/grapheme/grapheme_util.c if (l < 0) { l 93 ext/intl/grapheme/grapheme_util.c l = 0; l 101 ext/intl/grapheme/grapheme_util.c if ((f + l) > str_len2) { l 102 ext/intl/grapheme/grapheme_util.c l = str_len - f; l 106 ext/intl/grapheme/grapheme_util.c *sub_str_len = l; l 27 ext/intl/grapheme/grapheme_util.h void grapheme_substr_ascii(char *str, size_t str_len, int32_t f, int32_t l, char **sub_str, int32_t *sub_str_len); l 85 ext/mbstring/libmbfl/tests/emoji.c int l = (result.val[i+2] & 0x03)<<8 | result.val[i+3]; l 86 ext/mbstring/libmbfl/tests/emoji.c int c = (h<<(2+8)) | l; l 3204 ext/mbstring/mbstring.c size_t size, l, n; l 3225 ext/mbstring/mbstring.c l = strlen(_from_encodings); l 3227 ext/mbstring/mbstring.c _from_encodings = erealloc(_from_encodings, l+n+2); l 3228 ext/mbstring/mbstring.c memcpy(_from_encodings + l, ",", 1); l 3229 ext/mbstring/mbstring.c memcpy(_from_encodings + l + 1, Z_STRVAL_P(hash_entry), Z_STRLEN_P(hash_entry) + 1); l 239 ext/mbstring/oniguruma/regcomp.c LengthType l = (LengthType )len; l 241 ext/mbstring/oniguruma/regcomp.c BBUF_ADD(reg, &l, SIZE_LENGTH); l 64 ext/mbstring/php_unicode.c long l, r, m; l 71 ext/mbstring/php_unicode.c if ((l = _ucprop_offsets[n]) == 0xffff) l 83 ext/mbstring/php_unicode.c while (l <= r) { l 88 ext/mbstring/php_unicode.c m = (l + r) >> 1; l 91 ext/mbstring/php_unicode.c l = m + 2; l 122 ext/mbstring/php_unicode.c static unsigned long case_lookup(unsigned long code, long l, long r, int field) l 129 ext/mbstring/php_unicode.c while (l <= r) { l 134 ext/mbstring/php_unicode.c m = (l + r) >> 1; l 137 ext/mbstring/php_unicode.c l = m + 3; l 147 ext/mbstring/php_unicode.c MBSTRING_API unsigned long php_turkish_toupper(unsigned long code, long l, long r, int field) l 152 ext/mbstring/php_unicode.c return case_lookup(code, l, r, field); l 155 ext/mbstring/php_unicode.c MBSTRING_API unsigned long php_turkish_tolower(unsigned long code, long l, long r, int field) l 160 ext/mbstring/php_unicode.c return case_lookup(code, l, r, field); l 166 ext/mbstring/php_unicode.c long l, r; l 176 ext/mbstring/php_unicode.c l = _uccase_len[0]; l 177 ext/mbstring/php_unicode.c r = (l + _uccase_len[1]) - 3; l 180 ext/mbstring/php_unicode.c return php_turkish_toupper(code, l, r, field); l 188 ext/mbstring/php_unicode.c l = _uccase_len[0] + _uccase_len[1]; l 191 ext/mbstring/php_unicode.c return case_lookup(code, l, r, field); l 197 ext/mbstring/php_unicode.c long l, r; l 207 ext/mbstring/php_unicode.c l = 0; l 211 ext/mbstring/php_unicode.c return php_turkish_tolower(code, l, r, field); l 219 ext/mbstring/php_unicode.c l = _uccase_len[0] + _uccase_len[1]; l 222 ext/mbstring/php_unicode.c return case_lookup(code, l, r, field); l 228 ext/mbstring/php_unicode.c long l, r; l 242 ext/mbstring/php_unicode.c l = 0; l 248 ext/mbstring/php_unicode.c l = _uccase_len[0]; l 249 ext/mbstring/php_unicode.c r = (l + _uccase_len[1]) - 3; l 251 ext/mbstring/php_unicode.c return case_lookup(code, l, r, field); l 1140 ext/mbstring/ucgendat/ucgendat.c long l, r, m; l 1143 ext/mbstring/ucgendat/ucgendat.c l = 0; l 1146 ext/mbstring/ucgendat/ucgendat.c while (l <= r) { l 1147 ext/mbstring/ucgendat/ucgendat.c m = (l + r) >> 1; l 1149 ext/mbstring/ucgendat/ucgendat.c l = m + 1; l 43 ext/mysqli/mysqli_mysqlnd.h #define mysqli_async_query(c, q, l) mysqlnd_async_query((c), (q), (l)) l 78 ext/mysqli/mysqli_prop.c __ret_type l;\ l 83 ext/mysqli/mysqli_prop.c l = (__ret_type)__int_func(p);\ l 84 ext/mysqli/mysqli_prop.c if (l < ZEND_LONG_MAX) {\ l 85 ext/mysqli/mysqli_prop.c ZVAL_LONG(retval, (zend_long) l);\ l 87 ext/mysqli/mysqli_prop.c ZVAL_NEW_STR(retval, strpprintf(0, __ret_type_sprint_mod, l)); \ l 36 ext/mysqli/mysqli_warning.c #define ZVAL_UTF8_STRINGL(z, s, l, flags) ZVAL_STRINGL((z), (char*)(s), (l)) l 229 ext/mysqlnd/mysqlnd.h #define mysqlnd_stmt_send_long_data(stmt,p,d,l) (stmt)->m->send_long_data((stmt), (p), (d), (l)) l 562 ext/mysqlnd/mysqlnd_alloc.c size_t l = length; l 565 ext/mysqlnd/mysqlnd_alloc.c while (*p && l--) { l 94 ext/mysqlnd/mysqlnd_libmysql_compat.h #define mysql_stmt_prepare(s,q,l) mysqlnd_stmt_prepare((s), (q), (l)) l 100 ext/mysqlnd/mysqlnd_libmysql_compat.h #define mysql_stmt_send_long_data(s,p,d,l) mysqlnd_stmt_send_long_data((s), (p), (d), (l)) l 210 ext/mysqlnd/mysqlnd_statistics.c add_assoc_string_ex(return_value, names[i].s, names[i].l, tmp); l 907 ext/opcache/Optimizer/block_pass.c int l, old_len; l 916 ext/opcache/Optimizer/block_pass.c l = old_len + Z_STRLEN(ZEND_OP1_LITERAL(opline)); l 918 ext/opcache/Optimizer/block_pass.c zend_string *tmp = zend_string_alloc(l, 0); l 922 ext/opcache/Optimizer/block_pass.c Z_STR(ZEND_OP1_LITERAL(last_op)) = zend_string_extend(Z_STR(ZEND_OP1_LITERAL(last_op)), l, 0); l 926 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP1_LITERAL(last_op))[l] = '\0'; l 941 ext/opcache/Optimizer/block_pass.c int l, old_len; l 953 ext/opcache/Optimizer/block_pass.c l = old_len + Z_STRLEN(ZEND_OP2_LITERAL(opline)); l 955 ext/opcache/Optimizer/block_pass.c zend_string *tmp = zend_string_alloc(l, 0); l 959 ext/opcache/Optimizer/block_pass.c Z_STR(ZEND_OP2_LITERAL(src)) = zend_string_extend(Z_STR(ZEND_OP2_LITERAL(src)), l, 0); l 963 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP2_LITERAL(src))[l] = '\0'; l 93 ext/opcache/shared_alloc_win32.c int l; l 97 ext/opcache/shared_alloc_win32.c l = strlen(windir); l 98 ext/opcache/shared_alloc_win32.c snprintf(windir + l, sizeof(windir) - l - 1, "\\%s@%s@%.32s", ACCEL_FILEMAP_BASE, uname, ZCG(system_id)); l 277 ext/pdo_firebird/firebird_driver.c char const *co, *l, *r; l 296 ext/pdo_firebird/firebird_driver.c for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { l 297 ext/pdo_firebird/firebird_driver.c strncpy(c, l, r-l+1); l 298 ext/pdo_firebird/firebird_driver.c c += (r-l+1); l 304 ext/pdo_firebird/firebird_driver.c strncpy(c, l, *quotedlen-(c-*quoted)-1); l 397 ext/pdo_firebird/firebird_driver.c zend_long l, pindex = -1; l 425 ext/pdo_firebird/firebird_driver.c for (l = in_quote = in_param = 0; l <= sql_len; ++l) { l 426 ext/pdo_firebird/firebird_driver.c if ( !(in_quote ^= (sql[l] == '\''))) { l 428 ext/pdo_firebird/firebird_driver.c switch (sql[l]) { l 432 ext/pdo_firebird/firebird_driver.c *ppname++ = sql[l]; l 439 ext/pdo_firebird/firebird_driver.c if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') l 440 ext/pdo_firebird/firebird_driver.c || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { l 443 ext/pdo_firebird/firebird_driver.c *ppname++ = sql[l]; l 455 ext/pdo_firebird/firebird_driver.c *c++ = sql[l]; l 576 ext/pdo_firebird/firebird_driver.c HMODULE l = GetModuleHandle("fbclient"); l 578 ext/pdo_firebird/firebird_driver.c if (!l) { l 581 ext/pdo_firebird/firebird_driver.c info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); l 616 ext/pdo_firebird/firebird_driver.c zend_long i = 0, l, sqlcode = isc_sqlcode(s); l 621 ext/pdo_firebird/firebird_driver.c while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { l 622 ext/pdo_firebird/firebird_driver.c i += l; l 372 ext/pdo_oci/oci_driver.c char const *cu, *l, *r; l 391 ext/pdo_oci/oci_driver.c for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { l 392 ext/pdo_oci/oci_driver.c strncpy(c, l, r-l+1); l 393 ext/pdo_oci/oci_driver.c c += (r-l+1); l 398 ext/pdo_oci/oci_driver.c strncpy(c, l, *quotedlen-(c-*quoted)-1); l 273 ext/pgsql/pgsql.c ZEND_ARG_INFO(0, l) l 1397 ext/phar/phar_object.c uint l; l 1406 ext/phar/phar_object.c uint str_key_len, base_len = p_obj->l, fname_len; l 1804 ext/phar/phar_object.c pass.l = dir_len; l 1888 ext/phar/phar_object.c pass.l = base_len; l 1369 ext/posix/posix.c struct limitlist *l = NULL; l 1375 ext/posix/posix.c for (l=limits; l->name; l++) { l 1376 ext/posix/posix.c if (posix_addlimit(l->limit, l->name, return_value) == FAILURE) { l 475 ext/readline/readline.c static void _readline_long_zval(zval *ret, long l) l 477 ext/readline/readline.c ZVAL_LONG(ret, l); l 1327 ext/session/session.c zend_llist *l = &SG(sapi_headers).headers; l 1340 ext/session/session.c current = l->head; l 1349 ext/session/session.c l->head = next; l 1354 ext/session/session.c l->tail = current->prev; l 1358 ext/session/session.c --l->count; l 71 ext/sockets/sendrecvmsg.c #define LONG_CHECK_VALID_INT(l) \ l 73 ext/sockets/sendrecvmsg.c if ((l) < INT_MIN && (l) > INT_MAX) { \ l 75 ext/sockets/sendrecvmsg.c "the boundaries of a native integer", (l)); \ l 468 ext/standard/crypt_freesec.c uint32_t l, r, *kl, *kr, *kl1, *kr1; l 492 ext/standard/crypt_freesec.c l = ip_maskl[0][l_in >> 24] l 550 ext/standard/crypt_freesec.c f ^= l; l 551 ext/standard/crypt_freesec.c l = r; l 554 ext/standard/crypt_freesec.c r = l; l 555 ext/standard/crypt_freesec.c l = f; l 560 ext/standard/crypt_freesec.c *l_out = fp_maskl[0][l >> 24] l 561 ext/standard/crypt_freesec.c | fp_maskl[1][(l >> 16) & 0xff] l 562 ext/standard/crypt_freesec.c | fp_maskl[2][(l >> 8) & 0xff] l 563 ext/standard/crypt_freesec.c | fp_maskl[3][l & 0xff] l 568 ext/standard/crypt_freesec.c *r_out = fp_maskr[0][l >> 24] l 569 ext/standard/crypt_freesec.c | fp_maskr[1][(l >> 16) & 0xff] l 570 ext/standard/crypt_freesec.c | fp_maskr[2][(l >> 8) & 0xff] l 571 ext/standard/crypt_freesec.c | fp_maskr[3][l & 0xff] l 618 ext/standard/crypt_freesec.c uint32_t count, salt, l, r0, r1, keybuf[2]; l 706 ext/standard/crypt_freesec.c l = (r0 >> 8); l 707 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 18) & 0x3f]; l 708 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 12) & 0x3f]; l 709 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 6) & 0x3f]; l 710 ext/standard/crypt_freesec.c *p++ = ascii64[l & 0x3f]; l 712 ext/standard/crypt_freesec.c l = (r0 << 16) | ((r1 >> 16) & 0xffff); l 713 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 18) & 0x3f]; l 714 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 12) & 0x3f]; l 715 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 6) & 0x3f]; l 716 ext/standard/crypt_freesec.c *p++ = ascii64[l & 0x3f]; l 718 ext/standard/crypt_freesec.c l = r1 << 2; l 719 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 12) & 0x3f]; l 720 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 6) & 0x3f]; l 721 ext/standard/crypt_freesec.c *p++ = ascii64[l & 0x3f]; l 97 ext/standard/exec.c size_t l = 0; l 151 ext/standard/exec.c l = bufl; l 152 ext/standard/exec.c while (l-- > 0 && isspace(((unsigned char *)buf)[l])); l 153 ext/standard/exec.c if (l != (bufl - 1)) { l 154 ext/standard/exec.c bufl = l + 1; l 164 ext/standard/exec.c l = bufl; l 165 ext/standard/exec.c while (l-- > 0 && isspace(((unsigned char *)buf)[l])); l 166 ext/standard/exec.c if (l != (bufl - 1)) { l 167 ext/standard/exec.c bufl = l + 1; l 282 ext/standard/exec.c size_t l = strlen(str); l 283 ext/standard/exec.c uint64_t estimate = (2 * (uint64_t)l) + 1; l 290 ext/standard/exec.c if (l > cmd_max_len - 2 - 1) { l 295 ext/standard/exec.c cmd = zend_string_safe_alloc(2, l, 0, 0); l 297 ext/standard/exec.c for (x = 0, y = 0; x < l; x++) { l 298 ext/standard/exec.c int mb_len = php_mblen(str + x, (l - x)); l 314 ext/standard/exec.c if (!p && (p = memchr(str + x + 1, str[x], l - x - 1))) { l 389 ext/standard/exec.c size_t l = strlen(str); l 391 ext/standard/exec.c uint64_t estimate = (4 * (uint64_t)l) + 3; l 394 ext/standard/exec.c if (l > cmd_max_len - 2 - 1) { l 399 ext/standard/exec.c cmd = zend_string_safe_alloc(4, l, 2, 0); /* worst case */ l 407 ext/standard/exec.c for (x = 0; x < l; x++) { l 408 ext/standard/exec.c int mb_len = php_mblen(str + x, (l - x)); l 1268 ext/standard/filters.c zend_ulong l; l 1273 ext/standard/filters.c if ((err = php_conv_get_ulong_prop_ex(ht, &l, field_name, field_name_len)) == PHP_CONV_ERR_SUCCESS) { l 1274 ext/standard/filters.c *pretval = (unsigned int)l; l 551 ext/standard/html.c const uni_to_enc *l = table, l 562 ext/standard/html.c while (l <= h) { l 563 ext/standard/html.c m = l + (h - l) / 2; l 567 ext/standard/html.c l = m + 1; l 1583 ext/standard/html.c size_t l = r->data.ent.entity_len; l 1584 ext/standard/html.c memcpy(&entity[1], r->data.ent.entity, l); l 1585 ext/standard/html.c entity[l + 1] = ';'; l 1586 ext/standard/html.c add_assoc_stringl_ex(arr, key, written_k1, entity, l + 2); l 1593 ext/standard/html.c size_t l = mcpr[0].leading_entry.default_entity_len; l 1594 ext/standard/html.c memcpy(&entity[1], mcpr[0].leading_entry.default_entity, l); l 1595 ext/standard/html.c entity[l + 1] = ';'; l 1596 ext/standard/html.c add_assoc_stringl_ex(arr, key, written_k1, entity, l + 2); l 1600 ext/standard/html.c size_t l, l 1606 ext/standard/html.c l = mcpr[i].normal_entry.entity_len; l 1616 ext/standard/html.c memcpy(&entity[1], mcpr[i].normal_entry.entity, l); l 1617 ext/standard/html.c entity[l + 1] = ';'; l 1618 ext/standard/html.c entity[l + 1] = '\0'; l 1619 ext/standard/html.c add_assoc_stringl_ex(arr, key, written_k1 + written_k2, entity, l + 1); l 872 ext/standard/http_fopen_wrapper.c size_t l; \ l 873 ext/standard/http_fopen_wrapper.c l = php_url_decode(val, strlen(val)); \ l 874 ext/standard/http_fopen_wrapper.c s = (unsigned char*)val; e = s + l; \ l 291 ext/standard/mail.c size_t l; l 297 ext/standard/mail.c l = spprintf(&tmp, 0, "[%s] mail() on [%s:%d]: To: %s -- Headers: %s\n", ZSTR_VAL(date_str), zend_get_executed_filename(), zend_get_executed_lineno(), to, hdr ? hdr : ""); l 307 ext/standard/mail.c tmp[l - 1] = 0; l 312 ext/standard/mail.c tmp[l - 1] = '\n'; l 313 ext/standard/mail.c php_mail_log_to_file(mail_log, tmp, l); l 135 ext/standard/php_crypt_r.c __int32 l; l 282 ext/standard/php_crypt_r.c l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; l 283 ext/standard/php_crypt_r.c l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; l 284 ext/standard/php_crypt_r.c l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; l 285 ext/standard/php_crypt_r.c l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; l 286 ext/standard/php_crypt_r.c l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; l 287 ext/standard/php_crypt_r.c l = final[11]; to64(p,l,2); p += 2; l 326 ext/standard/php_crypt_r.c php_uint32 l; l 412 ext/standard/php_crypt_r.c l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; l 413 ext/standard/php_crypt_r.c l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; l 414 ext/standard/php_crypt_r.c l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; l 415 ext/standard/php_crypt_r.c l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; l 416 ext/standard/php_crypt_r.c l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; l 417 ext/standard/php_crypt_r.c l = final[11] ; to64(p,l,2); p += 2; l 85 ext/standard/proc_open.c size_t cnt, l, sizeenv=0; l 146 ext/standard/proc_open.c l = ZSTR_LEN(string_key) + ZSTR_LEN(str) + 2; l 155 ext/standard/proc_open.c p += l; l 166 ext/standard/string.c unsigned char l = c & ~0x20; l 167 ext/standard/string.c int is_letter = ((unsigned int) ((l - 'A') ^ (l - 'F' - 1))) >> (8 * sizeof(unsigned int) - 1); l 172 ext/standard/string.c d = (l - 0x10 - 0x27 * is_letter) << 4; l 178 ext/standard/string.c l = c & ~0x20; l 179 ext/standard/string.c is_letter = ((unsigned int) ((l - 'A') ^ (l - 'F' - 1))) >> (8 * sizeof(unsigned int) - 1); l 181 ext/standard/string.c d |= l - 0x10 - 0x27 * is_letter; l 2373 ext/standard/string.c zend_long l = 0, f; l 2377 ext/standard/string.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sl|l", &str, &f, &l) == FAILURE) { l 2385 ext/standard/string.c Z_PARAM_LONG(l) l 2390 ext/standard/string.c if ((l < 0 && (size_t)(-l) > ZSTR_LEN(str))) { l 2392 ext/standard/string.c } else if (l > (zend_long)ZSTR_LEN(str)) { l 2393 ext/standard/string.c l = ZSTR_LEN(str); l 2396 ext/standard/string.c l = ZSTR_LEN(str); l 2405 ext/standard/string.c if (l < 0 && (l + (zend_long)ZSTR_LEN(str) - f) < 0) { l 2422 ext/standard/string.c if (l < 0) { l 2423 ext/standard/string.c l = ((zend_long)ZSTR_LEN(str) - f) + l; l 2424 ext/standard/string.c if (l < 0) { l 2425 ext/standard/string.c l = 0; l 2433 ext/standard/string.c if ((f + l) > (zend_long)ZSTR_LEN(str)) { l 2434 ext/standard/string.c l = ZSTR_LEN(str) - f; l 2437 ext/standard/string.c RETURN_STRINGL(ZSTR_VAL(str) + f, l); l 2449 ext/standard/string.c zend_long l = 0; l 2472 ext/standard/string.c l = zval_get_long(len); l 2476 ext/standard/string.c l = Z_STRLEN_P(str); l 2516 ext/standard/string.c if (l < 0) { l 2517 ext/standard/string.c l = ((zend_long)Z_STRLEN_P(str) - f) + l; l 2518 ext/standard/string.c if (l < 0) { l 2519 ext/standard/string.c l = 0; l 2523 ext/standard/string.c if (l > Z_STRLEN_P(str) || (l < 0 && (size_t)(-l) > Z_STRLEN_P(str))) { l 2524 ext/standard/string.c l = Z_STRLEN_P(str); l 2527 ext/standard/string.c if ((f + l) > (zend_long)Z_STRLEN_P(str)) { l 2528 ext/standard/string.c l = Z_STRLEN_P(str) - f; l 2549 ext/standard/string.c result = zend_string_alloc(Z_STRLEN_P(str) - l + ZSTR_LEN(repl_str), 0); l 2555 ext/standard/string.c memcpy((ZSTR_VAL(result) + f + ZSTR_LEN(repl_str)), Z_STRVAL_P(str) + f + l, Z_STRLEN_P(str) - f - l); l 2621 ext/standard/string.c l = zval_get_long(tmp_len); l 2624 ext/standard/string.c l = ZSTR_LEN(orig_str); l 2627 ext/standard/string.c l = Z_LVAL_P(len); l 2629 ext/standard/string.c l = ZSTR_LEN(orig_str); l 2632 ext/standard/string.c if (l < 0) { l 2633 ext/standard/string.c l = (ZSTR_LEN(orig_str) - f) + l; l 2634 ext/standard/string.c if (l < 0) { l 2635 ext/standard/string.c l = 0; l 2639 ext/standard/string.c if ((f + l) > (zend_long)ZSTR_LEN(orig_str)) { l 2640 ext/standard/string.c l = ZSTR_LEN(orig_str) - f; l 2643 ext/standard/string.c result_len = ZSTR_LEN(orig_str) - l; l 2662 ext/standard/string.c memcpy((ZSTR_VAL(result) + f + ZSTR_LEN(repl_str)), ZSTR_VAL(orig_str) + f + l, ZSTR_LEN(orig_str) - f - l); l 2668 ext/standard/string.c memcpy((ZSTR_VAL(result) + f), ZSTR_VAL(orig_str) + f + l, ZSTR_LEN(orig_str) - f - l); l 2677 ext/standard/string.c memcpy((ZSTR_VAL(result) + f + Z_STRLEN_P(repl)), ZSTR_VAL(orig_str) + f + l, ZSTR_LEN(orig_str) - f - l); l 3557 ext/standard/string.c size_t l; l 3562 ext/standard/string.c for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++); l 3563 ext/standard/string.c if (l > *max) { l 3564 ext/standard/string.c *max = l; l 3637 ext/standard/string.c size_t l; l 3641 ext/standard/string.c l = ZSTR_LEN(str); l 3643 ext/standard/string.c while (l > 0) { l 3647 ext/standard/string.c l--; l 3648 ext/standard/string.c if (l > 0) { l 3655 ext/standard/string.c l--; l 3659 ext/standard/string.c l--; l 5040 ext/standard/string.c ptrdiff_t l=0; l 5047 ext/standard/string.c l = (e-s) < (ee-e) ? (e-s) : (ee-e); l 5048 ext/standard/string.c memmove(e, s, l); l 5049 ext/standard/string.c e += l; l 385 ext/wddx/wddx.c if (l > 0) { \ l 386 ext/wddx/wddx.c php_wddx_add_chunk_ex(packet, buf, l); \ l 387 ext/wddx/wddx.c l = 0; \ l 52 ext/zip/lib/zip_source_call.c ret = src->cb.l(src->src, src->ud, data, length, command); l 60 ext/zip/lib/zip_source_layered.c zs->cb.l = cb; l 393 ext/zip/lib/zipint.h zip_source_layered_callback l; l 131 ext/zip/php_zip.c # define CWD_STATE_ALLOC(l) emalloc(l) l 594 main/SAPI.c static void sapi_remove_header(zend_llist *l, char *name, size_t len) { l 597 main/SAPI.c zend_llist_element *current=l->head; l 607 main/SAPI.c l->head = next; l 612 main/SAPI.c l->tail = current->prev; l 616 main/SAPI.c --l->count; l 626 main/php_ini.c int l, total_l = 0; l 671 main/php_ini.c l = (int)strlen(ini_file); l 672 main/php_ini.c total_l += l + 2; l 673 main/php_ini.c p = estrndup(ini_file, l); l 159 main/streams/streams.c size_t l = 0; l 178 main/streams/streams.c l += strlen(*err_buf_p); l 180 main/streams/streams.c l += brlen; l 183 main/streams/streams.c msg = emalloc(l + 1); l 1279 sapi/cgi/cgi_main.c size_t l = strlen(env_document_root); l 1283 sapi/cgi/cgi_main.c if (l && env_document_root[l - 1] == '/') { l 1284 sapi/cgi/cgi_main.c --l; l 1293 sapi/cgi/cgi_main.c path_translated_len = l + (env_path_info ? strlen(env_path_info) : 0); l 1295 sapi/cgi/cgi_main.c memcpy(path_translated, env_document_root, l); l 1297 sapi/cgi/cgi_main.c memcpy(path_translated + l, env_path_info, (path_translated_len - l)); l 692 sapi/cli/php_cli_server.c size_t l = strlen(buf); l 693 sapi/cli/php_cli_server.c if (l > 0) { l 694 sapi/cli/php_cli_server.c buf[l - 1] = '\0'; l 1395 sapi/cli/php_cli_server.c size_t l = strlen(*file); l 1396 sapi/cli/php_cli_server.c memmove(q, *file, l + 1); l 1398 sapi/cli/php_cli_server.c q += l; l 412 sapi/fpm/fpm/fpm_log.c size_t l; l 418 sapi/fpm/fpm/fpm_log.c l = s - start; l 420 sapi/fpm/fpm/fpm_log.c if (l >= sizeof(format) - 1) { l 421 sapi/fpm/fpm/fpm_log.c l = sizeof(format) - 1; l 424 sapi/fpm/fpm/fpm_log.c memcpy(format, start, l); l 425 sapi/fpm/fpm/fpm_log.c format[l] = '\0'; l 1259 sapi/fpm/fpm/fpm_main.c int l = strlen(env_document_root); l 1263 sapi/fpm/fpm/fpm_main.c if (l && env_document_root[l - 1] == '/') { l 1264 sapi/fpm/fpm/fpm_main.c --l; l 1273 sapi/fpm/fpm/fpm_main.c path_translated_len = l + (env_path_info ? strlen(env_path_info) : 0); l 1275 sapi/fpm/fpm/fpm_main.c memcpy(path_translated, env_document_root, l); l 1277 sapi/fpm/fpm/fpm_main.c memcpy(path_translated + l, env_path_info, (path_translated_len - l)); l 52 sapi/fpm/fpm/fpm_php_trace.c long l; l 60 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long((long) &SG(request_info).path_translated, &l)) { l 64 sapi/fpm/fpm/fpm_php_trace.c path_translated = l; l 72 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long((long) &EG(current_execute_data), &l)) { l 76 sapi/fpm/fpm/fpm_php_trace.c execute_data = l; l 85 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, func), &l)) { l 89 sapi/fpm/fpm/fpm_php_trace.c function = l; l 92 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(function + offsetof(zend_function, common.function_name), &l)) { l 96 sapi/fpm/fpm/fpm_php_trace.c function_name = l; l 99 sapi/fpm/fpm/fpm_php_trace.c uint32_t *call_info = (uint32_t *)&l; l 100 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, This.u1.type_info), &l)) { l 127 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, prev_execute_data), &l)) { l 131 sapi/fpm/fpm/fpm_php_trace.c execute_data = prev = l; l 136 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, func), &l)) { l 140 sapi/fpm/fpm/fpm_php_trace.c function = l; l 146 sapi/fpm/fpm/fpm_php_trace.c type = (zend_uchar *)&l; l 147 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(function + offsetof(zend_function, type), &l)) { l 152 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(function + offsetof(zend_op_array, filename), &l)) { l 156 sapi/fpm/fpm/fpm_php_trace.c file_name = l; l 162 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, opline), &l)) { l 166 sapi/fpm/fpm/fpm_php_trace.c if (valid_ptr(l)) { l 167 sapi/fpm/fpm/fpm_php_trace.c long opline = l; l 168 sapi/fpm/fpm/fpm_php_trace.c uint32_t *lu = (uint32_t *) &l; l 170 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { l 179 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, prev_execute_data), &l)) { l 183 sapi/fpm/fpm/fpm_php_trace.c prev = l; l 14 sapi/fpm/fpm/fpm_trace.c long l = addr; l 15 sapi/fpm/fpm/fpm_trace.c char *lc = (char *) &l; l 17 sapi/fpm/fpm/fpm_trace.c i = l % SIZEOF_LONG; l 18 sapi/fpm/fpm/fpm_trace.c l -= i; l 19 sapi/fpm/fpm/fpm_trace.c for (addr = l; ; addr += SIZEOF_LONG) { l 20 sapi/fpm/fpm/fpm_trace.c if (0 > fpm_trace_get_long(addr, &l)) { l 31 sapi/phpdbg/phpdbg_break.c #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s, flags) \ l 32 sapi/phpdbg/phpdbg_break.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9], flags) l 249 sapi/phpdbg/phpdbg_cmd.c PHPDBG_API zend_bool phpdbg_match_param(const phpdbg_param_t *l, const phpdbg_param_t *r) /* {{{ */ l 251 sapi/phpdbg/phpdbg_cmd.c if (l && r) { l 252 sapi/phpdbg/phpdbg_cmd.c if (l->type == r->type) { l 253 sapi/phpdbg/phpdbg_cmd.c switch (l->type) { l 260 sapi/phpdbg/phpdbg_cmd.c if (l->num != r->num) { l 266 sapi/phpdbg/phpdbg_cmd.c return (l->len == r->len) && l 267 sapi/phpdbg/phpdbg_cmd.c (memcmp(l->str, r->str, l->len) == SUCCESS); l 270 sapi/phpdbg/phpdbg_cmd.c return (l->num == r->num); l 273 sapi/phpdbg/phpdbg_cmd.c return (l->addr == r->addr); l 276 sapi/phpdbg/phpdbg_cmd.c if (l->file.line == r->file.line) { l 278 sapi/phpdbg/phpdbg_cmd.c strlen(l->file.name), strlen(r->file.name)}; l 281 sapi/phpdbg/phpdbg_cmd.c if ((!l->num && !r->num) || (l->num == r->num)) { l 283 sapi/phpdbg/phpdbg_cmd.c l->file.name, r->file.name, lengths[0]) == SUCCESS); l 290 sapi/phpdbg/phpdbg_cmd.c if (l->num != r->num) { l 297 sapi/phpdbg/phpdbg_cmd.c strlen(l->method.class), strlen(r->method.class)}; l 299 sapi/phpdbg/phpdbg_cmd.c if (memcmp(l->method.class, r->method.class, lengths[0]) == SUCCESS) { l 300 sapi/phpdbg/phpdbg_cmd.c lengths[0] = strlen(l->method.name); l 305 sapi/phpdbg/phpdbg_cmd.c l->method.name, r->method.name, lengths[0]) == SUCCESS); l 30 sapi/phpdbg/phpdbg_info.c #define PHPDBG_INFO_COMMAND_D(f, h, a, m, l, s, flags) \ l 31 sapi/phpdbg/phpdbg_info.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[13], flags) l 38 sapi/phpdbg/phpdbg_list.c #define PHPDBG_LIST_COMMAND_D(f, h, a, m, l, s, flags) \ l 39 sapi/phpdbg/phpdbg_list.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[12], flags) l 29 sapi/phpdbg/phpdbg_print.c #define PHPDBG_PRINT_COMMAND_D(f, h, a, m, l, s, flags) \ l 30 sapi/phpdbg/phpdbg_print.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[8], flags) l 30 sapi/phpdbg/phpdbg_set.c #define PHPDBG_SET_COMMAND_D(f, h, a, m, l, s, flags) \ l 31 sapi/phpdbg/phpdbg_set.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[17], flags)