l1               1038 Zend/zend_operators.c 					zend_long l1 = 1, l2 = Z_LVAL_P(op1), i = Z_LVAL_P(op2);
l1               1054 Zend/zend_operators.c 							ZEND_SIGNED_MULTIPLY_LONG(l1, l2, l1, dval, overflow);
l1               1063 Zend/zend_operators.c 								ZVAL_DOUBLE(result, (double)l1 * pow(dval, i));
l1               1069 Zend/zend_operators.c 					ZVAL_LONG(result, l1);
l1               3240 ext/exif/exif.c 	size_t l1, l2=0;
l1               3242 ext/exif/exif.c 	if ((l1 = php_strnlen(buffer+2, length-2)) > 0) {
l1               3243 ext/exif/exif.c 		exif_iif_add_tag(ImageInfo, SECTION_APP12, "Company", TAG_NONE, TAG_FMT_STRING, l1, buffer+2);
l1               3244 ext/exif/exif.c 		if (length > 2+l1+1) {
l1               3245 ext/exif/exif.c 			l2 = php_strnlen(buffer+2+l1+1, length-2-l1-1);
l1               3246 ext/exif/exif.c 			exif_iif_add_tag(ImageInfo, SECTION_APP12, "Info", TAG_NONE, TAG_FMT_STRING, l2, buffer+2+l1+1);
l1               3250 ext/exif/exif.c 	exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Process section APP12 with l1=%d, l2=%d done", l1, l2);
l1                519 ext/odbc/birdstep.c 			goto l1;
l1                522 ext/odbc/birdstep.c l1:
l1                317 ext/soap/php_http.c     int l1 = strlen(host);
l1                319 ext/soap/php_http.c     if (l1 > l2) {
l1                320 ext/soap/php_http.c     	return strcmp(host+l1-l2,domain) == 0;
l1                230 ext/soap/php_sdl.c 	int l1, l2;
l1                238 ext/soap/php_sdl.c 	l1 = s ? (s - ctx->sdl->source) : strlen(ctx->sdl->source);
l1                243 ext/soap/php_sdl.c 	if (l1 != l2) {
l1                245 ext/soap/php_sdl.c 		if (l1 > 11 &&
l1                247 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-3] == ':' &&
l1                248 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-2] == '8' &&
l1                249 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-1] == '0') {
l1                250 ext/soap/php_sdl.c 			l1 -= 3;
l1                260 ext/soap/php_sdl.c 		if (l1 > 13 &&
l1                262 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-4] == ':' &&
l1                263 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-3] == '4' &&
l1                264 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-2] == '4' &&
l1                265 ext/soap/php_sdl.c 		    ctx->sdl->source[l1-1] == '3') {
l1                266 ext/soap/php_sdl.c 			l1 -= 4;
l1                277 ext/soap/php_sdl.c 	if (l1 != l2 || memcmp(ctx->sdl->source, uri, l1) != 0) {
l1                147 ext/standard/array.c 	zend_long l1, l2;
l1                154 ext/standard/array.c 			l1 = (zend_long)f->h;
l1                159 ext/standard/array.c 				return ZEND_NORMALIZE_BOOL((double)l1 - d);
l1                169 ext/standard/array.c 			t = is_numeric_string(f->key->val, f->key->len, &l1, &d, 1);
l1                175 ext/standard/array.c 				l1 = 0;
l1                179 ext/standard/array.c 	return l1 > l2 ? 1 : (l1 < l2 ? -1 : 0);
l1                224 ext/standard/array.c 	size_t l1, l2;
l1                230 ext/standard/array.c 		l1 = f->key->len;
l1                233 ext/standard/array.c 		l1 = buf1 + sizeof(buf1) - 1 - s1;
l1                242 ext/standard/array.c 	return zend_binary_strcasecmp_l(s1, l1, s2, l2);
l1                257 ext/standard/array.c 	size_t l1, l2;
l1                263 ext/standard/array.c 		l1 = f->key->len;
l1                266 ext/standard/array.c 		l1 = buf1 + sizeof(buf1) - 1 - s1;
l1                275 ext/standard/array.c 	return zend_binary_strcmp(s1, l1, s2, l2);
l1                290 ext/standard/array.c 	size_t l1, l2;
l1                296 ext/standard/array.c 		l1 = f->key->len;
l1                299 ext/standard/array.c 		l1 = buf1 + sizeof(buf1) - 1 - s1;
l1                308 ext/standard/array.c 	return strnatcmp_ex(s1, l1, s2, l2, fold_case);
l1                534 ext/standard/dns.c 				int l1 = 0, l2 = 0;
l1                543 ext/standard/dns.c 				while (l1 < dlen) {
l1                544 ext/standard/dns.c 					n = cp[l1];
l1                545 ext/standard/dns.c 					if ((l1 + n) >= dlen) {
l1                547 ext/standard/dns.c 						n = dlen - (l1 + 1);
l1                550 ext/standard/dns.c 						memcpy(ZSTR_VAL(tp) + l2 , cp + l1 + 1, n);
l1                551 ext/standard/dns.c 						add_next_index_stringl(&entries, (char *) cp + l1 + 1, n);
l1                553 ext/standard/dns.c 					l1 = l1 + n + 1;
l1                 30 ext/standard/levenshtein.c static zend_long reference_levdist(const char *s1, size_t l1, const char *s2, size_t l2, zend_long cost_ins, zend_long cost_rep, zend_long cost_del )
l1                 36 ext/standard/levenshtein.c 	if (l1 == 0) {
l1                 40 ext/standard/levenshtein.c 		return l1 * cost_del;
l1                 43 ext/standard/levenshtein.c 	if ((l1 > LEVENSHTEIN_MAX_LENGTH) || (l2 > LEVENSHTEIN_MAX_LENGTH)) {
l1                 52 ext/standard/levenshtein.c 	for (i1 = 0; i1 < l1 ; i1++) {
l1                132 ext/standard/versioning.c 	long l1, l2;
l1                163 ext/standard/versioning.c 			l1 = strtol(p1, NULL, 10);
l1                165 ext/standard/versioning.c 			compare = sign(l1 - l2);
l1                110 main/mergesort.c 	register u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2;
l1                142 main/mergesort.c 	    	f2 = l1 = list1 + (p2 - list2);
l1                146 main/mergesort.c 	    	while (f1 < l1 && f2 < l2) {
l1                149 main/mergesort.c 	    			b = f1, t = l1;
l1                218 main/mergesort.c 	    	} else if (f1 < l1) {
l1                220 main/mergesort.c 	    			ICOPY_LIST(f1, tp2, l1);
l1                222 main/mergesort.c 	    			CCOPY_LIST(f1, tp2, l1);