t1               1209 Zend/zend_alloc.c 	unsigned int t1, t2;
t1               1215 Zend/zend_alloc.c 		t1 = size - 1;
t1               1216 Zend/zend_alloc.c 		t2 = zend_mm_small_size_to_bit(t1) - 3;
t1               1217 Zend/zend_alloc.c 		t1 = t1 >> t2;
t1               1220 Zend/zend_alloc.c 		return (int)(t1 + t2);
t1                 44 Zend/zend_operators.c #define TYPE_PAIR(t1,t2) (((t1) << 4) | (t2))
t1                 68 ext/date/lib/timelib.c int timelib_time_compare(timelib_time *t1, timelib_time *t2)
t1                 70 ext/date/lib/timelib.c 	if (t1->sse == t2->sse) {
t1                 71 ext/date/lib/timelib.c 		if (t1->f == t2->f) {
t1                 75 ext/date/lib/timelib.c 		if (t1->sse < 0) {
t1                 76 ext/date/lib/timelib.c 			return (t1->f < t2->f) ? 1 : -1;
t1                 78 ext/date/lib/timelib.c 			return (t1->f < t2->f) ? -1 : 1;
t1                 82 ext/date/lib/timelib.c 	return (t1->sse < t2->sse) ? -1 : 1;
t1                141 ext/date/lib/timelib.h int timelib_time_compare(timelib_time *t1, timelib_time *t2);
t1                 48 ext/hash/hash_snefru.c 	const php_hash_uint32 *t0,*t1;
t1                 70 ext/hash/hash_snefru.c 		t1 = tables[2*index+1];
t1                 74 ext/hash/hash_snefru.c 			round(B01, B02, B03, t1);
t1                 75 ext/hash/hash_snefru.c 			round(B02, B03, B04, t1);
t1                 78 ext/hash/hash_snefru.c 			round(B05, B06, B07, t1);
t1                 79 ext/hash/hash_snefru.c 			round(B06, B07, B08, t1);
t1                 82 ext/hash/hash_snefru.c 			round(B09, B10, B11, t1);
t1                 83 ext/hash/hash_snefru.c 			round(B10, B11, B12, t1);
t1                 86 ext/hash/hash_snefru.c 			round(B13, B14, B15, t1);
t1                 87 ext/hash/hash_snefru.c 			round(B14, B15, B00, t1);
t1                 44 ext/hash/hash_tiger.c 	a -= t1[(unsigned char)(c)] ^ \
t1                 51 ext/hash/hash_tiger.c 		t1[(unsigned char)(((php_hash_uint32)((c)>>(4*8)))>>(3*8))]; \
t1               67858 ext/sqlite3/libsqlite/sqlite3.c     static const u64 t1 = ((u64)0x3ff00000)<<32;
t1               67860 ext/sqlite3/libsqlite/sqlite3.c     u64 t2 = t1;
t1                431 ext/standard/crypt_freesec.c 		uint32_t	t0, t1;
t1                436 ext/standard/crypt_freesec.c 		t1 = (k1 << shifts) | (k1 >> (28 - shifts));
t1                443 ext/standard/crypt_freesec.c 				| comp_maskl[4][(t1 >> 21) & 0x7f]
t1                444 ext/standard/crypt_freesec.c 				| comp_maskl[5][(t1 >> 14) & 0x7f]
t1                445 ext/standard/crypt_freesec.c 				| comp_maskl[6][(t1 >> 7) & 0x7f]
t1                446 ext/standard/crypt_freesec.c 				| comp_maskl[7][t1 & 0x7f];
t1                453 ext/standard/crypt_freesec.c 				| comp_maskr[4][(t1 >> 21) & 0x7f]
t1                454 ext/standard/crypt_freesec.c 				| comp_maskr[5][(t1 >> 14) & 0x7f]
t1                455 ext/standard/crypt_freesec.c 				| comp_maskr[6][(t1 >> 7) & 0x7f]
t1                456 ext/standard/crypt_freesec.c 				| comp_maskr[7][t1 & 0x7f];
t1               3600 ext/standard/string.c 	zend_string *t1, *t2;
t1               3605 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS|z/", &t1, &t2, &percent) == FAILURE) {
t1               3613 ext/standard/string.c 	if (ZSTR_LEN(t1) + ZSTR_LEN(t2) == 0) {
t1               3621 ext/standard/string.c 	sim = php_similar_char(ZSTR_VAL(t1), ZSTR_LEN(t1), ZSTR_VAL(t2), ZSTR_LEN(t2));
t1               3624 ext/standard/string.c 		Z_DVAL_P(percent) = sim * 200.0 / (ZSTR_LEN(t1) + ZSTR_LEN(t2));