all              4252 ext/pcre/pcrelib/pcre_jit_compile.c pcre_uint8 bit, cbit, all;
all              4257 ext/pcre/pcrelib/pcre_jit_compile.c all = -bit;
all              4262 ext/pcre/pcrelib/pcre_jit_compile.c   if ((i & 0x7) == 0 && bits[byte] == all)
all              4274 ext/pcre/pcrelib/pcre_jit_compile.c       all = -cbit;
all              1015 ext/soap/php_schema.c static int schema_all(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr all, sdlTypePtr cur_type, sdlContentModelPtr model)
all              1030 ext/soap/php_schema.c 	schema_min_max(all, newModel);
all              1032 ext/soap/php_schema.c 	trav = all->children;
all              126323 ext/sqlite3/libsqlite/sqlite3.c   Token all;
all              126324 ext/sqlite3/libsqlite/sqlite3.c   all.z = yymsp[-3].minor.yy0.z;
all              126325 ext/sqlite3/libsqlite/sqlite3.c   all.n = (int)(yymsp[0].minor.yy0.z - yymsp[-3].minor.yy0.z) + yymsp[0].minor.yy0.n;
all              126326 ext/sqlite3/libsqlite/sqlite3.c   sqlite3FinishTrigger(pParse, yymsp[-1].minor.yy473, &all);
all                62 ext/standard/html.c #define LIMIT_ALL(all, doctype, charset) do { \
all                63 ext/standard/html.c 	(all) = (all) && !CHARSET_PARTIAL_SUPPORT((charset)) && ((doctype) != ENT_HTML_DOC_XML1); \
all               941 ext/standard/html.c 	int all,
all               979 ext/standard/html.c 			if (!all && (code > 63U ||
all              1048 ext/standard/html.c static const entity_ht *unescape_inverse_map(int all, int flags)
all              1052 ext/standard/html.c 	if (all) {
all              1076 ext/standard/html.c static entity_table_opt determine_entity_table(int all, int doctype)
all              1080 ext/standard/html.c 	assert(!(doctype == ENT_HTML_DOC_XML1 && all));
all              1082 ext/standard/html.c 	if (all) {
all              1098 ext/standard/html.c PHPAPI zend_string *php_unescape_html_entities(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset)
all              1106 ext/standard/html.c 	if (all) {
all              1128 ext/standard/html.c 	inverse_map = unescape_inverse_map(all, flags);
all              1131 ext/standard/html.c 	traverse_for_entities((char*)old, oldlen, ret, all, flags, inverse_map, charset);
all              1138 ext/standard/html.c PHPAPI zend_string *php_escape_html_entities(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset)
all              1140 ext/standard/html.c 	return php_escape_html_entities_ex(old, oldlen, all, flags, hint_charset, 1);
all              1226 ext/standard/html.c PHPAPI zend_string *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset, zend_bool double_encode)
all              1239 ext/standard/html.c 	if (all) { /* replace with all named entities */
all              1245 ext/standard/html.c 		LIMIT_ALL(all, doctype, charset);
all              1247 ext/standard/html.c 	entity_table = determine_entity_table(all, doctype);
all              1248 ext/standard/html.c 	if (all && !CHARSET_UNICODE_COMPAT(charset)) {
all              1321 ext/standard/html.c 			if (all) { /* false that CHARSET_PARTIAL_SUPPORT(charset) */
all              1352 ext/standard/html.c 						if (!all) /* otherwise we already did this */
all              1444 ext/standard/html.c static void php_html_entities(INTERNAL_FUNCTION_PARAMETERS, int all)
all              1469 ext/standard/html.c 	replaced = php_escape_html_entities_ex((unsigned char*)ZSTR_VAL(str), ZSTR_LEN(str), all, (int) flags, (hint_charset ? ZSTR_VAL(hint_charset) : default_charset), double_encode);
all              1629 ext/standard/html.c 	zend_long all = HTML_SPECIALCHARS,
all              1643 ext/standard/html.c 			&all, &flags, &charset_hint, &charset_hint_len) == FAILURE) {
all              1649 ext/standard/html.c 	LIMIT_ALL(all, doctype, charset);
all              1653 ext/standard/html.c 	entity_table = determine_entity_table((int)all, doctype);
all              1654 ext/standard/html.c 	if (all && !CHARSET_UNICODE_COMPAT(charset)) {
all              1658 ext/standard/html.c 	if (all) { /* HTML_ENTITIES (actually, any non-zero value for 1st param) */
all                57 ext/standard/html.h PHPAPI zend_string *php_escape_html_entities(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset);
all                58 ext/standard/html.h PHPAPI zend_string *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset, zend_bool double_encode);
all                59 ext/standard/html.h PHPAPI zend_string *php_unescape_html_entities(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset);