亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? factgen.c

?? clips源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號:
   /*=============================*/   return(AddBitMap(theEnv,&hack,sizeof(struct factGetVarPN2Call)));  }/*************************************************************//* FactGetVarPN3: Creates the arguments for the routine for  *//*   retrieving a variable's value from a multifield slot of *//*   a fact. For this routine, the variable's value must be  *//*   from a multifield slot that contains at most one        *//*   multifield variable or contains no multifield variables *//*   before the variable's value to be retrieved. The        *//*   retrieval relies on information stored during fact      *//*   pattern matching, so this retrieval mechanism is only   *//*   used by expressions in the pattern network.             *//*************************************************************/static void *FactGetVarPN3(  void *theEnv,  struct lhsParseNode *theNode)  {   struct factGetVarPN3Call hack;   /*===================================================*/   /* Clear the bitmap for storing the argument values. */   /*===================================================*/   ClearBitString(&hack,sizeof(struct factGetVarPN3Call));   /*=======================================*/   /* Store the slot in the fact from which */   /* the value will be retrieved.          */   /*=======================================*/   hack.whichSlot = (unsigned short) (theNode->slotNumber - 1);   /*==============================================================*/   /* If a single field variable value is being retrieved, then... */   /*==============================================================*/   if ((theNode->type == SF_WILDCARD) || (theNode->type == SF_VARIABLE) || ConstantType(theNode->type))     {      /*=========================================================*/      /* If no multifield values occur before the variable, then */      /* the variable's value can be retrieved based on its      */      /* offset from the beginning of the slot's value           */      /* regardless of the number of multifield variables or     */      /* wildcards following the variable being retrieved.       */      /*=========================================================*/      if (theNode->multiFieldsBefore == 0)        {         hack.fromBeginning = 1;         hack.fromEnd = 0;         hack.beginOffset = theNode->singleFieldsBefore;         hack.endOffset = 0;        }      /*===============================================*/      /* Otherwise the variable is retrieved based its */      /* position relative to the end of the slot.     */      /*===============================================*/      else        {         hack.fromBeginning = 0;         hack.fromEnd = 1;         hack.beginOffset = 0;         hack.endOffset = theNode->singleFieldsAfter;        }      return(AddBitMap(theEnv,&hack,sizeof(struct factGetVarPN3Call)));     }   /*============================================================*/   /* A multifield variable value is being retrieved. This means */   /* that there are no other multifield variables or wildcards  */   /* in the slot. The multifield value is retrieved by storing  */   /* the number of single field values which come before and    */   /* after the multifield value. The multifield value can then  */   /* be retrieved based on the length of the value in the slot  */   /* and the number of single field values which must occur     */   /* before and after the multifield value.                     */   /*============================================================*/   hack.fromBeginning = 1;   hack.fromEnd = 1;   hack.beginOffset = theNode->singleFieldsBefore;   hack.endOffset = theNode->singleFieldsAfter;   /*=============================*/   /* Return the argument bitmap. */   /*=============================*/   return(AddBitMap(theEnv,&hack,sizeof(struct factGetVarPN3Call)));  }/*************************************************************//* FactPNVariableComparison: Generates an expression for use *//*   in the fact pattern network to compare two variables of *//*   the same name found in the same pattern.                *//*************************************************************/globle struct expr *FactPNVariableComparison(  void *theEnv,  struct lhsParseNode *selfNode,  struct lhsParseNode *referringNode)  {   struct expr *top;   struct factCompVarsPN1Call hack;   /*===================================================*/   /* Clear the bitmap for storing the argument values. */   /*===================================================*/   ClearBitString(&hack,sizeof(struct factCompVarsPN1Call));   /*================================================================*/   /* If two single field slots of a deftemplate are being compared, */   /* then use the following specified variable comparison routine.  */   /*================================================================*/   if ((selfNode->withinMultifieldSlot == FALSE) &&       (selfNode->slotNumber > 0) &&       (referringNode->withinMultifieldSlot == FALSE) &&       (referringNode->slotNumber > 0))     {      hack.pass = 0;      hack.fail = 0;      hack.field1 = (unsigned int) selfNode->slotNumber - 1;      hack.field2 = (unsigned int) referringNode->slotNumber - 1;      if (selfNode->negated) hack.fail = 1;      else hack.pass = 1;      top = GenConstant(theEnv,FACT_PN_CMP1,AddBitMap(theEnv,&hack,sizeof(struct factCompVarsPN1Call)));     }   /*================================================================*/   /* Otherwise, use the eq function to compare the values retrieved */   /* by the appropriate get variable value functions.               */   /*================================================================*/   else     {      if (selfNode->negated) top = GenConstant(theEnv,FCALL,ExpressionData(theEnv)->PTR_NEQ);      else top = GenConstant(theEnv,FCALL,ExpressionData(theEnv)->PTR_EQ);      top->argList = FactGenGetfield(theEnv,selfNode);      top->argList->nextArg = FactGenGetfield(theEnv,referringNode);     }   /*======================================*/   /* Return the expression for performing */   /* the variable comparison.             */   /*======================================*/   return(top);  }/*********************************************************//* FactJNVariableComparison: Generates an expression for *//*   use in the join network to compare two variables of *//*   the same name found in different patterns.          *//*********************************************************/globle struct expr *FactJNVariableComparison(  void *theEnv,  struct lhsParseNode *selfNode,  struct lhsParseNode *referringNode,  int nandJoin)  {   struct expr *top;   struct factCompVarsJN1Call hack1;   struct factCompVarsJN2Call hack2;   /*================================================================*/   /* If two single field slots of a deftemplate are being compared, */   /* then use the following specified variable comparison routine.  */   /*================================================================*/   if ((selfNode->withinMultifieldSlot == FALSE) &&       (selfNode->slotNumber > 0) &&       (referringNode->withinMultifieldSlot == FALSE) &&       (referringNode->slotNumber > 0))     {      ClearBitString(&hack1,sizeof(struct factCompVarsJN1Call));      hack1.pass = 0;      hack1.fail = 0;      hack1.slot1 = (unsigned int) selfNode->slotNumber - 1;              if (nandJoin)        { hack1.pattern1 = selfNode->joinDepth; }      else        { hack1.pattern1 = 0; }      hack1.p1rhs = TRUE;      if (nandJoin && (selfNode->beginNandDepth == referringNode->beginNandDepth))        { hack1.p2rhs = TRUE; }      else        { hack1.p2lhs = TRUE; }      hack1.pattern2 = (unsigned int) referringNode->joinDepth;             if (referringNode->index < 0) hack1.slot2 = 0;      else hack1.slot2 = (unsigned int) referringNode->slotNumber - 1;      if (selfNode->negated) hack1.fail = 1;      else hack1.pass = 1;      top = GenConstant(theEnv,FACT_JN_CMP1,AddBitMap(theEnv,&hack1,sizeof(struct factCompVarsJN1Call)));     }   /*===============================================================*/   /* If two single field values are compared and either or both of */   /* them are contained in multifield slots (and the value can be  */   /* accessed relative to either the beginning or end of the slot  */   /* with no intervening multifield variables), then use the       */   /* following specified variable comparison routine.              */   /*===============================================================*/   else if ((selfNode->slotNumber > 0) &&            (selfNode->type == SF_VARIABLE) &&            ((selfNode->multiFieldsBefore == 0) ||             ((selfNode->multiFieldsBefore == 1) &&              (selfNode->multiFieldsAfter == 0))) &&            (referringNode->slotNumber > 0) &&            (referringNode->type == SF_VARIABLE) &&            ((referringNode->multiFieldsBefore == 0) ||             (referringNode->multiFieldsAfter == 0)))     {      ClearBitString(&hack2,sizeof(struct factCompVarsJN2Call));      hack2.pass = 0;      hack2.fail = 0;      hack2.slot1 = (unsigned int) selfNode->slotNumber - 1;            if (nandJoin)        { hack2.pattern1 = selfNode->joinDepth; }      else        { hack2.pattern1 = 0; }      hack2.p1rhs = TRUE;      if (nandJoin && (selfNode->beginNandDepth == referringNode->beginNandDepth))        { hack2.p2rhs = TRUE; }      else        { hack2.p2lhs = TRUE; }              hack2.pattern2 = (unsigned int) referringNode->joinDepth;       hack2.slot2 = (unsigned int) referringNode->slotNumber - 1;      if (selfNode->multiFieldsBefore == 0)        {         hack2.fromBeginning1 = 1;         hack2.offset1 = selfNode->singleFieldsBefore;        }      else        {         hack2.fromBeginning1 = 0;         hack2.offset1 = selfNode->singleFieldsAfter;        }      if (referringNode->multiFieldsBefore == 0)        {         hack2.fromBeginning2 = 1;         hack2.offset2 = referringNode->singleFieldsBefore;        }      else        {         hack2.fromBeginning2 = 0;         hack2.offset2 = referringNode->singleFieldsAfter;        }      if (selfNode->negated) hack2.fail = 1;      else hack2.pass = 1;      top = GenConstant(theEnv,FACT_JN_CMP2,AddBitMap(theEnv,&hack2,sizeof(struct factCompVarsJN2Call)));     }   /*===============================================================*/   /* Otherwise, use the equality or inequality function to compare */   /* the values returned by the appropriate join network variable  */   /* retrieval function call.                                      */   /*===============================================================*/   else     {      if (selfNode->negated)        { top = GenConstant(theEnv,FCALL,ExpressionData(theEnv)->PTR_NEQ); }      else        { top = GenConstant(theEnv,FCALL,ExpressionData(theEnv)->PTR_EQ); }      if (nandJoin)        { top->argList = FactGenGetvar(theEnv,selfNode,NESTED_RHS); }      else        { top->argList = FactGenGetvar(theEnv,selfNode,RHS); }              if (nandJoin && (selfNode->beginNandDepth == referringNode->beginNandDepth))        { top->argList->nextArg = FactGenGetvar(theEnv,referringNode,NESTED_RHS); }      else        { top->argList->nextArg = FactGenGetvar(theEnv,referringNode,LHS); }     }   /*======================================*/   /* Return the expression for performing */   /* the variable comparison.             */   /*======================================*/   return(top);  }#endif /* (! RUN_TIME) && (! BLOAD_ONLY) */#endif /* DEFTEMPLATE_CONSTRUCT && DEFRULE_CONSTRUCT */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合九色综合久久久精品综合 | 国产成人精品亚洲日本在线桃色| 中文字幕一区av| 日韩西西人体444www| www.视频一区| 久久国产麻豆精品| 亚洲国产精品一区二区www| 2014亚洲片线观看视频免费| 在线视频国内自拍亚洲视频| 国产剧情av麻豆香蕉精品| 亚洲国产中文字幕| 国产精品人成在线观看免费| 日韩欧美中文字幕精品| 欧美性极品少妇| 99久久婷婷国产综合精品电影| 精品一区二区三区在线观看| 婷婷综合久久一区二区三区| 亚洲人被黑人高潮完整版| 久久精品人人做人人爽人人| 欧美一区二区三区四区在线观看| 91福利资源站| 色噜噜夜夜夜综合网| 国产69精品一区二区亚洲孕妇 | 99久久精品一区二区| 国产一区二区精品在线观看| 久久精品久久精品| 日韩综合小视频| 亚洲一区二区三区不卡国产欧美| 国产精品国产三级国产普通话蜜臀| 欧美mv日韩mv亚洲| 日韩一区二区影院| 欧美另类高清zo欧美| 欧美日韩在线观看一区二区| 91精品办公室少妇高潮对白| 91香蕉视频污| 色婷婷精品大在线视频| 日本韩国欧美一区二区三区| 色婷婷久久99综合精品jk白丝| 91看片淫黄大片一级在线观看| proumb性欧美在线观看| 欧美精品18+| 欧美日本精品一区二区三区| 欧美日本韩国一区二区三区视频 | 欧美成人福利视频| 日韩欧美不卡在线观看视频| 日韩欧美一区二区不卡| 精品国产三级电影在线观看| 久久久亚洲精品一区二区三区| 国产无遮挡一区二区三区毛片日本| 26uuu精品一区二区在线观看| 精品国产一区二区亚洲人成毛片| 精品国产精品网麻豆系列| 久久网站最新地址| 国产精品―色哟哟| 亚洲乱码日产精品bd| 亚洲国产成人av| 青青草精品视频| 国产精品资源在线看| 成人h动漫精品一区二区| 色天天综合久久久久综合片| 欧美色国产精品| 欧美v日韩v国产v| 国产亚洲成年网址在线观看| 日本一区二区三区高清不卡| 亚洲欧美综合色| 亚洲第一精品在线| 久久精品99国产国产精| 国产精品一区二区在线播放| 95精品视频在线| 欧美美女激情18p| 久久色.com| 亚洲精品日韩专区silk| 蜜桃在线一区二区三区| 国产馆精品极品| 在线免费不卡视频| 日韩一区二区三区电影在线观看| 国产人妖乱国产精品人妖| 亚洲乱码日产精品bd| 久久99久久久欧美国产| av影院午夜一区| 日韩一区二区三区电影在线观看| 中文字幕一区二区三区在线观看| 午夜精品123| 成人午夜av电影| 7777精品伊人久久久大香线蕉经典版下载 | 日韩成人一区二区| 成人三级伦理片| 7777精品伊人久久久大香线蕉超级流畅| 久久亚洲二区三区| 亚洲图片欧美视频| 丰满白嫩尤物一区二区| 欧美一级在线视频| 自拍偷自拍亚洲精品播放| 蜜桃视频一区二区三区在线观看| 菠萝蜜视频在线观看一区| 欧美一卡二卡在线| 一区二区三区成人在线视频| 国产成人在线看| 欧美一级一区二区| 一区二区三区美女视频| 国产成人99久久亚洲综合精品| 欧美裸体一区二区三区| 亚洲人成在线播放网站岛国| 国产毛片精品一区| 日韩一区二区在线看| 亚洲小说欧美激情另类| 成人av片在线观看| 久久这里只有精品视频网| 午夜影院在线观看欧美| 91美女片黄在线| 中文字幕中文在线不卡住| 蜜桃精品视频在线| 8v天堂国产在线一区二区| 尤物在线观看一区| 成人ar影院免费观看视频| 精品91自产拍在线观看一区| 免费在线观看成人| 欧美精品一卡二卡| 亚洲一区二区三区四区在线| 91在线观看一区二区| 国产亚洲一区字幕| 国产精品自产自拍| 久久天堂av综合合色蜜桃网| 黄色日韩三级电影| 日韩精品一区二区三区在线| 偷拍与自拍一区| 欧美日韩激情一区二区| 亚洲愉拍自拍另类高清精品| 色婷婷综合久久| 一区二区三区在线观看视频| 91视频免费观看| 亚洲男人天堂av| 欧洲av一区二区嗯嗯嗯啊| 亚洲精品v日韩精品| 色婷婷激情综合| 亚洲国产日韩a在线播放性色| 欧美午夜在线一二页| 一区二区三区国产精华| 欧美亚洲一区二区在线| 亚洲午夜视频在线| 欧美日韩一区二区三区四区五区 | 成人黄色片在线观看| 中文字幕五月欧美| 91麻豆福利精品推荐| 一级女性全黄久久生活片免费| 欧美性受xxxx| 天天综合色天天综合色h| 欧美一区二区视频观看视频| 日韩经典一区二区| 亚洲欧美另类图片小说| 色老综合老女人久久久| 亚洲一区精品在线| 在线播放/欧美激情| 久久精品av麻豆的观看方式| 国产欧美精品一区二区色综合| 成人午夜激情片| 亚洲国产精品久久久男人的天堂 | 91精品久久久久久蜜臀| 蜜臂av日日欢夜夜爽一区| 国产亚洲精品aa午夜观看| 99精品视频中文字幕| 亚洲一区在线观看免费 | 成人美女在线视频| 成人免费在线视频| 欧美日韩在线综合| 激情综合色综合久久| 国产精品视频在线看| 欧美日韩五月天| 狠狠色丁香久久婷婷综| 亚洲天堂成人在线观看| 91精品国产综合久久精品| 国产成人鲁色资源国产91色综| 成人免费小视频| 欧美一区二区三区影视| 粉嫩aⅴ一区二区三区四区五区| 亚洲久本草在线中文字幕| 日韩三级视频中文字幕| 国产成人午夜精品5599| 亚洲国产欧美在线| 久久这里只有精品首页| 欧美日韩久久不卡| 国产成人亚洲综合a∨婷婷| 亚洲成人动漫一区| 久久精品在这里| 欧美色老头old∨ideo| 国产成人精品网址| 午夜精品123| 一区在线观看视频| 26uuuu精品一区二区| 在线视频一区二区三区| 国产剧情一区二区| 日韩国产欧美在线视频| 亚洲丝袜自拍清纯另类| 26uuu成人网一区二区三区| 欧美日韩午夜在线| 99久久久精品免费观看国产蜜| 国产在线精品一区二区夜色| 亚洲小说欧美激情另类| 国产精品国产三级国产普通话蜜臀 | 91美女在线看|