Searched refs:lp (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/standard/ |
H A D | quot_print.c | 142 zend_ulong lp = 0; in php_quot_print_encode() local 155 lp = 0; in php_quot_print_encode() 158 if ((((lp+= 3) > PHP_QPRINT_MAXL) && (c <= 0x7f)) in php_quot_print_encode() 159 || ((c > 0x7f) && (c <= 0xdf) && ((lp + 3) > PHP_QPRINT_MAXL)) in php_quot_print_encode() 160 || ((c > 0xdf) && (c <= 0xef) && ((lp + 6) > PHP_QPRINT_MAXL)) in php_quot_print_encode() 161 || ((c > 0xef) && (c <= 0xf4) && ((lp + 9) > PHP_QPRINT_MAXL))) { in php_quot_print_encode() 165 lp = 3; in php_quot_print_encode() 171 if ((++lp) > PHP_QPRINT_MAXL) { in php_quot_print_encode() 175 lp = 1; in php_quot_print_encode()
|
H A D | versioning.c | 31 char *buf = safe_emalloc(len, 2, 1), *q, lp, lq; in php_canonicalize_version() local 41 *q++ = lp = *p++; in php_canonicalize_version() 57 } else if ((isndig(lp) && isdig(*p)) || (isdig(lp) && isndig(*p))) { in php_canonicalize_version() 69 lp = *p++; in php_canonicalize_version()
|
/php-src/ext/spl/tests/SplFileObject/ |
H A D | fileobject_003.phpt | 6 function test($name, $lc, $lp) 32 var_dump($l != '/' && $l != '\\' && $l == $lp);
|
/php-src/ext/dom/lexbor/lexbor/css/ |
H A D | value.h | 239 lxb_css_value_length_percentage_sr(const lxb_css_value_length_percentage_t *lp,
|
/php-src/ext/fileinfo/libmagic/ |
H A D | apprentice.c | 1819 parse_indirect_modifier(struct magic_set *ms, struct magic *m, const char **lp) in parse_indirect_modifier() argument 1821 const char *l = *lp; in parse_indirect_modifier() 1832 *lp = l; in parse_indirect_modifier() 1835 *lp = l; in parse_indirect_modifier() 1840 parse_op_modifier(struct magic_set *ms, struct magic *m, const char **lp, in parse_op_modifier() argument 1843 const char *l = *lp; in parse_op_modifier() 1853 *lp = l; in parse_op_modifier() 1857 parse_string_modifier(struct magic_set *ms, struct magic *m, const char **lp) in parse_string_modifier() argument 1859 const char *l = *lp; in parse_string_modifier() 1953 *lp = l; in parse_string_modifier() [all …]
|
Completed in 20 milliseconds