dom                33 ext/calendar/easter.c 	zend_long year, golden, solar, lunar, pfm, dom, tmp, easter, result;
dom                65 ext/calendar/easter.c 		dom = (year + (year/4) + 5) % 7;			/* the "Dominical number" - finding a Sunday */
dom                66 ext/calendar/easter.c 		if (dom < 0) {
dom                67 ext/calendar/easter.c 			dom += 7;
dom                75 ext/calendar/easter.c 		dom = (year + (year/4) - (year/100) + (year/400)) % 7;	/* the "Domincal number" */
dom                76 ext/calendar/easter.c 		if (dom < 0) {
dom                77 ext/calendar/easter.c 			dom += 7;
dom                93 ext/calendar/easter.c 	tmp = (4-pfm-dom) % 7;
dom               571 ext/dom/php_dom.c 	PHP_MINIT(dom),
dom               572 ext/dom/php_dom.c 	PHP_MSHUTDOWN(dom),
dom               575 ext/dom/php_dom.c 	PHP_MINFO(dom),
dom               582 ext/dom/php_dom.c ZEND_GET_MODULE(dom)
dom               594 ext/dom/php_dom.c PHP_MINIT_FUNCTION(dom)
dom               843 ext/dom/php_dom.c 	dom_xpath_object_handlers.offset = XtOffsetOf(dom_xpath_object, dom) + XtOffsetOf(dom_object, std);
dom               913 ext/dom/php_dom.c PHP_MINFO_FUNCTION(dom)
dom               936 ext/dom/php_dom.c PHP_MSHUTDOWN_FUNCTION(dom) /* {{{ */
dom              1012 ext/dom/php_dom.c 	zend_object_std_dtor(&intern->dom.std);
dom              1014 ext/dom/php_dom.c 	if (intern->dom.ptr != NULL) {
dom              1015 ext/dom/php_dom.c 		xmlXPathFreeContext((xmlXPathContextPtr) intern->dom.ptr);
dom              1016 ext/dom/php_dom.c 		php_libxml_decrement_doc_ref((php_libxml_node_object *) &intern->dom);
dom              1111 ext/dom/php_dom.c 	intern->dom.prop_handler = &dom_xpath_prop_handlers;
dom              1112 ext/dom/php_dom.c 	intern->dom.std.handlers = &dom_xpath_object_handlers;
dom              1114 ext/dom/php_dom.c 	zend_object_std_init(&intern->dom.std, class_type);
dom              1115 ext/dom/php_dom.c 	object_properties_init(&intern->dom.std, class_type);
dom              1117 ext/dom/php_dom.c 	return &intern->dom.std;
dom                74 ext/dom/php_dom.h 	dom_object dom;
dom                79 ext/dom/php_dom.h 		- XtOffsetOf(dom_xpath_object, dom) - XtOffsetOf(dom_object, std));
dom               157 ext/dom/php_dom.h PHP_MINIT_FUNCTION(dom);
dom               158 ext/dom/php_dom.h PHP_MSHUTDOWN_FUNCTION(dom);
dom               159 ext/dom/php_dom.h PHP_MINFO_FUNCTION(dom);
dom               161 ext/dom/xpath.c 							php_dom_create_object(node, &child, &intern->dom);
dom               276 ext/dom/xpath.c 		oldctx = (xmlXPathContextPtr)intern->dom.ptr;
dom               278 ext/dom/xpath.c 			php_libxml_decrement_doc_ref((php_libxml_node_object *) &intern->dom);
dom               289 ext/dom/xpath.c 		intern->dom.ptr = ctx;
dom               291 ext/dom/xpath.c 		intern->dom.document = docobj->document;
dom               292 ext/dom/xpath.c 		php_libxml_increment_doc_ref((php_libxml_node_object *) &intern->dom, docp);
dom               327 ext/dom/xpath.c 	ctxp = (xmlXPathContextPtr) intern->dom.ptr;
dom               369 ext/dom/xpath.c 	ctxp = (xmlXPathContextPtr) intern->dom.ptr;
dom               462 ext/dom/xpath.c 					php_dom_create_object(node, &child, &intern->dom);