l 396 Zend/zend_API.c long l; l 399 Zend/zend_API.c if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &l, p, -1)) == 0) { l 402 Zend/zend_API.c *p = (double) l; l 1495 Zend/zend_API.c ZEND_API int add_get_index_long(zval *arg, ulong index, long l, void **dest) /* {{{ */ l 1500 Zend/zend_API.c ZVAL_LONG(tmp, l); l 427 Zend/zend_API.h ZEND_API int add_get_index_long(zval *arg, ulong idx, long l, void **dest); l 434 Zend/zend_API.h ZEND_API int add_property_long_ex(zval *arg, const char *key, uint key_len, long l TSRMLS_DC); l 547 Zend/zend_API.h #define CHECK_NULL_PATH(p, l) (strlen(p) != l) l 549 Zend/zend_API.h #define ZVAL_RESOURCE(z, l) do { \ l 551 Zend/zend_API.h Z_LVAL_P(__z) = l; \ l 565 Zend/zend_API.h #define ZVAL_LONG(z, l) { \ l 567 Zend/zend_API.h Z_LVAL_P(__z) = l; \ l 585 Zend/zend_API.h #define ZVAL_STRINGL(z, s, l, duplicate) do { \ l 586 Zend/zend_API.h const char *__s=(s); int __l=l; \ l 618 Zend/zend_API.h #define RETVAL_RESOURCE(l) ZVAL_RESOURCE(return_value, l) l 621 Zend/zend_API.h #define RETVAL_LONG(l) ZVAL_LONG(return_value, l) l 624 Zend/zend_API.h #define RETVAL_STRINGL(s, l, duplicate) ZVAL_STRINGL(return_value, s, l, duplicate) l 630 Zend/zend_API.h #define RETURN_RESOURCE(l) { RETVAL_RESOURCE(l); return; } l 633 Zend/zend_API.h #define RETURN_LONG(l) { RETVAL_LONG(l); return; } l 636 Zend/zend_API.h #define RETURN_STRINGL(s, l, duplicate) { RETVAL_STRINGL(s, l, duplicate); return; } l 663 Zend/zend_API.h #define SET_VAR_STRINGL(n, v, l) { \ l 667 Zend/zend_API.h ZVAL_STRINGL(var, v, l, 0); \ l 378 Zend/zend_exceptions.c int l = vallen; \ l 379 Zend/zend_exceptions.c *str = (char*)erealloc(*str, *len + l + 1); \ l 380 Zend/zend_exceptions.c memcpy((*str) + *len, val, l); \ l 381 Zend/zend_exceptions.c *len += l; \ 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 37 Zend/zend_llist.c ZEND_API void zend_llist_add_element(zend_llist *l, void *element) l 39 Zend/zend_llist.c zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent); l 41 Zend/zend_llist.c tmp->prev = l->tail; l 43 Zend/zend_llist.c if (l->tail) { l 44 Zend/zend_llist.c l->tail->next = tmp; l 46 Zend/zend_llist.c l->head = tmp; l 48 Zend/zend_llist.c l->tail = tmp; l 49 Zend/zend_llist.c memcpy(tmp->data, element, l->size); l 51 Zend/zend_llist.c ++l->count; l 55 Zend/zend_llist.c ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element) l 57 Zend/zend_llist.c zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent); l 59 Zend/zend_llist.c tmp->next = l->head; l 61 Zend/zend_llist.c if (l->head) { l 62 Zend/zend_llist.c l->head->prev = tmp; l 64 Zend/zend_llist.c l->tail = tmp; l 66 Zend/zend_llist.c l->head = tmp; l 67 Zend/zend_llist.c memcpy(tmp->data, element, l->size); l 69 Zend/zend_llist.c ++l->count; l 73 Zend/zend_llist.c #define DEL_LLIST_ELEMENT(current, l) \ l 77 Zend/zend_llist.c (l)->head = (current)->next;\ l 82 Zend/zend_llist.c (l)->tail = (current)->prev;\ l 84 Zend/zend_llist.c if ((l)->dtor) {\ l 85 Zend/zend_llist.c (l)->dtor((current)->data);\ l 87 Zend/zend_llist.c pefree((current), (l)->persistent);\ l 88 Zend/zend_llist.c --l->count; l 91 Zend/zend_llist.c ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, void *element2)) l 93 Zend/zend_llist.c zend_llist_element *current=l->head; l 97 Zend/zend_llist.c DEL_LLIST_ELEMENT(current, l); l 105 Zend/zend_llist.c ZEND_API void zend_llist_destroy(zend_llist *l) l 107 Zend/zend_llist.c zend_llist_element *current=l->head, *next; l 111 Zend/zend_llist.c if (l->dtor) { l 112 Zend/zend_llist.c l->dtor(current->data); l 114 Zend/zend_llist.c pefree(current, l->persistent); l 118 Zend/zend_llist.c l->count = 0; l 122 Zend/zend_llist.c ZEND_API void zend_llist_clean(zend_llist *l) l 124 Zend/zend_llist.c zend_llist_destroy(l); l 125 Zend/zend_llist.c l->head = l->tail = NULL; l 129 Zend/zend_llist.c ZEND_API void *zend_llist_remove_tail(zend_llist *l) l 134 Zend/zend_llist.c if ((old_tail = l->tail)) { l 138 Zend/zend_llist.c l->head = NULL; l 143 Zend/zend_llist.c l->tail = old_tail->prev; l 144 Zend/zend_llist.c if (l->dtor) { l 145 Zend/zend_llist.c l->dtor(data); l 147 Zend/zend_llist.c pefree(old_tail, l->persistent); l 149 Zend/zend_llist.c --l->count; l 171 Zend/zend_llist.c ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)) l 175 Zend/zend_llist.c element=l->head; l 179 Zend/zend_llist.c DEL_LLIST_ELEMENT(element, l); l 186 Zend/zend_llist.c ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func TSRMLS_DC) l 190 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 195 Zend/zend_llist.c ZEND_API void zend_llist_sort(zend_llist *l, llist_compare_func_t comp_func TSRMLS_DC) l 202 Zend/zend_llist.c if (l->count <= 0) { l 206 Zend/zend_llist.c elements = (zend_llist_element **) emalloc(l->count * sizeof(zend_llist_element *)); l 210 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 214 Zend/zend_llist.c zend_qsort(elements, l->count, sizeof(zend_llist_element *), (compare_func_t) comp_func TSRMLS_CC); l 216 Zend/zend_llist.c l->head = elements[0]; l 219 Zend/zend_llist.c for (i = 1; i < l->count; i++) { l 224 Zend/zend_llist.c l->tail = elements[i-1]; l 229 Zend/zend_llist.c ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void *arg TSRMLS_DC) l 233 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 239 Zend/zend_llist.c ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRMLS_DC, int num_args, ...) l 245 Zend/zend_llist.c for (element=l->head; element; element=element->next) { l 252 Zend/zend_llist.c ZEND_API int zend_llist_count(zend_llist *l) l 254 Zend/zend_llist.c return l->count; l 258 Zend/zend_llist.c ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos) l 260 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 262 Zend/zend_llist.c *current = l->head; l 271 Zend/zend_llist.c ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos) l 273 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 275 Zend/zend_llist.c *current = l->tail; l 284 Zend/zend_llist.c ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos) l 286 Zend/zend_llist.c zend_llist_position *current = pos ? pos : &l->traverse_ptr; l 298 Zend/zend_llist.c ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) l 300 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 TSRMLS_DC); 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 TSRMLS_DC); l 61 Zend/zend_llist.h ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRMLS_DC, int num_args, ...); l 62 Zend/zend_llist.h ZEND_API int 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 TSRMLS_DC); 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 237 ext/com_dotnet/com_typeinfo.c int l; l 239 ext/com_dotnet/com_typeinfo.c l = strlen(search_string); l 241 ext/com_dotnet/com_typeinfo.c if (zend_ts_hash_find(&php_com_typelibraries, search_string, l+1, l 250 ext/com_dotnet/com_typeinfo.c name_dup = estrndup(search_string, l); l 256 ext/com_dotnet/com_typeinfo.c search_string, l+1, (void*)&TL, sizeof(ITypeLib*), NULL)) { 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 1938 ext/exif/exif.c int i, ap, l, b, idx=0, unknown=0; l 2012 ext/exif/exif.c if ((l = info_data->length) > 1) { l 2017 ext/exif/exif.c for(ap=0; ap<l; ap++) { l 2018 ext/exif/exif.c if (l>1) { l 2023 ext/exif/exif.c if (l>1) { l 2025 ext/exif/exif.c for (b=0;b<l;b++) { l 2032 ext/exif/exif.c if (l==1) { l 2041 ext/exif/exif.c if (l==1) { l 2049 ext/exif/exif.c if (l>1) { l 2051 ext/exif/exif.c for (b=0;b<l;b++) { l 2058 ext/exif/exif.c if (l==1) { l 2067 ext/exif/exif.c if (l==1) { l 2075 ext/exif/exif.c if (l==1) { l 2083 ext/exif/exif.c if (l==1) { l 2092 ext/exif/exif.c if (l>1) { l 66 ext/fileinfo/libmagic/apprentice.c #define EATAB {while (isascii((unsigned char) *l) && \ l 67 ext/fileinfo/libmagic/apprentice.c isspace((unsigned char) *l)) ++l;} l 68 ext/fileinfo/libmagic/apprentice.c #define LOWCASE(l) (isupper((unsigned char) (l)) ? \ l 69 ext/fileinfo/libmagic/apprentice.c tolower((unsigned char) (l)) : (l)) l 252 ext/fileinfo/libmagic/apprentice.c get_type(const struct type_tbl_s *tbl, const char *l, const char **t) l 257 ext/fileinfo/libmagic/apprentice.c if (strncmp(l, p->name, p->len) == 0) { l 259 ext/fileinfo/libmagic/apprentice.c *t = l + p->len; l 267 ext/fileinfo/libmagic/apprentice.c get_standard_integer_type(const char *l, const char **t) l 271 ext/fileinfo/libmagic/apprentice.c if (isalpha((unsigned char)l[1])) { l 272 ext/fileinfo/libmagic/apprentice.c switch (l[1]) { l 305 ext/fileinfo/libmagic/apprentice.c l += 2; l 306 ext/fileinfo/libmagic/apprentice.c } else if (isdigit((unsigned char)l[1])) { l 317 ext/fileinfo/libmagic/apprentice.c if (isdigit((unsigned char)l[2])) { l 321 ext/fileinfo/libmagic/apprentice.c switch (l[1]) { l 338 ext/fileinfo/libmagic/apprentice.c l += 2; l 344 ext/fileinfo/libmagic/apprentice.c ++l; l 347 ext/fileinfo/libmagic/apprentice.c *t = l; l 1422 ext/fileinfo/libmagic/apprentice.c get_cond(const char *l, const char **t) l 1437 ext/fileinfo/libmagic/apprentice.c if (strncmp(l, p->name, p->len) == 0 && l 1438 ext/fileinfo/libmagic/apprentice.c isspace((unsigned char)l[p->len])) { l 1440 ext/fileinfo/libmagic/apprentice.c *t = l + p->len; l 1503 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 1514 ext/fileinfo/libmagic/apprentice.c while (*l == '>') { l 1515 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1570 ext/fileinfo/libmagic/apprentice.c if (*l == '&') { /* m->cont_level == 0 checked below. */ l 1571 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1574 ext/fileinfo/libmagic/apprentice.c if (*l == '(') { l 1575 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1580 ext/fileinfo/libmagic/apprentice.c if (*l == '&') { /* m->cont_level == 0 checked below */ l 1581 ext/fileinfo/libmagic/apprentice.c ++l; /* step over */ l 1591 ext/fileinfo/libmagic/apprentice.c m->offset = (uint32_t)strtoul(l, &t, 0); l 1592 ext/fileinfo/libmagic/apprentice.c if (l == t) l 1594 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "offset `%s' invalid", l); l 1595 ext/fileinfo/libmagic/apprentice.c l = t; l 1603 ext/fileinfo/libmagic/apprentice.c if (*l == '.') { l 1604 ext/fileinfo/libmagic/apprentice.c l++; l 1605 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1649 ext/fileinfo/libmagic/apprentice.c *l); l 1652 ext/fileinfo/libmagic/apprentice.c l++; l 1656 ext/fileinfo/libmagic/apprentice.c if (*l == '~') { l 1658 ext/fileinfo/libmagic/apprentice.c l++; l 1660 ext/fileinfo/libmagic/apprentice.c if ((op = get_op(*l)) != -1) { l 1662 ext/fileinfo/libmagic/apprentice.c l++; l 1664 ext/fileinfo/libmagic/apprentice.c if (*l == '(') { l 1666 ext/fileinfo/libmagic/apprentice.c l++; l 1668 ext/fileinfo/libmagic/apprentice.c if (isdigit((unsigned char)*l) || *l == '-') { l 1669 ext/fileinfo/libmagic/apprentice.c m->in_offset = (int32_t)strtol(l, &t, 0); l 1670 ext/fileinfo/libmagic/apprentice.c if (l == t) l 1673 ext/fileinfo/libmagic/apprentice.c "in_offset `%s' invalid", l); l 1674 ext/fileinfo/libmagic/apprentice.c l = t; l 1676 ext/fileinfo/libmagic/apprentice.c if (*l++ != ')' || l 1677 ext/fileinfo/libmagic/apprentice.c ((m->in_op & FILE_OPINDIRECT) && *l++ != ')')) l 1685 ext/fileinfo/libmagic/apprentice.c m->cond = get_cond(l, &l); l 1695 ext/fileinfo/libmagic/apprentice.c if (*l == 'u') { l 1701 ext/fileinfo/libmagic/apprentice.c m->type = get_type(type_tbl, l + 1, &l); l 1707 ext/fileinfo/libmagic/apprentice.c m->type = get_standard_integer_type(l, &l); l 1719 ext/fileinfo/libmagic/apprentice.c m->type = get_type(type_tbl, l, &l); l 1726 ext/fileinfo/libmagic/apprentice.c if (*l == 'd') l 1727 ext/fileinfo/libmagic/apprentice.c m->type = get_standard_integer_type(l, &l); l 1728 ext/fileinfo/libmagic/apprentice.c else if (*l == 's' && !isalpha((unsigned char)l[1])) { l 1730 ext/fileinfo/libmagic/apprentice.c ++l; l 1737 ext/fileinfo/libmagic/apprentice.c m->type = get_type(special_tbl, l, &l); l 1742 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "type `%s' invalid", l); l 1754 ext/fileinfo/libmagic/apprentice.c if (*l == '~') { l 1759 ext/fileinfo/libmagic/apprentice.c ++l; l 1763 ext/fileinfo/libmagic/apprentice.c if ((op = get_op(*l)) != -1) { l 1766 ext/fileinfo/libmagic/apprentice.c ++l; l 1768 ext/fileinfo/libmagic/apprentice.c val = (uint64_t)strtoull(l, &t, 0); l 1769 ext/fileinfo/libmagic/apprentice.c l = t; l 1771 ext/fileinfo/libmagic/apprentice.c eatsize(&l); l 1775 ext/fileinfo/libmagic/apprentice.c while (!isspace((unsigned char)*++l)) { l 1776 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1787 ext/fileinfo/libmagic/apprentice.c strtoul(l, &t, 0)); l 1791 ext/fileinfo/libmagic/apprentice.c l = t - 1; l 1854 ext/fileinfo/libmagic/apprentice.c "invalid", *l); l 1858 ext/fileinfo/libmagic/apprentice.c if (l[1] == '/' && l 1859 ext/fileinfo/libmagic/apprentice.c !isspace((unsigned char)l[2])) l 1860 ext/fileinfo/libmagic/apprentice.c l++; l 1877 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1880 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 1881 ext/fileinfo/libmagic/apprentice.c ++l; l 1882 ext/fileinfo/libmagic/apprentice.c if (*l == '=') { l 1888 ext/fileinfo/libmagic/apprentice.c ++l; l 1895 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 1896 ext/fileinfo/libmagic/apprentice.c ++l; l 1897 ext/fileinfo/libmagic/apprentice.c if (*l == '=') { l 1899 ext/fileinfo/libmagic/apprentice.c ++l; l 1903 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 1904 ext/fileinfo/libmagic/apprentice.c ++l; l 1908 ext/fileinfo/libmagic/apprentice.c if (*l == 'x' && ((isascii((unsigned char)l[1]) && l 1909 ext/fileinfo/libmagic/apprentice.c isspace((unsigned char)l[1])) || !l[1])) { l 1910 ext/fileinfo/libmagic/apprentice.c m->reln = *l; l 1911 ext/fileinfo/libmagic/apprentice.c ++l; l 1918 ext/fileinfo/libmagic/apprentice.c if (m->reln != 'x' && getvalue(ms, m, &l, action)) l 1931 ext/fileinfo/libmagic/apprentice.c if (l[0] == '\b') { l 1932 ext/fileinfo/libmagic/apprentice.c ++l; l 1934 ext/fileinfo/libmagic/apprentice.c } else if ((l[0] == '\\') && (l[1] == 'b')) { l 1935 ext/fileinfo/libmagic/apprentice.c ++l; l 1936 ext/fileinfo/libmagic/apprentice.c ++l; l 1939 ext/fileinfo/libmagic/apprentice.c for (i = 0; (m->desc[i++] = *l++) != '\0' && i < sizeof(m->desc); ) l 1966 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 1983 ext/fileinfo/libmagic/apprentice.c switch (*l) { l 1989 ext/fileinfo/libmagic/apprentice.c m->factor_op = *l++; l 1992 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "Unknown factor op `%c'", *l); l 1996 ext/fileinfo/libmagic/apprentice.c factor = strtoul(l, &el, 0); l 2002 ext/fileinfo/libmagic/apprentice.c file_magwarn(ms, "Bad factor `%s'", l); l 2026 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 2031 ext/fileinfo/libmagic/apprentice.c "`%.8s', new type `%s'", m->mimetype, l); l 2036 ext/fileinfo/libmagic/apprentice.c for (i = 0; *l && ((isascii((unsigned char)*l) && l 2037 ext/fileinfo/libmagic/apprentice.c isalnum((unsigned char)*l)) || strchr("-+/.", *l)) && l 2038 ext/fileinfo/libmagic/apprentice.c i < sizeof(m->apple); m->apple[i++] = *l++) l 2040 ext/fileinfo/libmagic/apprentice.c if (i == sizeof(m->apple) && *l) { l 2061 ext/fileinfo/libmagic/apprentice.c const char *l = line; l 2066 ext/fileinfo/libmagic/apprentice.c " new type `%s'", m->mimetype, l); l 2071 ext/fileinfo/libmagic/apprentice.c for (i = 0; *l && ((isascii((unsigned char)*l) && l 2072 ext/fileinfo/libmagic/apprentice.c isalnum((unsigned char)*l)) || strchr("-+/.", *l)) && l 2073 ext/fileinfo/libmagic/apprentice.c i < sizeof(m->mimetype); m->mimetype[i++] = *l++) l 2573 ext/fileinfo/libmagic/apprentice.c const char *l = *p; l 2575 ext/fileinfo/libmagic/apprentice.c if (LOWCASE(*l) == 'u') l 2576 ext/fileinfo/libmagic/apprentice.c l++; l 2578 ext/fileinfo/libmagic/apprentice.c switch (LOWCASE(*l)) { l 2584 ext/fileinfo/libmagic/apprentice.c l++; l 2590 ext/fileinfo/libmagic/apprentice.c *p = l; l 725 ext/fileinfo/libmagic/cdf.c cdf_namecmp(const char *d, const uint16_t *s, size_t l) l 727 ext/fileinfo/libmagic/cdf.c for (; l--; d++, s++) l 917 ext/fileinfo/libmagic/cdf.c uint32_t l = CDF_GETUINT32(q, o); l 918 ext/fileinfo/libmagic/cdf.c inp[i].pi_str.s_len = l; l 920 ext/fileinfo/libmagic/cdf.c (const void *)(&q[o4 + sizeof(l)]); l 922 ext/fileinfo/libmagic/cdf.c "u, s = %s\n", l, l 923 ext/fileinfo/libmagic/cdf.c CDF_ROUND(l, sizeof(l)), l 925 ext/fileinfo/libmagic/cdf.c if (l & 1) l 926 ext/fileinfo/libmagic/cdf.c l++; l 927 ext/fileinfo/libmagic/cdf.c o += l >> 1; l 30 ext/fileinfo/libmagic/elfclass.h u.l = 1; l 149 ext/fileinfo/libmagic/file.h uint32_t l; l 434 ext/fileinfo/libmagic/softmagic.c v = file_signextend(ms, m, (uint64_t)p->l); l 518 ext/fileinfo/libmagic/softmagic.c file_fmttime(p->l, FILE_T_LOCAL, l 529 ext/fileinfo/libmagic/softmagic.c file_fmttime(p->l, 0, tbuf)) == -1) l 844 ext/fileinfo/libmagic/softmagic.c DO_CVT(l, (uint32_t)); l 945 ext/fileinfo/libmagic/softmagic.c p->l = (int32_t) l 967 ext/fileinfo/libmagic/softmagic.c p->l = (int32_t) l 985 ext/fileinfo/libmagic/softmagic.c p->l = (int32_t) l 993 ext/fileinfo/libmagic/softmagic.c p->l = ((uint32_t)p->hl[0]<<24)|((uint32_t)p->hl[1]<<16)| l 998 ext/fileinfo/libmagic/softmagic.c p->l = ((uint32_t)p->hl[3]<<24)|((uint32_t)p->hl[2]<<16)| l 1207 ext/fileinfo/libmagic/softmagic.c off = q->l; l 1621 ext/fileinfo/libmagic/softmagic.c offset = p->l & off; l 1624 ext/fileinfo/libmagic/softmagic.c offset = p->l | off; l 1627 ext/fileinfo/libmagic/softmagic.c offset = p->l ^ off; l 1630 ext/fileinfo/libmagic/softmagic.c offset = p->l + off; l 1633 ext/fileinfo/libmagic/softmagic.c offset = p->l - off; l 1636 ext/fileinfo/libmagic/softmagic.c offset = p->l * off; l 1639 ext/fileinfo/libmagic/softmagic.c offset = p->l / off; l 1642 ext/fileinfo/libmagic/softmagic.c offset = p->l % off; l 1646 ext/fileinfo/libmagic/softmagic.c offset = p->l; l 1926 ext/fileinfo/libmagic/softmagic.c uint64_t l = m->value.q; l 1956 ext/fileinfo/libmagic/softmagic.c v = p->l; l 2043 ext/fileinfo/libmagic/softmagic.c l = 0; l 2049 ext/fileinfo/libmagic/softmagic.c l = 0; l 2055 ext/fileinfo/libmagic/softmagic.c l = 0; l 2067 ext/fileinfo/libmagic/softmagic.c l = 0; l 2099 ext/fileinfo/libmagic/softmagic.c l = v = 0; l 2189 ext/fileinfo/libmagic/softmagic.c matched = v != l; l 2193 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2197 ext/fileinfo/libmagic/softmagic.c matched = v == l; l 2201 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2206 ext/fileinfo/libmagic/softmagic.c matched = v > l; l 2211 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2214 ext/fileinfo/libmagic/softmagic.c matched = (int64_t) v > (int64_t) l; l 2218 ext/fileinfo/libmagic/softmagic.c (long long)v, (long long)l, matched); l 2224 ext/fileinfo/libmagic/softmagic.c matched = v < l; l 2229 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, matched); l 2232 ext/fileinfo/libmagic/softmagic.c matched = (int64_t) v < (int64_t) l; l 2236 ext/fileinfo/libmagic/softmagic.c (long long)v, (long long)l, matched); l 2241 ext/fileinfo/libmagic/softmagic.c matched = (v & l) == l; l 2246 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, (unsigned long long)l, l 2251 ext/fileinfo/libmagic/softmagic.c matched = (v & l) != l; l 2256 ext/fileinfo/libmagic/softmagic.c (unsigned long long)l, (unsigned long long)l, l 148 ext/filter/sanitizing_filters.c int l, i; l 150 ext/filter/sanitizing_filters.c l = strlen((const char*)allowed_list); l 151 ext/filter/sanitizing_filters.c for (i = 0; i < l; ++i) { l 3538 ext/gd/gd.c int ch = 0, col, x, y, size, i, l = 0; l 3554 ext/gd/gd.c l = strlen((char *)str); l 3571 ext/gd/gd.c for (i = 0; (i < l); i++) { l 3577 ext/gd/gd.c for (i = 0; (i < l); i++) { l 36 ext/gd/gd_ctx.c static int _php_image_output_putbuf(struct gdIOCtx *ctx, const void* buf, int l) l 39 ext/gd/gd_ctx.c return php_write((void *)buf, l TSRMLS_CC); l 56 ext/gd/gd_ctx.c static int _php_image_stream_putbuf(struct gdIOCtx *ctx, const void* buf, int l) l 60 ext/gd/gd_ctx.c return php_stream_write(stream, (void *)buf, l); l 1597 ext/gd/libgd/gd.c int l; l 1598 ext/gd/libgd/gd.c l = strlen ((char *) s); l 1599 ext/gd/libgd/gd.c for (i = 0; (i < l); i++) { l 1608 ext/gd/libgd/gd.c int l; l 1609 ext/gd/libgd/gd.c l = strlen ((char *) s); l 1610 ext/gd/libgd/gd.c for (i = 0; (i < l); i++) { l 1621 ext/gd/libgd/gd.c int l; l 1622 ext/gd/libgd/gd.c l = strlen16(s); l 1623 ext/gd/libgd/gd.c for (i = 0; (i < l); i++) { l 1632 ext/gd/libgd/gd.c int l; l 1633 ext/gd/libgd/gd.c l = strlen16(s); l 1634 ext/gd/libgd/gd.c for (i = 0; i < l; i++) { l 1868 ext/gd/libgd/gd.c int l, x1, x2, dy; l 1933 ext/gd/libgd/gd.c l = x+1; l 1936 ext/gd/libgd/gd.c if (l<x1) { l 1937 ext/gd/libgd/gd.c FILL_PUSH(y, l, x1-1, -dy); l 1944 ext/gd/libgd/gd.c FILL_PUSH(y, l, x-1, dy); l 1951 ext/gd/libgd/gd.c l = x; l 1963 ext/gd/libgd/gd.c int i, l, x1, x2, dy; l 2003 ext/gd/libgd/gd.c l = x+1; l 2006 ext/gd/libgd/gd.c if (l<x1) { l 2007 ext/gd/libgd/gd.c FILL_PUSH(y, l, x1-1, -dy); l 2016 ext/gd/libgd/gd.c FILL_PUSH(y, l, x-1, dy); l 2022 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 194 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 445 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 448 ext/iconv/iconv.c size_t in_left = l; l 3786 ext/imap/php_imap.c int l = strlen(tmp) - 2, l2; l 3790 ext/imap/php_imap.c tmp[l] = '\0'; l 3791 ext/imap/php_imap.c tempstring = emalloc(l); l 3792 ext/imap/php_imap.c memcpy(tempstring, tmp, l); l 3796 ext/imap/php_imap.c tempstring = erealloc(tempstring, l + l2 + CRLF_LEN + 1); l 3797 ext/imap/php_imap.c memcpy(tempstring + l, custom_headers_param->value, l2); l 3798 ext/imap/php_imap.c memcpy(tempstring + l + l2, CRLF, CRLF_LEN); l 3799 ext/imap/php_imap.c l += l2 + CRLF_LEN; l 3804 ext/imap/php_imap.c mystring = emalloc(l + CRLF_LEN + 1); l 3805 ext/imap/php_imap.c memcpy(mystring, tempstring, l); l 3806 ext/imap/php_imap.c memcpy(mystring + l , CRLF, CRLF_LEN); l 3807 ext/imap/php_imap.c mystring[l + CRLF_LEN] = '\0'; l 91 ext/interbase/ibase_events.c char **events, unsigned short *l, char **event_buf, char **result_buf) l 106 ext/interbase/ibase_events.c *l = (unsigned short) isc_event_block(event_buf, result_buf, count, events[0], l 118 ext/interbase/ibase_events.c isc_wait_for_event(dummy_result, &ib_link->handle, *l, *event_buf, *result_buf); l 119 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 534 ext/interbase/ibase_query.c ISC_INT64 l; l 560 ext/interbase/ibase_query.c if (!sscanf(Z_STRVAL_P(val), "%" LL_MASK "d", &l)) { l 565 ext/interbase/ibase_query.c *(ISC_INT64 *) buf = l; l 881 ext/interbase/ibase_query.c ibase_tr_list **l; l 908 ext/interbase/ibase_query.c for (l = &ib_query->link->tr_list; *l != NULL; l = &(*l)->next); l 909 ext/interbase/ibase_query.c *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list)); l 910 ext/interbase/ibase_query.c (*l)->trans = trans; l 911 ext/interbase/ibase_query.c (*l)->next = NULL; l 1075 ext/interbase/ibase_query.c long l; l 1102 ext/interbase/ibase_query.c TSRMLS_CC, "ls", &l, &query, &query_len) && l == PHP_IBASE_CREATE) { l 1110 ext/interbase/ibase_query.c } else if (((l = INI_INT("ibase.max_links")) != -1) && (IBG(num_links) >= l)) { l 1112 ext/interbase/ibase_query.c "(%ld) reached" TSRMLS_CC, l); l 1315 ext/interbase/ibase_query.c unsigned short l; l 1337 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d", *(ISC_INT64 *) data); l 1338 ext/interbase/ibase_query.c ZVAL_STRINGL(val,string_data,l,1); l 1343 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 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), "-0.%0*" LL_MASK "d", -scale, -n % f); l 1349 ext/interbase/ibase_query.c ZVAL_STRINGL(val,string_data,l,1); l 1362 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, n % f); l 1364 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, -n % f); l 1366 ext/interbase/ibase_query.c l = slprintf(string_data, sizeof(string_data), "-0.%0*ld", -scale, -n % f); l 1368 ext/interbase/ibase_query.c ZVAL_STRINGL(val,string_data,l,1); l 1402 ext/interbase/ibase_query.c l = strftime(string_data, sizeof(string_data), format, &t); l 1406 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 1410 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 1413 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 1417 ext/interbase/ibase_query.c ZVAL_STRINGL(val,string_data,l,1); l 585 ext/interbase/interbase.c ibase_tr_list *l; l 589 ext/interbase/interbase.c for (l = link->tr_list; l != NULL; ++i) { l 590 ext/interbase/interbase.c ibase_tr_list *p = l; l 617 ext/interbase/interbase.c l = l->next; l 683 ext/interbase/interbase.c ibase_tr_list **l; l 684 ext/interbase/interbase.c for (l = &trans->db_link[i]->tr_list; *l != NULL; l = &(*l)->next) { l 685 ext/interbase/interbase.c if ( (*l)->trans == trans) { l 686 ext/interbase/interbase.c ibase_tr_list *p = *l; l 687 ext/interbase/interbase.c *l = p->next; l 832 ext/interbase/interbase.c HMODULE l = GetModuleHandle("fbclient"); l 834 ext/interbase/interbase.c if (!l && !(l = GetModuleHandle("gds32"))) { l 837 ext/interbase/interbase.c info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); l 960 ext/interbase/interbase.c long l; l 983 ext/interbase/interbase.c if ((l = INI_INT("ibase.max_links")) != -1 && IBG(num_links) >= l) { l 994 ext/interbase/interbase.c if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) { l 1085 ext/interbase/interbase.c ibase_tr_list *l; l 1110 ext/interbase/interbase.c for (l = ib_link->tr_list; l != NULL; l = l->next) { l 1111 ext/interbase/interbase.c if (l->trans != NULL) l->trans->handle = NULL; l 1252 ext/interbase/interbase.c ibase_tr_list **l; l 1263 ext/interbase/interbase.c for (l = &ib_link[i]->tr_list; *l != NULL; l = &(*l)->next); l 1264 ext/interbase/interbase.c *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list)); l 1265 ext/interbase/interbase.c (*l)->trans = ib_trans; l 1266 ext/interbase/interbase.c (*l)->next = NULL; l 1460 ext/interbase/interbase.c int l; l 1462 ext/interbase/interbase.c l = spprintf(&res, 0, "%" LL_MASK "d", result); l 1463 ext/interbase/interbase.c RETURN_STRINGL(res, l, 0); l 215 ext/interbase/php_ibase_udf.c ISC_INT64 l; l 252 ext/interbase/php_ibase_udf.c l = *(ISC_INT64*)argv[i]->dsc_address; l 254 ext/interbase/php_ibase_udf.c if (argv[i]->dsc_scale == 0 && l <= LONG_MAX && l >= LONG_MIN) { l 255 ext/interbase/php_ibase_udf.c ZVAL_LONG(argp[i], (long)l); l 257 ext/interbase/php_ibase_udf.c ZVAL_DOUBLE(argp[i], ((double)l)/scales[-argv[i]->dsc_scale]); l 52 ext/intl/grapheme/grapheme_util.c void grapheme_substr_ascii(char *str, int str_len, int f, int l, int argc, char **sub_str, int *sub_str_len) l 57 ext/intl/grapheme/grapheme_util.c if ((l < 0 && -l > str_len)) { l 59 ext/intl/grapheme/grapheme_util.c } else if (l > str_len) { l 60 ext/intl/grapheme/grapheme_util.c l = str_len; l 63 ext/intl/grapheme/grapheme_util.c l = str_len; l 70 ext/intl/grapheme/grapheme_util.c if (l < 0 && (l + str_len - f) < 0) { l 88 ext/intl/grapheme/grapheme_util.c if (l < 0) { l 89 ext/intl/grapheme/grapheme_util.c l = (str_len - f) + l; l 90 ext/intl/grapheme/grapheme_util.c if (l < 0) { l 91 ext/intl/grapheme/grapheme_util.c l = 0; l 99 ext/intl/grapheme/grapheme_util.c if ((f + l) > str_len) { l 100 ext/intl/grapheme/grapheme_util.c l = str_len - f; l 104 ext/intl/grapheme/grapheme_util.c *sub_str_len = l; l 26 ext/intl/grapheme/grapheme_util.h void grapheme_substr_ascii(char *str, int32_t str_len, int32_t f, int32_t l, int argc, char **sub_str, int *sub_str_len); l 433 ext/json/json.c int l; l 436 ext/json/json.c l = strlen(num); l 437 ext/json/json.c if (options & PHP_JSON_PRESERVE_ZERO_FRACTION && strchr(num, '.') == NULL && l < NUM_BUF_SIZE - 2) { l 438 ext/json/json.c num[l++] = '.'; l 439 ext/json/json.c num[l++] = '0'; l 440 ext/json/json.c num[l] = '\0'; l 442 ext/json/json.c smart_str_appendl(buf, num, l); 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 3066 ext/mbstring/mbstring.c size_t size, l, n; l 3092 ext/mbstring/mbstring.c l = strlen(_from_encodings); l 3094 ext/mbstring/mbstring.c _from_encodings = erealloc(_from_encodings, l+n+2); l 3095 ext/mbstring/mbstring.c strcpy(_from_encodings+l, ","); l 3096 ext/mbstring/mbstring.c strcpy(_from_encodings+l+1, Z_STRVAL_PP(hash_entry)); 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 108 ext/mysqli/mysqli_priv.h int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, (__val)); \ l 109 ext/mysqli/mysqli_priv.h RETURN_STRINGL(ret, l, 0); \ l 81 ext/mysqli/mysqli_prop.c __ret_type l;\ l 86 ext/mysqli/mysqli_prop.c l = (__ret_type)__int_func(p);\ l 87 ext/mysqli/mysqli_prop.c if (l < LONG_MAX) {\ l 88 ext/mysqli/mysqli_prop.c ZVAL_LONG(*retval, (long) l);\ l 91 ext/mysqli/mysqli_prop.c int ret_len = spprintf(&ret, 0, __ret_type_sprint_mod, l); \ l 185 ext/mysqli/mysqli_prop.c int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, rc); l 186 ext/mysqli/mysqli_prop.c ZVAL_STRINGL(*retval, ret, l, 0); l 387 ext/mysqli/mysqli_prop.c int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, rc); l 388 ext/mysqli/mysqli_prop.c ZVAL_STRINGL(*retval, ret, l, 0); l 36 ext/mysqli/mysqli_warning.c #define ZVAL_UTF8_STRINGL(z, s, l, flags) ZVAL_STRINGL((z), (char*)(s), (l), ((flags) & ZSTR_DUPLICATE)) l 235 ext/mysqlnd/mysqlnd.h #define mysqlnd_stmt_send_long_data(stmt,p,d,l) (stmt)->m->send_long_data((stmt), (p), (d), (l) TSRMLS_CC) l 562 ext/mysqlnd/mysqlnd_alloc.c size_t l = length; l 565 ext/mysqlnd/mysqlnd_alloc.c while (*p && l--) { l 35 ext/mysqlnd/mysqlnd_bt.c int l = vallen; \ l 36 ext/mysqlnd/mysqlnd_bt.c *str = (char*)erealloc(*str, *len + l + 1); \ l 37 ext/mysqlnd/mysqlnd_bt.c memcpy((*str) + *len, val, l); \ l 38 ext/mysqlnd/mysqlnd_bt.c *len += 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 + 1, tmp, 1); l 914 ext/opcache/Optimizer/block_pass.c int l; l 922 ext/opcache/Optimizer/block_pass.c l = Z_STRLEN(ZEND_OP1_LITERAL(opline)) + Z_STRLEN(ZEND_OP1_LITERAL(last_op)); l 924 ext/opcache/Optimizer/block_pass.c char *tmp = emalloc(l + 1); l 925 ext/opcache/Optimizer/block_pass.c memcpy(tmp, Z_STRVAL(ZEND_OP1_LITERAL(last_op)), l + 1); l 928 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP1_LITERAL(last_op)) = erealloc(Z_STRVAL(ZEND_OP1_LITERAL(last_op)), l + 1); l 931 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP1_LITERAL(last_op))[l] = '\0'; l 934 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP1_LITERAL(opline)) = (char*)zend_new_interned_string(Z_STRVAL(ZEND_OP1_LITERAL(last_op)), l + 1, 1 TSRMLS_CC); l 939 ext/opcache/Optimizer/block_pass.c Z_STRLEN(ZEND_OP1_LITERAL(opline)) = l; l 951 ext/opcache/Optimizer/block_pass.c int l; l 966 ext/opcache/Optimizer/block_pass.c l = Z_STRLEN(ZEND_OP2_LITERAL(opline)) + Z_STRLEN(ZEND_OP2_LITERAL(src)); l 968 ext/opcache/Optimizer/block_pass.c char *tmp = emalloc(l + 1); l 969 ext/opcache/Optimizer/block_pass.c memcpy(tmp, Z_STRVAL(ZEND_OP2_LITERAL(src)), l + 1); l 972 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP2_LITERAL(src)) = erealloc(Z_STRVAL(ZEND_OP2_LITERAL(src)), l + 1); l 975 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP2_LITERAL(src))[l] = '\0'; l 980 ext/opcache/Optimizer/block_pass.c Z_STRVAL(ZEND_OP2_LITERAL(opline)) = (char*)zend_new_interned_string(Z_STRVAL(ZEND_OP2_LITERAL(src)), l + 1, 1 TSRMLS_CC); l 985 ext/opcache/Optimizer/block_pass.c Z_STRLEN(ZEND_OP2_LITERAL(opline)) = l; l 135 ext/opcache/shared_alloc_win32.c int l; l 139 ext/opcache/shared_alloc_win32.c l = strlen(windir); l 140 ext/opcache/shared_alloc_win32.c snprintf(windir + l, sizeof(windir) - l - 1, "\\%s@%s@%.32s", ACCEL_FILEMAP_BASE, uname, accel_gen_system_id()); l 148 ext/pdo_dblib/dblib_driver.c int l = 1; l 157 ext/pdo_dblib/dblib_driver.c l += 2; l 160 ext/pdo_dblib/dblib_driver.c ++l; l 167 ext/pdo_dblib/dblib_driver.c *quotedlen = l+1; l 279 ext/pdo_firebird/firebird_driver.c char const *co, *l, *r; l 298 ext/pdo_firebird/firebird_driver.c for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { l 299 ext/pdo_firebird/firebird_driver.c strncpy(c, l, r-l+1); l 300 ext/pdo_firebird/firebird_driver.c c += (r-l+1); l 306 ext/pdo_firebird/firebird_driver.c strncpy(c, l, *quotedlen-(c-*quoted)-1); l 399 ext/pdo_firebird/firebird_driver.c long l, pindex = -1; l 427 ext/pdo_firebird/firebird_driver.c for (l = in_quote = in_param = 0; l <= sql_len; ++l) { l 428 ext/pdo_firebird/firebird_driver.c if ( !(in_quote ^= (sql[l] == '\''))) { l 430 ext/pdo_firebird/firebird_driver.c switch (sql[l]) { l 434 ext/pdo_firebird/firebird_driver.c *ppname++ = sql[l]; l 441 ext/pdo_firebird/firebird_driver.c if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') l 442 ext/pdo_firebird/firebird_driver.c || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { l 445 ext/pdo_firebird/firebird_driver.c *ppname++ = sql[l]; l 456 ext/pdo_firebird/firebird_driver.c *c++ = sql[l]; l 568 ext/pdo_firebird/firebird_driver.c HMODULE l = GetModuleHandle("fbclient"); l 570 ext/pdo_firebird/firebird_driver.c if (!l) { l 573 ext/pdo_firebird/firebird_driver.c info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); l 608 ext/pdo_firebird/firebird_driver.c long i = 0, l, sqlcode = isc_sqlcode(s); l 613 ext/pdo_firebird/firebird_driver.c while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { l 614 ext/pdo_firebird/firebird_driver.c i += l; l 374 ext/pdo_oci/oci_driver.c char const *cu, *l, *r; l 393 ext/pdo_oci/oci_driver.c for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { l 394 ext/pdo_oci/oci_driver.c strncpy(c, l, r-l+1); l 395 ext/pdo_oci/oci_driver.c c += (r-l+1); l 400 ext/pdo_oci/oci_driver.c strncpy(c, l, *quotedlen-(c-*quoted)-1); l 272 ext/pgsql/pgsql.c ZEND_ARG_INFO(0, l) l 1412 ext/phar/phar_object.c uint l; l 1423 ext/phar/phar_object.c uint str_key_len, base_len = p_obj->l, fname_len; l 1827 ext/phar/phar_object.c pass.l = dir_len; l 1911 ext/phar/phar_object.c pass.l = base_len; l 1308 ext/posix/posix.c struct limitlist *l = NULL; l 1314 ext/posix/posix.c for (l=limits; l->name; l++) { l 1315 ext/posix/posix.c if (posix_addlimit(l->limit, l->name, return_value TSRMLS_CC) == FAILURE) { l 481 ext/readline/readline.c static zval *_readline_long_zval(long l) l 487 ext/readline/readline.c Z_LVAL_P(ret) = l; l 1301 ext/session/session.c zend_llist *l = &SG(sapi_headers).headers; l 1312 ext/session/session.c current = l->head; l 1321 ext/session/session.c l->head = next; l 1326 ext/session/session.c l->tail = current->prev; l 1330 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 470 ext/standard/crypt_freesec.c uint32_t l, r, *kl, *kr, *kl1, *kr1; l 494 ext/standard/crypt_freesec.c l = ip_maskl[0][l_in >> 24] l 552 ext/standard/crypt_freesec.c f ^= l; l 553 ext/standard/crypt_freesec.c l = r; l 556 ext/standard/crypt_freesec.c r = l; l 557 ext/standard/crypt_freesec.c l = f; l 562 ext/standard/crypt_freesec.c *l_out = fp_maskl[0][l >> 24] l 563 ext/standard/crypt_freesec.c | fp_maskl[1][(l >> 16) & 0xff] l 564 ext/standard/crypt_freesec.c | fp_maskl[2][(l >> 8) & 0xff] l 565 ext/standard/crypt_freesec.c | fp_maskl[3][l & 0xff] l 570 ext/standard/crypt_freesec.c *r_out = fp_maskr[0][l >> 24] l 571 ext/standard/crypt_freesec.c | fp_maskr[1][(l >> 16) & 0xff] l 572 ext/standard/crypt_freesec.c | fp_maskr[2][(l >> 8) & 0xff] l 573 ext/standard/crypt_freesec.c | fp_maskr[3][l & 0xff] l 620 ext/standard/crypt_freesec.c uint32_t count, salt, l, r0, r1, keybuf[2]; l 708 ext/standard/crypt_freesec.c l = (r0 >> 8); l 709 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 18) & 0x3f]; l 710 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 12) & 0x3f]; l 711 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 6) & 0x3f]; l 712 ext/standard/crypt_freesec.c *p++ = ascii64[l & 0x3f]; l 714 ext/standard/crypt_freesec.c l = (r0 << 16) | ((r1 >> 16) & 0xffff); l 715 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 18) & 0x3f]; l 716 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 12) & 0x3f]; l 717 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 6) & 0x3f]; l 718 ext/standard/crypt_freesec.c *p++ = ascii64[l & 0x3f]; l 720 ext/standard/crypt_freesec.c l = r1 << 2; l 721 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 12) & 0x3f]; l 722 ext/standard/crypt_freesec.c *p++ = ascii64[(l >> 6) & 0x3f]; l 723 ext/standard/crypt_freesec.c *p++ = ascii64[l & 0x3f]; l 107 ext/standard/exec.c int l = 0, pclose_return; l 160 ext/standard/exec.c l = bufl; l 161 ext/standard/exec.c while (l-- && isspace(((unsigned char *)buf)[l])); l 162 ext/standard/exec.c if (l != (int)(bufl - 1)) { l 163 ext/standard/exec.c bufl = l + 1; l 173 ext/standard/exec.c l = bufl; l 174 ext/standard/exec.c while (l-- && isspace(((unsigned char *)buf)[l])); l 175 ext/standard/exec.c if (l != (int)(bufl - 1)) { l 176 ext/standard/exec.c bufl = l + 1; l 291 ext/standard/exec.c size_t l = strlen(str); l 292 ext/standard/exec.c uint64_t estimate = (2 * (uint64_t)l) + 1; l 299 ext/standard/exec.c if (l > cmd_max_len - 2 - 1) { l 304 ext/standard/exec.c cmd = safe_emalloc(2, l, 1); l 306 ext/standard/exec.c for (x = 0, y = 0; x < l; x++) { l 307 ext/standard/exec.c int mb_len = php_mblen(str + x, (l - x)); l 323 ext/standard/exec.c if (!p && (p = memchr(str + x + 1, str[x], l - x - 1))) { l 396 ext/standard/exec.c size_t l = strlen(str); l 398 ext/standard/exec.c uint64_t estimate = (4 * (uint64_t)l) + 3; l 403 ext/standard/exec.c if (l > cmd_max_len - 2 - 1) { l 408 ext/standard/exec.c cmd = safe_emalloc(4, l, 3); /* worst case */ l 416 ext/standard/exec.c for (x = 0; x < l; x++) { l 417 ext/standard/exec.c int mb_len = php_mblen(str + x, (l - x)); l 1330 ext/standard/filters.c long l; l 1335 ext/standard/filters.c if ((err = php_conv_get_long_prop_ex(ht, &l, field_name, field_name_len)) == PHP_CONV_ERR_SUCCESS) { l 1336 ext/standard/filters.c *pretval = l; l 1344 ext/standard/filters.c long l; l 1349 ext/standard/filters.c if ((err = php_conv_get_ulong_prop_ex(ht, &l, field_name, field_name_len)) == PHP_CONV_ERR_SUCCESS) { l 1350 ext/standard/filters.c *pretval = l; l 550 ext/standard/html.c const uni_to_enc *l = table, l 561 ext/standard/html.c while (l <= h) { l 562 ext/standard/html.c m = l + (h - l) / 2; l 566 ext/standard/html.c l = m + 1; l 1569 ext/standard/html.c size_t l = r->data.ent.entity_len; l 1570 ext/standard/html.c memcpy(&entity[1], r->data.ent.entity, l); l 1571 ext/standard/html.c entity[l + 1] = ';'; l 1572 ext/standard/html.c add_assoc_stringl_ex(arr, key, written_k1 + 1, entity, l + 2, 1); l 1579 ext/standard/html.c size_t l = mcpr[0].leading_entry.default_entity_len; l 1580 ext/standard/html.c memcpy(&entity[1], mcpr[0].leading_entry.default_entity, l); l 1581 ext/standard/html.c entity[l + 1] = ';'; l 1582 ext/standard/html.c add_assoc_stringl_ex(arr, key, written_k1 + 1, entity, l + 2, 1); l 1586 ext/standard/html.c size_t l, l 1592 ext/standard/html.c l = mcpr[i].normal_entry.entity_len; l 1602 ext/standard/html.c memcpy(&entity[1], mcpr[i].normal_entry.entity, l); l 1603 ext/standard/html.c entity[l + 1] = ';'; l 1604 ext/standard/html.c entity[l + 1] = '\0'; l 1605 ext/standard/html.c add_assoc_stringl_ex(arr, key, written_k1 + written_k2 + 1, entity, l + 1, 1); l 881 ext/standard/http_fopen_wrapper.c int l; \ l 882 ext/standard/http_fopen_wrapper.c l = php_url_decode(val, strlen(val)); \ l 883 ext/standard/http_fopen_wrapper.c s = (unsigned char*)val; e = s + l; \ l 290 ext/standard/mail.c int l; l 295 ext/standard/mail.c l = spprintf(&tmp, 0, "[%s] mail() on [%s:%d]: To: %s -- Headers: %s\n", date_str, zend_get_executed_filename(TSRMLS_C), zend_get_executed_lineno(TSRMLS_C), to, hdr ? hdr : ""); l 305 ext/standard/mail.c tmp[l - 1] = 0; l 310 ext/standard/mail.c tmp[l - 1] = '\n'; l 311 ext/standard/mail.c php_mail_log_to_file(mail_log, tmp, l TSRMLS_CC); 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 uint string_length, cnt, l, sizeenv=0, el_len; l 173 ext/standard/proc_open.c l = string_length + el_len + 1; l 182 ext/standard/proc_open.c p += l; l 2243 ext/standard/string.c long l = 0, f; l 2247 ext/standard/string.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", &str, &str_len, &f, &l) == FAILURE) { l 2252 ext/standard/string.c if ((l < 0 && -l > str_len)) { l 2254 ext/standard/string.c } else if (l > str_len) { l 2255 ext/standard/string.c l = str_len; l 2258 ext/standard/string.c l = str_len; l 2267 ext/standard/string.c if (l < 0 && (l + str_len - f) < 0) { l 2284 ext/standard/string.c if (l < 0) { l 2285 ext/standard/string.c l = (str_len - f) + l; l 2286 ext/standard/string.c if (l < 0) { l 2287 ext/standard/string.c l = 0; l 2295 ext/standard/string.c if ((f + l) > str_len) { l 2296 ext/standard/string.c l = str_len - f; l 2299 ext/standard/string.c RETURN_STRINGL(str + f, l, 1); l 2313 ext/standard/string.c int l = 0; l 2347 ext/standard/string.c l = Z_LVAL_PP(len); l 2351 ext/standard/string.c l = Z_STRLEN_PP(str); l 2391 ext/standard/string.c if (l < 0) { l 2392 ext/standard/string.c l = (Z_STRLEN_PP(str) - f) + l; l 2393 ext/standard/string.c if (l < 0) { l 2394 ext/standard/string.c l = 0; l 2400 ext/standard/string.c } else if (l > Z_STRLEN_PP(str) || (l < 0 && -l > Z_STRLEN_PP(str))) { l 2401 ext/standard/string.c l = Z_STRLEN_PP(str); l 2404 ext/standard/string.c if ((f + l) > Z_STRLEN_PP(str)) { l 2405 ext/standard/string.c l = Z_STRLEN_PP(str) - f; l 2416 ext/standard/string.c result_len = Z_STRLEN_PP(str) - l + repl_len; l 2423 ext/standard/string.c memcpy((result + f + repl_len), Z_STRVAL_PP(str) + f + l, Z_STRLEN_PP(str) - f - l); l 2509 ext/standard/string.c l = Z_LVAL(dummy); l 2511 ext/standard/string.c l = Z_LVAL_PP(tmp_len); l 2515 ext/standard/string.c l = Z_STRLEN_P(orig_str); l 2518 ext/standard/string.c l = Z_LVAL_PP(len); l 2520 ext/standard/string.c l = Z_STRLEN_P(orig_str); l 2523 ext/standard/string.c if (l < 0) { l 2524 ext/standard/string.c l = (Z_STRLEN_P(orig_str) - f) + l; l 2525 ext/standard/string.c if (l < 0) { l 2526 ext/standard/string.c l = 0; l 2530 ext/standard/string.c if ((f + l) > Z_STRLEN_P(orig_str)) { l 2531 ext/standard/string.c l = Z_STRLEN_P(orig_str) - f; l 2534 ext/standard/string.c result_len = Z_STRLEN_P(orig_str) - l; l 2563 ext/standard/string.c memcpy((result + f + Z_STRLEN_P(repl_str)), Z_STRVAL_P(orig_str) + f + l, Z_STRLEN_P(orig_str) - f - l); l 2571 ext/standard/string.c memcpy((result + f), Z_STRVAL_P(orig_str) + f + l, Z_STRLEN_P(orig_str) - f - l); l 2580 ext/standard/string.c memcpy((result + f + Z_STRLEN_PP(repl)), Z_STRVAL_P(orig_str) + f + l, Z_STRLEN_P(orig_str) - f - l); l 2816 ext/standard/string.c STRLEN l; l 2824 ext/standard/string.c #define L(a) ((a)->l) l 3211 ext/standard/string.c int l; l 3216 ext/standard/string.c for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++); l 3217 ext/standard/string.c if (l > *max) { l 3218 ext/standard/string.c *max = l; l 3292 ext/standard/string.c int l; l 3295 ext/standard/string.c l = *len; l 3297 ext/standard/string.c l = strlen(str); l 3302 ext/standard/string.c while (l > 0) { l 3308 ext/standard/string.c l--; l 3309 ext/standard/string.c if (l > 0) { l 3316 ext/standard/string.c l--; l 3320 ext/standard/string.c l--; l 4923 ext/standard/string.c int l=0; l 4930 ext/standard/string.c l = (e-s) < (ee-e) ? (e-s) : (ee-e); l 4931 ext/standard/string.c memmove(e, s, l); l 4932 ext/standard/string.c e += l; l 396 ext/wddx/wddx.c if (l > 0) { \ l 397 ext/wddx/wddx.c php_wddx_add_chunk_ex(packet, buf, l); \ l 398 ext/wddx/wddx.c l = 0; \ l 584 ext/zip/lib/zip_dirent.c struct tm *l; l 599 ext/zip/lib/zip_dirent.c l = localtime(&now); l 600 ext/zip/lib/zip_dirent.c torrenttime.tm_gmtoff = l->tm_gmtoff; l 601 ext/zip/lib/zip_dirent.c torrenttime.tm_zone = l->tm_zone; l 49 ext/zip/lib/zip_source_close.c (void)src->cb.l(src->src, src->ud, NULL, 0, ZIP_SOURCE_CLOSE); l 67 ext/zip/lib/zip_source_error.c if (src->cb.l(src->src, src->ud, e, sizeof(e), ZIP_SOURCE_ERROR) < 0) { l 54 ext/zip/lib/zip_source_free.c (void)src->cb.l(src->src, src->ud, NULL, 0, ZIP_SOURCE_FREE); l 55 ext/zip/lib/zip_source_layered.c zs->cb.l = cb; l 60 ext/zip/lib/zip_source_open.c ret = src->cb.l(src->src, src->ud, NULL, 0, ZIP_SOURCE_OPEN); l 56 ext/zip/lib/zip_source_pop.c (void)src->cb.l(src, src->ud, NULL, 0, ZIP_SOURCE_CLOSE); l 57 ext/zip/lib/zip_source_pop.c (void)src->cb.l(src, src->ud, NULL, 0, ZIP_SOURCE_FREE); l 53 ext/zip/lib/zip_source_read.c ret = src->cb.l(src->src, src->ud, data, len, ZIP_SOURCE_READ); l 61 ext/zip/lib/zip_source_stat.c ret = src->cb.l(src->src, src->ud, st, sizeof(*st), ZIP_SOURCE_STAT); l 363 ext/zip/lib/zipint.h zip_source_layered_callback l; l 155 ext/zip/php_zip.c # define CWD_STATE_ALLOC(l) malloc(l) l 158 ext/zip/php_zip.c # define CWD_STATE_ALLOC(l) emalloc(l) l 610 main/SAPI.c static void sapi_remove_header(zend_llist *l, char *name, uint len) { l 613 main/SAPI.c zend_llist_element *current=l->head; l 623 main/SAPI.c l->head = next; l 628 main/SAPI.c l->tail = current->prev; l 632 main/SAPI.c --l->count; l 632 main/php_ini.c int l, total_l = 0; l 677 main/php_ini.c l = strlen(ini_file); l 678 main/php_ini.c total_l += l + 2; l 679 main/php_ini.c p = estrndup(ini_file, l); l 182 main/streams/streams.c size_t l = 0; l 201 main/streams/streams.c l += strlen(*err_buf_p); l 203 main/streams/streams.c l += brlen; l 206 main/streams/streams.c msg = emalloc(l + 1); l 242 sapi/apache_hooks/php_apache.c long l; l 250 sapi/apache_hooks/php_apache.c l = *(long *)((char*)r + offset); l 252 sapi/apache_hooks/php_apache.c RETURN_LONG(l); l 1303 sapi/cgi/cgi_main.c int l = strlen(env_document_root); l 1307 sapi/cgi/cgi_main.c if (l && env_document_root[l - 1] == '/') { l 1308 sapi/cgi/cgi_main.c --l; l 1317 sapi/cgi/cgi_main.c path_translated_len = l + (env_path_info ? strlen(env_path_info) : 0); l 1319 sapi/cgi/cgi_main.c memcpy(path_translated, env_document_root, l); l 1321 sapi/cgi/cgi_main.c memcpy(path_translated + l, env_path_info, (path_translated_len - l)); l 821 sapi/cli/php_cli_server.c size_t l = strlen(buf); l 822 sapi/cli/php_cli_server.c if (l > 0) { l 823 sapi/cli/php_cli_server.c buf[l - 1] = '\0'; l 1506 sapi/cli/php_cli_server.c size_t l = strlen(*file); l 1507 sapi/cli/php_cli_server.c memmove(q, *file, l + 1); l 1509 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 1296 sapi/fpm/fpm/fpm_main.c int l = strlen(env_document_root); l 1300 sapi/fpm/fpm/fpm_main.c if (l && env_document_root[l - 1] == '/') { l 1301 sapi/fpm/fpm/fpm_main.c --l; l 1310 sapi/fpm/fpm/fpm_main.c path_translated_len = l + (env_path_info ? strlen(env_path_info) : 0); l 1312 sapi/fpm/fpm/fpm_main.c memcpy(path_translated, env_document_root, l); l 1314 sapi/fpm/fpm/fpm_main.c memcpy(path_translated + l, env_path_info, (path_translated_len - l)); l 51 sapi/fpm/fpm/fpm_php_trace.c long l; l 65 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long((long) &EG(current_execute_data), &l)) { l 69 sapi/fpm/fpm/fpm_php_trace.c execute_data = l; l 77 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, function_state.function), &l)) { l 81 sapi/fpm/fpm/fpm_php_trace.c function = l; l 93 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, op_array), &l)) { l 99 sapi/fpm/fpm/fpm_php_trace.c if (valid_ptr(l)) { l 100 sapi/fpm/fpm/fpm_php_trace.c long op_array = l; l 107 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, opline), &l)) { l 111 sapi/fpm/fpm/fpm_php_trace.c if (valid_ptr(l)) { l 112 sapi/fpm/fpm/fpm_php_trace.c long opline = l; l 113 sapi/fpm/fpm/fpm_php_trace.c uint *lu = (uint *) &l; l 115 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { l 124 sapi/fpm/fpm/fpm_php_trace.c if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, prev_execute_data), &l)) { l 128 sapi/fpm/fpm/fpm_php_trace.c execute_data = l; l 14 sapi/fpm/fpm/fpm_trace.c long l; l 15 sapi/fpm/fpm/fpm_trace.c char *lc = (char *) &l; l 17 sapi/fpm/fpm/fpm_trace.c if (0 > fpm_trace_get_long(addr, &l)) { l 21 sapi/fpm/fpm/fpm_trace.c i = l % SIZEOF_LONG; l 22 sapi/fpm/fpm/fpm_trace.c l -= i; l 23 sapi/fpm/fpm/fpm_trace.c for (addr = l; ; addr += SIZEOF_LONG) { l 24 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) \ l 32 sapi/phpdbg/phpdbg_break.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[10]) l 268 sapi/phpdbg/phpdbg_cmd.c PHPDBG_API zend_bool phpdbg_match_param(const phpdbg_param_t *l, const phpdbg_param_t *r TSRMLS_DC) /* {{{ */ l 270 sapi/phpdbg/phpdbg_cmd.c if (l && r) { l 271 sapi/phpdbg/phpdbg_cmd.c if (l->type == r->type) { l 272 sapi/phpdbg/phpdbg_cmd.c switch (l->type) { l 279 sapi/phpdbg/phpdbg_cmd.c if (l->num != r->num) { l 285 sapi/phpdbg/phpdbg_cmd.c return (l->len == r->len) && l 286 sapi/phpdbg/phpdbg_cmd.c (memcmp(l->str, r->str, l->len) == SUCCESS); l 289 sapi/phpdbg/phpdbg_cmd.c return (l->num == r->num); l 292 sapi/phpdbg/phpdbg_cmd.c return (l->addr == r->addr); l 295 sapi/phpdbg/phpdbg_cmd.c if (l->file.line == r->file.line) { l 297 sapi/phpdbg/phpdbg_cmd.c strlen(l->file.name), strlen(r->file.name)}; l 300 sapi/phpdbg/phpdbg_cmd.c if ((!l->num && !r->num) || (l->num == r->num)) { l 302 sapi/phpdbg/phpdbg_cmd.c l->file.name, r->file.name, lengths[0]) == SUCCESS); l 309 sapi/phpdbg/phpdbg_cmd.c if (l->num != r->num) { l 316 sapi/phpdbg/phpdbg_cmd.c strlen(l->method.class), strlen(r->method.class)}; l 318 sapi/phpdbg/phpdbg_cmd.c if (memcmp(l->method.class, r->method.class, lengths[0]) == SUCCESS) { l 319 sapi/phpdbg/phpdbg_cmd.c lengths[0] = strlen(l->method.name); l 324 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) \ l 31 sapi/phpdbg/phpdbg_info.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[14]) l 37 sapi/phpdbg/phpdbg_list.c #define PHPDBG_LIST_COMMAND_D(f, h, a, m, l, s) \ l 38 sapi/phpdbg/phpdbg_list.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[13]) l 29 sapi/phpdbg/phpdbg_print.c #define PHPDBG_PRINT_COMMAND_D(f, h, a, m, l, s) \ l 30 sapi/phpdbg/phpdbg_print.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9]) l 30 sapi/phpdbg/phpdbg_set.c #define PHPDBG_SET_COMMAND_D(f, h, a, m, l, s) \ l 31 sapi/phpdbg/phpdbg_set.c PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[18]) l 156 sapi/thttpd/thttpd.c # define ADD_VEC(str,l) smart_str_appendl(&vec_str, (str), (l)) l 160 sapi/thttpd/thttpd.c # define ADD_VEC(str,l) vec[n].iov_base=str;len += (vec[n].iov_len=l); n++