| /PHP_5_3/ext/phar/phar/ |
| H A D | clicommand.inc | 223 function cli_get_SP3($l1, $l2, $arg_inf) 225 return str_repeat(' ', $l1 + 2 + 4 + 8 + 2 + $l2 + 2); 257 $l2 = strlen($sp2); 258 $inf .= $this->cli_wordwrap($sp . $arg . $conf['inf'], $l2, $sp2) . "\n";
|
| H A D | pharcommand.inc | 38 * @param string $l2 Twelve 42 function cli_get_SP3($l1, $l2, $arg_inf) 44 return str_repeat(' ', $l1 + 2 + 4 + 9 + 2 + $l2 + 2);
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 25043 struct flock l2; local 25044 l2 = *p; 25045 osFcntl(fd, F_GETLK, &l2); 25046 if( l2.l_type==F_RDLCK ){ 25048 }else if( l2.l_type==F_WRLCK ){ 25050 }else if( l2.l_type==F_UNLCK ){ 25056 zType, (int)l2.l_start, (int)l2.l_len, (int)l2.l_pid); [all...] |
| /PHP_5_3/main/ |
| H A D | mergesort.c | 110 register u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local 137 l2 = list1; 139 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) { 141 f1 = l2; 145 l2 = list1 + (p2 - list2); 146 while (f1 < l1 && f2 < l2) { 153 b = f2, t = l2; 213 if (f2 < l2) { 215 ICOPY_LIST(f2, tp2, l2); 217 CCOPY_LIST(f2, tp2, l2); 268 u_char *f1, *f2, *s, *l2, *last, *p2; local [all...] |
| /PHP_5_3/ |
| H A D | run-tests.php | 2104 function comp_line($l1, $l2, $is_reg) 2107 return preg_match('/^'. $l1 . '$/s', $l2); 2109 return !strcmp($l1, $l2); 2188 reset($old2); $k2 = key($old2); $l2 = -2; 2196 } else if ($k2 == $l2 + 1 || $k1 === null) { 2197 $l2 = $k2; variable 2205 $l2 = $k2; variable
|
| /PHP_5_3/ext/exif/ |
| H A D | exif.c | 3276 size_t l1, l2=0; local 3281 l2 = php_strnlen(buffer+2+l1+1, length-2-l1-1); 3282 exif_iif_add_tag(ImageInfo, SECTION_APP12, "Info", TAG_NONE, TAG_FMT_STRING, l2, buffer+2+l1+1 TSRMLS_CC); 3286 exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Process section APP12 with l1=%d, l2=%d done", l1, l2);
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 3795 int l = strlen(tmp) - 2, l2; local 3804 l2 = strlen(custom_headers_param->value); 3805 tempstring = erealloc(tempstring, l + l2 + CRLF_LEN + 1); 3806 memcpy(tempstring + l, custom_headers_param->value, l2); 3807 memcpy(tempstring + l + l2, CRLF, CRLF_LEN); 3808 l += l2 + CRLF_LEN;
|
| /PHP_5_3/ext/soap/ |
| H A D | php_http.c | 256 int l2 = strlen(domain); local 257 if (l1 > l2) { 258 return strcmp(host+l1-l2,domain) == 0;
|
| H A D | php_sdl.c | 232 int l1, l2; local 244 l2 = s ? (s - (char*)uri) : strlen((char*)uri); 245 if (l1 != l2) { 254 if (l2 > 11 && 256 uri[l2-3] == ':' && 257 uri[l2-2] == '8' && 258 uri[l2-1] == '0') { 259 l2 -= 3; 270 if (l2 > 13 && 272 uri[l2 [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | levenshtein.c | 30 static int reference_levdist(const char *s1, int l1, const char *s2, int l2, int cost_ins, int cost_rep, int cost_del ) argument 36 return l2 * cost_ins; 38 if (l2 == 0) { 42 if ((l1 > LEVENSHTEIN_MAX_LENGTH) || (l2 > LEVENSHTEIN_MAX_LENGTH)) { 45 p1 = safe_emalloc((l2 + 1), sizeof(int), 0); 46 p2 = safe_emalloc((l2 + 1), sizeof(int), 0); 48 for (i2 = 0; i2 <= l2; i2++) { 54 for (i2 = 0; i2 < l2; i2++) { 70 c0 = p1[l2];
|
| H A D | math.c | 613 long l1 = 1, l2 = Z_LVAL_P(zbase), i = Z_LVAL_P(zexp); local 617 } else if (l2 == 0) { 628 ZEND_SIGNED_MULTIPLY_LONG(l1,l2,l1,dval,overflow); 629 if (overflow) RETURN_DOUBLE(dval * pow(l2,i)); 632 ZEND_SIGNED_MULTIPLY_LONG(l2,l2,l2,dval,overflow);
|
| H A D | versioning.c | 132 long l1, l2; local 164 l2 = strtol(p2, NULL, 10); 165 compare = sign(l1 - l2);
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib.c | 495 unsigned long l2; local 507 l2 = data_len + (data_len / PHP_ZLIB_MODIFIER) + 15 + 1; /* room for \0 */ 508 s2 = (char *) emalloc(l2); 514 status = compress2(s2, &l2, data, data_len, level); 516 status = compress(s2, &l2, data, data_len); 520 s2 = erealloc(s2, l2 + 1); 521 s2[l2] = '\0'; 522 RETURN_STRINGL(s2, l2, 0);
|