Home
last modified time | relevance | path

Searched refs:newstp (Results 1 – 25 of 50) sorted by relevance

12

/dports/textproc/redisearch20/RediSearch-2.0.15/src/aggregate/
H A Daggregate_plan.c40 void AGPLN_AddBefore(AGGPlan *pln, PLN_BaseStep *posstp, PLN_BaseStep *newstp) { in AGPLN_AddBefore() argument
41 RS_LOG_ASSERT(newstp->type > PLN_T_INVALID, "Step type connot be PLN_T_INVALID"); in AGPLN_AddBefore()
45 dllist_insert(posstp->llnodePln.prev, &posstp->llnodePln, &newstp->llnodePln); in AGPLN_AddBefore()
49 void AGPLN_AddAfter(AGGPlan *pln, PLN_BaseStep *posstp, PLN_BaseStep *newstp) { in AGPLN_AddAfter() argument
50 RS_LOG_ASSERT(newstp->type > PLN_T_INVALID, "Step type connot be PLN_T_INVALID"); in AGPLN_AddAfter()
52 AGPLN_AddStep(pln, newstp); in AGPLN_AddAfter()
54 dllist_insert(&posstp->llnodePln, posstp->llnodePln.next, &newstp->llnodePln); in AGPLN_AddAfter()
58 void AGPLN_Prepend(AGGPlan *pln, PLN_BaseStep *newstp) { in AGPLN_Prepend() argument
59 dllist_prepend(&pln->steps, &newstp->llnodePln); in AGPLN_Prepend()
H A Daggregate_plan.h171 void AGPLN_Prepend(AGGPlan *pln, PLN_BaseStep *newstp);
/dports/textproc/redisearch/RediSearch-2.2.5/src/aggregate/
H A Daggregate_plan.c40 void AGPLN_AddBefore(AGGPlan *pln, PLN_BaseStep *posstp, PLN_BaseStep *newstp) { in AGPLN_AddBefore() argument
41 RS_LOG_ASSERT(newstp->type > PLN_T_INVALID, "Step type connot be PLN_T_INVALID"); in AGPLN_AddBefore()
45 dllist_insert(posstp->llnodePln.prev, &posstp->llnodePln, &newstp->llnodePln); in AGPLN_AddBefore()
49 void AGPLN_AddAfter(AGGPlan *pln, PLN_BaseStep *posstp, PLN_BaseStep *newstp) { in AGPLN_AddAfter() argument
50 RS_LOG_ASSERT(newstp->type > PLN_T_INVALID, "Step type connot be PLN_T_INVALID"); in AGPLN_AddAfter()
52 AGPLN_AddStep(pln, newstp); in AGPLN_AddAfter()
54 dllist_insert(&posstp->llnodePln, posstp->llnodePln.next, &newstp->llnodePln); in AGPLN_AddAfter()
58 void AGPLN_Prepend(AGGPlan *pln, PLN_BaseStep *newstp) { in AGPLN_Prepend() argument
59 dllist_prepend(&pln->steps, &newstp->llnodePln); in AGPLN_Prepend()
H A Daggregate_plan.h169 void AGPLN_Prepend(AGGPlan *pln, PLN_BaseStep *newstp);
/dports/textproc/redisearch16/RediSearch-1.6.16/src/aggregate/
H A Daggregate_plan.c41 void AGPLN_AddBefore(AGGPlan *pln, PLN_BaseStep *posstp, PLN_BaseStep *newstp) { in AGPLN_AddBefore() argument
42 assert(newstp->type > PLN_T_INVALID); in AGPLN_AddBefore()
46 dllist_insert(posstp->llnodePln.prev, &posstp->llnodePln, &newstp->llnodePln); in AGPLN_AddBefore()
50 void AGPLN_AddAfter(AGGPlan *pln, PLN_BaseStep *posstp, PLN_BaseStep *newstp) { in AGPLN_AddAfter() argument
51 assert(newstp->type > PLN_T_INVALID); in AGPLN_AddAfter()
53 AGPLN_AddStep(pln, newstp); in AGPLN_AddAfter()
55 dllist_insert(&posstp->llnodePln, posstp->llnodePln.next, &newstp->llnodePln); in AGPLN_AddAfter()
59 void AGPLN_Prepend(AGGPlan *pln, PLN_BaseStep *newstp) { in AGPLN_Prepend() argument
60 dllist_prepend(&pln->steps, &newstp->llnodePln); in AGPLN_Prepend()
H A Daggregate_plan.h168 void AGPLN_Prepend(AGGPlan *pln, PLN_BaseStep *newstp);
/dports/cad/xcircuit/xcircuit-3.10.30/Xw/
H A DSText.c1037 XwStaticTextPart *newstp, *curstp; local
1040 newstp = &(new->static_text);
1042 if (newstp->input_string != curstp->input_string)
1048 s = XtMalloc(XwStrlen(newstp->input_string)+1);
1057 newstp->input_string = s;
1065 (newstp->font != curstp->font) ||
1066 (newstp->internal_height != curstp->internal_height) ||
1067 (newstp->internal_width != curstp->internal_width) ||
1111 (newstp->font != curstp->font))
/dports/devel/pear-PHP_ParserGenerator/PHP_ParserGenerator-0.1.7/ParserGenerator/
H A DData.php482 $newstp = array();
483 $newstp = $this->getstate();
484 if (is_array($newstp)) {
485 $this->buildshifts($newstp[0]); /* Recursively compute successor states */
585 $newstp = $this->getstate();
586 if (is_array($newstp)) {
587 $this->buildshifts($newstp[0]); /* Recursively compute successor states */
588 $newstp = $newstp[0];
596 $newstp);
599 … PHP_ParserGenerator_Action::Action_add($stp->ap, PHP_ParserGenerator_Action::SHIFT, $sp, $newstp);
/dports/textproc/miller/miller-5.10.2/c/parsing/
H A Dlemon_fsm.c227 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
255 newstp = getstate(lemp); in buildshifts()
259 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/devel/pear-PHP_ParserGenerator/PHP_ParserGenerator-0.1.7/
H A DMain.php1333 $newstp = array();
1334 $newstp = $this->getstate();
1335 if (is_array($newstp)) {
1336 $this->buildshifts($newstp[0]); /* Recursively compute successor states */
1436 $newstp = $this->getstate();
1437 if (is_array($newstp)) {
1438 $this->buildshifts($newstp[0]); /* Recursively compute successor states */
1439 $newstp = $newstp[0];
1447 $newstp);
1450 LemonAction::Action_add($stp->ap, LemonAction::SHIFT, $sp, $newstp);
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/coreSQLiteStudio/parser/
H A Dlemon.c961 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
989 newstp = getstate(lemp); in buildshifts()
996 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
999 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/tool/
H A Dlemon.c875 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
903 newstp = getstate(lemp); in buildshifts()
910 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
913 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/xapian-core12/xapian-core-1.2.25/queryparser/
H A Dlemon.c814 struct state *newstp; /* A pointer to a successor state */ local
842 newstp = getstate(lemp);
849 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp);
852 Action_add(&stp->ap,SHIFT,sp,(char *)newstp);
/dports/games/zdoom/zdoom-2.8.1/tools/lemon/
H A Dlemon.c810 struct state *newstp; /* A pointer to a successor state */ local
838 newstp = getstate(lemp);
845 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp);
848 Action_add(&stp->ap,SHIFT,sp,(char *)newstp);
/dports/devel/z88dk/z88dk/src/z80asm/dev/
H A Dlemon.c958 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
986 newstp = getstate(lemp); in buildshifts()
993 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
996 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/security/openvpn-auth-ldap/openvpn-auth-ldap-auth-ldap-2.0.4/tools/
H A Dlemon.c857 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
885 newstp = getstate(lemp); in buildshifts()
892 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
895 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/libgda5-bdb/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
897 newstp = getstate(lemp); in buildshifts()
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/libgda5-ui/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */
897 newstp = getstate(lemp);
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp);
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp);
/dports/databases/libgda5-mysql/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
897 newstp = getstate(lemp); in buildshifts()
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/libgda5-postgresql/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
897 newstp = getstate(lemp); in buildshifts()
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/libgda5-ldap/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
897 newstp = getstate(lemp); in buildshifts()
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/libgda5-jdbc/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */
897 newstp = getstate(lemp);
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp);
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp);
/dports/databases/libgda5/libgda-5.2.10/libgda/sql-parser/
H A Dlemon.c869 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
897 newstp = getstate(lemp); in buildshifts()
904 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
907 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/emulators/mess/mame-mame0226/3rdparty/bx/tools/lemon/
H A Dlemon.c981 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
1009 newstp = getstate(lemp); in buildshifts()
1016 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
1019 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()
/dports/databases/sqlcipher/sqlcipher-3.4.2/tool/
H A Dlemon.c981 struct state *newstp; /* A pointer to a successor state */ in buildshifts() local
1009 newstp = getstate(lemp); in buildshifts()
1016 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp); in buildshifts()
1019 Action_add(&stp->ap,SHIFT,sp,(char *)newstp); in buildshifts()

12