abs               105 Zend/zend_long.h # define ZEND_ABS abs
abs               169 ext/date/lib/tm2unixtime.c 		time->d -= (7 - (abs(time->relative.weekday) - current_dow));
abs              1100 ext/date/php_date.c 			                          localtime ? abs(offset->offset / 3600) : 0,
abs              1101 ext/date/php_date.c 			                          localtime ? abs((offset->offset % 3600) / 60) : 0 );
abs              1166 ext/date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
abs              1168 ext/date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
abs              1185 ext/date/php_date.c 												abs(offset->offset / 3600),
abs              1186 ext/date/php_date.c 												abs((offset->offset % 3600) / 60)
abs              1199 ext/date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
abs              1200 ext/date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
abs              1208 ext/date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
abs              1209 ext/date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
abs              1309 ext/date/php_date.c 			                          !localtime ? abs(offset->offset / 3600) : 0,
abs              1310 ext/date/php_date.c 			                          !localtime ? abs((offset->offset % 3600) / 60) : 0 );
abs              2196 ext/date/php_date.c 					abs(utc_offset / 60),
abs              2197 ext/date/php_date.c 					abs((utc_offset % 60)));
abs              2288 ext/date/php_date.c 			abs(tzobj->tzi.utc_offset / 60),
abs              2289 ext/date/php_date.c 			abs((tzobj->tzi.utc_offset % 60)));
abs              3755 ext/date/php_date.c 				abs(utc_offset / 60),
abs              3756 ext/date/php_date.c 				abs((utc_offset % 60)));
abs              1002 ext/exif/exif.c 				strlcpy(ret, tag_table[i].Desc, abs(len));
abs              1015 ext/exif/exif.c 		strlcpy(ret, tmp, abs(len));
abs              1113 ext/gd/libgd/gd.c 	dx = abs (x2 - x1);
abs              1114 ext/gd/libgd/gd.c 	dy = abs (y2 - y1);
abs              1349 ext/gd/libgd/gd.c 	if (abs(dx) > abs(dy)) {
abs              1407 ext/gd/libgd/gd.c 	dx = abs(x2 - x1);
abs              1408 ext/gd/libgd/gd.c 	dy = abs(y2 - y1);
abs              1670 ext/gd/libgd/gd_interpolation.c 	const unsigned int new_width = (unsigned int)(abs((int)(src_w * cos(_angle))) + abs((int)(src_h * sin(_angle))) + 0.5f);
abs              1671 ext/gd/libgd/gd_interpolation.c 	const unsigned int new_height = (unsigned int)(abs((int)(src_w * sin(_angle))) + abs((int)(src_h * cos(_angle))) + 0.5f);
abs              1720 ext/gd/libgd/gd_interpolation.c 	const unsigned int new_width = (unsigned int)(abs((int)(src_w * cos(_angle))) + abs((int)(src_h * sin(_angle))) + 0.5f);
abs              1721 ext/gd/libgd/gd_interpolation.c 	const unsigned int new_height = (unsigned int)(abs((int)(src_w * sin(_angle))) + abs((int)(src_h * cos(_angle))) + 0.5f);
abs              1783 ext/gd/libgd/gd_interpolation.c 	unsigned int new_width = abs((int)(src_w*cos(_angle))) + abs((int)(src_h*sin(_angle) + 0.5f));
abs              1784 ext/gd/libgd/gd_interpolation.c 	unsigned int new_height = abs((int)(src_w*sin(_angle))) + abs((int)(src_h*cos(_angle) + 0.5f));
abs              1898 ext/gd/libgd/gd_interpolation.c 	const unsigned int new_width = abs((int)(src_w*cos(_angle))) + abs((int)(src_h*sin(_angle) + 0.5f));
abs              1899 ext/gd/libgd/gd_interpolation.c 	const unsigned int new_height = abs((int)(src_w*sin(_angle))) + abs((int)(src_h*cos(_angle) + 0.5f));
abs               755 ext/gmp/gmp.c  	num_len = mpz_sizeinbase(gmpnum, abs(base));
abs              2899 ext/soap/php_encoding.c 		snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", (ta->tm_gmtoff < 0) ? '-' : '+', abs(ta->tm_gmtoff / 3600), abs( (ta->tm_gmtoff % 3600) / 60 ));
abs              2902 ext/soap/php_encoding.c 		snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", ((ta->tm_isdst ? _timezone - 3600:_timezone)>0)?'-':'+', abs((ta->tm_isdst ? _timezone - 3600 : _timezone) / 3600), abs(((ta->tm_isdst ? _timezone - 3600 : _timezone) % 3600) / 60));
abs              2904 ext/soap/php_encoding.c 		snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", ((ta->tm_isdst ? timezone - 3600:timezone)>0)?'-':'+', abs((ta->tm_isdst ? timezone - 3600 : timezone) / 3600), abs(((ta->tm_isdst ? timezone - 3600 : timezone) % 3600) / 60));
abs              98151 ext/sqlite3/libsqlite/sqlite3.c     FUNCTION(abs,                1, 0, 0, absFunc          ),
abs              2881 ext/standard/basic_functions.c 	PHP_FE(abs,																arginfo_abs)
abs               169 ext/standard/image.c 		result->height   =  abs((int32_t)result->height);
abs               152 ext/standard/math.c 	f1 = php_intpow10(abs(places));
abs               160 ext/standard/math.c 		f2 = php_intpow10(abs((int)use_precision));
abs               173 ext/standard/math.c 		f2 = php_intpow10(abs((int)use_precision));
abs               193 ext/standard/math.c 	if (abs(places) < 23) {
abs               301 ext/standard/math.c PHP_FUNCTION(abs)
abs                54 ext/standard/php_math.h PHP_FUNCTION(abs);
abs              2737 sapi/litespeed/lsapilib.c     if ( abs( g_prefork_server->m_iCurChildren - count ) > 1 )