ai               1409 Zend/zend_execute_API.c 	ai.afn[idx] ? ZEND_FN_SCOPE_NAME(ai.afn[idx]) : "", \
ai               1410 Zend/zend_execute_API.c 	ai.afn[idx] ? "::" : "", \
ai               1411 Zend/zend_execute_API.c 	ai.afn[idx] ? ZSTR_VAL(ai.afn[idx]->common.function_name) : "", \
ai               1412 Zend/zend_execute_API.c 	ai.afn[idx] && ai.afn[idx + 1] ? ", " : (ai.afn[idx] && ai.cnt > MAX_ABSTRACT_INFO_CNT ? ", ..." : "")
ai               1420 Zend/zend_execute_API.c static void zend_verify_abstract_class_function(zend_function *fn, zend_abstract_info *ai) /* {{{ */
ai               1423 Zend/zend_execute_API.c 		if (ai->cnt < MAX_ABSTRACT_INFO_CNT) {
ai               1424 Zend/zend_execute_API.c 			ai->afn[ai->cnt] = fn;
ai               1427 Zend/zend_execute_API.c 			if (!ai->ctor) {
ai               1428 Zend/zend_execute_API.c 				ai->cnt++;
ai               1429 Zend/zend_execute_API.c 				ai->ctor = 1;
ai               1431 Zend/zend_execute_API.c 				ai->afn[ai->cnt] = NULL;
ai               1434 Zend/zend_execute_API.c 			ai->cnt++;
ai               1443 Zend/zend_execute_API.c 	zend_abstract_info ai;
ai               1446 Zend/zend_execute_API.c 		memset(&ai, 0, sizeof(ai));
ai               1449 Zend/zend_execute_API.c 			zend_verify_abstract_class_function(func, &ai);
ai               1452 Zend/zend_execute_API.c 		if (ai.cnt) {
ai               1454 Zend/zend_execute_API.c 				ZSTR_VAL(ce->name), ai.cnt,
ai               1455 Zend/zend_execute_API.c 				ai.cnt > 1 ? "s" : "",
ai               9681 ext/sqlite3/libsqlite/sqlite3.c     int *ai;               /* Used when p4type is P4_INTARRAY */
ai               72842 ext/sqlite3/libsqlite/sqlite3.c   assert( pOp->p4.ai );
ai               72843 ext/sqlite3/libsqlite/sqlite3.c   aPermute = pOp->p4.ai;
ai                867 ext/standard/crypt_blowfish.c 		BF_key ae, ai, ye, yi;
ai                868 ext/standard/crypt_blowfish.c 		BF_set_key(k, ae, ai, 2); /* $2a$ */
ai                870 ext/standard/crypt_blowfish.c 		ai[0] ^= 0x10000; /* undo the safety (for comparison) */
ai                871 ext/standard/crypt_blowfish.c 		ok = ok && ai[0] == 0xdb9c59bc && ye[17] == 0x33343500 &&
ai                873 ext/standard/crypt_blowfish.c 		    !memcmp(ai, yi, sizeof(ai));
ai                 88 ext/xmlrpc/libxmlrpc/xml_to_soap.c 	struct array_info* ai = NULL;
ai                 90 ext/xmlrpc/libxmlrpc/xml_to_soap.c 		ai = (struct array_info*)calloc(1, sizeof(struct array_info));
ai                 91 ext/xmlrpc/libxmlrpc/xml_to_soap.c 		if (ai) {
ai                 98 ext/xmlrpc/libxmlrpc/xml_to_soap.c 			strcpy(ai->kids_type, buf);
ai                101 ext/xmlrpc/libxmlrpc/xml_to_soap.c 	return ai;
ai                373 ext/xmlrpc/libxmlrpc/xml_to_soap.c 			struct array_info* ai = NULL;
ai                382 ext/xmlrpc/libxmlrpc/xml_to_soap.c 				ai = parse_array_type_info(arrayType);	/* alloc'ed ai free'd below. */
ai                397 ext/xmlrpc/libxmlrpc/xml_to_soap.c 					xml_element_to_SOAP_REQUEST_worker(request, NULL, ai, xCurrent, iter, depth);
ai                403 ext/xmlrpc/libxmlrpc/xml_to_soap.c 					xml_element_to_SOAP_REQUEST_worker(request, xCurrent, ai, xNext, iter, depth);
ai                409 ext/xmlrpc/libxmlrpc/xml_to_soap.c 			if (ai) {
ai                410 ext/xmlrpc/libxmlrpc/xml_to_soap.c 				free(ai);
ai                338 main/mergesort.c 	u_char *ai, *s, *t, *u, tmp;
ai                341 main/mergesort.c 	for (ai = a+size; --n >= 1; ai += size)
ai                342 main/mergesort.c 		for (t = ai; t > a; t -= size) {