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

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

?? rulebin.c

?? clips源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
   theBsaveHeader->stopNode = theHeader->stopNode;   theBsaveHeader->beginSlot = theHeader->beginSlot;   theBsaveHeader->endSlot = theHeader->endSlot;   theBsaveHeader->selector = theHeader->selector;  }#endif /* BLOAD_AND_BSAVE *//************************************************//* BloadStorage: Loads storage requirements for *//*   the defrules used by this binary image.    *//************************************************/static void BloadStorage(  void *theEnv)  {   size_t space;   /*=================================================*/   /* Determine the number of defrule, defruleModule, */   /* and joinNode data structures to be read.        */   /*=================================================*/   GenReadBinary(theEnv,&space,sizeof(size_t));   GenReadBinary(theEnv,&DefruleBinaryData(theEnv)->NumberOfDefruleModules,sizeof(long int));   GenReadBinary(theEnv,&DefruleBinaryData(theEnv)->NumberOfDefrules,sizeof(long int));   GenReadBinary(theEnv,&DefruleBinaryData(theEnv)->NumberOfJoins,sizeof(long int));   GenReadBinary(theEnv,&DefruleBinaryData(theEnv)->NumberOfLinks,sizeof(long int));   GenReadBinary(theEnv,&DefruleBinaryData(theEnv)->RightPrimeIndex,sizeof(long int));   GenReadBinary(theEnv,&DefruleBinaryData(theEnv)->LeftPrimeIndex,sizeof(long int));   /*===================================*/   /* Allocate the space needed for the */   /* defruleModule data structures.    */   /*===================================*/   if (DefruleBinaryData(theEnv)->NumberOfDefruleModules == 0)     {      DefruleBinaryData(theEnv)->ModuleArray = NULL;      DefruleBinaryData(theEnv)->DefruleArray = NULL;      DefruleBinaryData(theEnv)->JoinArray = NULL;     }   space = DefruleBinaryData(theEnv)->NumberOfDefruleModules * sizeof(struct defruleModule);   DefruleBinaryData(theEnv)->ModuleArray = (struct defruleModule *) genalloc(theEnv,space);   /*===============================*/   /* Allocate the space needed for */   /* the defrule data structures.  */   /*===============================*/   if (DefruleBinaryData(theEnv)->NumberOfDefrules == 0)     {      DefruleBinaryData(theEnv)->DefruleArray = NULL;      DefruleBinaryData(theEnv)->JoinArray = NULL;      return;     }   space = DefruleBinaryData(theEnv)->NumberOfDefrules * sizeof(struct defrule);   DefruleBinaryData(theEnv)->DefruleArray = (struct defrule *) genalloc(theEnv,space);   /*===============================*/   /* Allocate the space needed for */   /* the joinNode data structures. */   /*===============================*/   space = DefruleBinaryData(theEnv)->NumberOfJoins * sizeof(struct joinNode);   DefruleBinaryData(theEnv)->JoinArray = (struct joinNode *) genalloc(theEnv,space);   /*===============================*/   /* Allocate the space needed for */   /* the joinNode data structures. */   /*===============================*/   space = DefruleBinaryData(theEnv)->NumberOfLinks * sizeof(struct joinLink);   DefruleBinaryData(theEnv)->LinkArray = (struct joinLink *) genalloc(theEnv,space);  }/****************************************************//* BloadBinaryItem: Loads and refreshes the defrule *//*   constructs used by this binary image.          *//****************************************************/static void BloadBinaryItem(  void *theEnv)  {   size_t space;   /*======================================================*/   /* Read in the amount of space used by the binary image */   /* (this is used to skip the construct in the event it  */   /* is not available in the version being run).          */   /*======================================================*/   GenReadBinary(theEnv,&space,sizeof(size_t));   /*===========================================*/   /* Read in the defruleModule data structures */   /* and refresh the pointers.                 */   /*===========================================*/   BloadandRefresh(theEnv,DefruleBinaryData(theEnv)->NumberOfDefruleModules,                   sizeof(struct bsaveDefruleModule),UpdateDefruleModule);   /*=====================================*/   /* Read in the defrule data structures */   /* and refresh the pointers.           */   /*=====================================*/   BloadandRefresh(theEnv,DefruleBinaryData(theEnv)->NumberOfDefrules,                   sizeof(struct bsaveDefrule),UpdateDefrule);   /*======================================*/   /* Read in the joinNode data structures */   /* and refresh the pointers.            */   /*======================================*/   BloadandRefresh(theEnv,DefruleBinaryData(theEnv)->NumberOfJoins,                   sizeof(struct bsaveJoinNode),UpdateJoin);   /*======================================*/   /* Read in the joinLink data structures */   /* and refresh the pointers.            */   /*======================================*/   BloadandRefresh(theEnv,DefruleBinaryData(theEnv)->NumberOfLinks,                   sizeof(struct bsaveJoinLink),UpdateLink);                DefruleData(theEnv)->RightPrimeJoins = BloadJoinLinkPointer(DefruleBinaryData(theEnv)->RightPrimeIndex);   DefruleData(theEnv)->LeftPrimeJoins = BloadJoinLinkPointer(DefruleBinaryData(theEnv)->LeftPrimeIndex);  }/**********************************************//* UpdateDefruleModule: Bload refresh routine *//*   for defrule module data structures.      *//**********************************************/static void UpdateDefruleModule(  void *theEnv,  void *buf,  long obji)  {   struct bsaveDefruleModule *bdmPtr;   bdmPtr = (struct bsaveDefruleModule *) buf;   UpdateDefmoduleItemHeader(theEnv,&bdmPtr->header,&DefruleBinaryData(theEnv)->ModuleArray[obji].header,                             (int) sizeof(struct defrule),                             (void *) DefruleBinaryData(theEnv)->DefruleArray);   DefruleBinaryData(theEnv)->ModuleArray[obji].agenda = NULL;   DefruleBinaryData(theEnv)->ModuleArray[obji].groupings = NULL;  }/****************************************//* UpdateDefrule: Bload refresh routine *//*   for defrule data structures.       *//****************************************/static void UpdateDefrule(  void *theEnv,  void *buf,  long obji)  {   struct bsaveDefrule *br;   br = (struct bsaveDefrule *) buf;   UpdateConstructHeader(theEnv,&br->header,&DefruleBinaryData(theEnv)->DefruleArray[obji].header,                         (int) sizeof(struct defruleModule),(void *) DefruleBinaryData(theEnv)->ModuleArray,                         (int) sizeof(struct defrule),(void *) DefruleBinaryData(theEnv)->DefruleArray);   DefruleBinaryData(theEnv)->DefruleArray[obji].dynamicSalience = ExpressionPointer(br->dynamicSalience);   DefruleBinaryData(theEnv)->DefruleArray[obji].actions = ExpressionPointer(br->actions);   DefruleBinaryData(theEnv)->DefruleArray[obji].logicalJoin = BloadJoinPointer(br->logicalJoin);   DefruleBinaryData(theEnv)->DefruleArray[obji].lastJoin = BloadJoinPointer(br->lastJoin);   DefruleBinaryData(theEnv)->DefruleArray[obji].disjunct = BloadDefrulePointer(DefruleBinaryData(theEnv)->DefruleArray,br->disjunct);   DefruleBinaryData(theEnv)->DefruleArray[obji].salience = br->salience;   DefruleBinaryData(theEnv)->DefruleArray[obji].localVarCnt = br->localVarCnt;   DefruleBinaryData(theEnv)->DefruleArray[obji].complexity = br->complexity;   DefruleBinaryData(theEnv)->DefruleArray[obji].autoFocus = br->autoFocus;   DefruleBinaryData(theEnv)->DefruleArray[obji].executing = 0;   DefruleBinaryData(theEnv)->DefruleArray[obji].afterBreakpoint = 0;#if DEBUGGING_FUNCTIONS   DefruleBinaryData(theEnv)->DefruleArray[obji].watchActivation = AgendaData(theEnv)->WatchActivations;   DefruleBinaryData(theEnv)->DefruleArray[obji].watchFiring = DefruleData(theEnv)->WatchRules;#endif  }/*************************************//* UpdateJoin: Bload refresh routine *//*   for joinNode data structures.   *//*************************************/static void UpdateJoin(  void *theEnv,  void *buf,  long obji)  {   struct bsaveJoinNode *bj;   bj = (struct bsaveJoinNode *) buf;   DefruleBinaryData(theEnv)->JoinArray[obji].firstJoin = bj->firstJoin;   DefruleBinaryData(theEnv)->JoinArray[obji].logicalJoin = bj->logicalJoin;   DefruleBinaryData(theEnv)->JoinArray[obji].joinFromTheRight = bj->joinFromTheRight;   DefruleBinaryData(theEnv)->JoinArray[obji].patternIsNegated = bj->patternIsNegated;   DefruleBinaryData(theEnv)->JoinArray[obji].patternIsExists = bj->patternIsExists;   DefruleBinaryData(theEnv)->JoinArray[obji].depth = bj->depth;   DefruleBinaryData(theEnv)->JoinArray[obji].rhsType = bj->rhsType;   DefruleBinaryData(theEnv)->JoinArray[obji].networkTest = HashedExpressionPointer(bj->networkTest);   DefruleBinaryData(theEnv)->JoinArray[obji].secondaryNetworkTest = HashedExpressionPointer(bj->secondaryNetworkTest);   DefruleBinaryData(theEnv)->JoinArray[obji].leftHash = HashedExpressionPointer(bj->leftHash);   DefruleBinaryData(theEnv)->JoinArray[obji].rightHash = HashedExpressionPointer(bj->rightHash);   DefruleBinaryData(theEnv)->JoinArray[obji].nextLinks = BloadJoinLinkPointer(bj->nextLinks);   DefruleBinaryData(theEnv)->JoinArray[obji].lastLevel = BloadJoinPointer(bj->lastLevel);   if (bj->joinFromTheRight == TRUE)     { DefruleBinaryData(theEnv)->JoinArray[obji].rightSideEntryStructure =  (void *) BloadJoinPointer(bj->rightSideEntryStructure); }   else     { DefruleBinaryData(theEnv)->JoinArray[obji].rightSideEntryStructure = NULL; }   DefruleBinaryData(theEnv)->JoinArray[obji].rightMatchNode = BloadJoinPointer(bj->rightMatchNode);   DefruleBinaryData(theEnv)->JoinArray[obji].ruleToActivate = BloadDefrulePointer(DefruleBinaryData(theEnv)->DefruleArray,bj->ruleToActivate);   DefruleBinaryData(theEnv)->JoinArray[obji].initialize = 0;   DefruleBinaryData(theEnv)->JoinArray[obji].marked = 0;   DefruleBinaryData(theEnv)->JoinArray[obji].bsaveID = 0L;   DefruleBinaryData(theEnv)->JoinArray[obji].leftMemory = NULL;   DefruleBinaryData(theEnv)->JoinArray[obji].rightMemory = NULL;   AddBetaMemoriesToJoin(theEnv,&DefruleBinaryData(theEnv)->JoinArray[obji]);  }/*************************************//* UpdateLink: Bload refresh routine *//*   for joinLink data structures.   *//*************************************/static void UpdateLink(  void *theEnv,  void *buf,  long obji)  {   struct bsaveJoinLink *bj;   bj = (struct bsaveJoinLink *) buf;   DefruleBinaryData(theEnv)->LinkArray[obji].enterDirection = bj->enterDirection;   DefruleBinaryData(theEnv)->LinkArray[obji].next = BloadJoinLinkPointer(bj->next);   DefruleBinaryData(theEnv)->LinkArray[obji].join = BloadJoinPointer(bj->join);  }  /************************************************************//* UpdatePatternNodeHeader: Refreshes the values in pattern *//*   node headers from the loaded binary image.             *//************************************************************/globle void UpdatePatternNodeHeader(  void *theEnv,  struct patternNodeHeader *theHeader,  struct bsavePatternNodeHeader *theBsaveHeader)  {   struct joinNode *theJoin;   theHeader->singlefieldNode = theBsaveHeader->singlefieldNode;   theHeader->multifieldNode = theBsaveHeader->multifieldNode;   theHeader->stopNode = theBsaveHeader->stopNode;   theHeader->beginSlot = theBsaveHeader->beginSlot;   theHeader->endSlot = theBsaveHeader->endSlot;   theHeader->selector = theBsaveHeader->selector;   theHeader->initialize = 0;   theHeader->marked = 0;   theHeader->firstHash = NULL;   theHeader->lastHash = NULL;   theHeader->rightHash = HashedExpressionPointer(theBsaveHeader->rightHash);   theJoin = BloadJoinPointer(theBsaveHeader->entryJoin);   theHeader->entryJoin = theJoin;   while (theJoin != NULL)     {      theJoin->rightSideEntryStructure = (void *) theHeader;      theJoin = theJoin->rightMatchNode;     }  }/**************************************//* ClearBload: Defrule clear routine  *//*   when a binary load is in effect. *//**************************************/static void ClearBload(  void *theEnv)  {   size_t space;   long i;   struct patternParser *theParser = NULL;   struct patternEntity *theEntity = NULL;   void *theModule;   /*===========================================*/   /* Delete all known entities before removing */   /* the defrule data structures.              */   /*===========================================*/   GetNextPatternEntity(theEnv,&theParser,&theEntity);   while (theEntity != NULL)     {      (*theEntity->theInfo->base.deleteFunction)(theEnv,theEntity);      theEntity = NULL;      GetNextPatternEntity(theEnv,&theParser,&theEntity);     }   /*=========================================*/   /* Remove all activations from the agenda. */   /*=========================================*/   SaveCurrentModule(theEnv);   for (theModule = EnvGetNextDefmodule(theEnv,NULL);        theModule != NULL;        theModule = EnvGetNextDefmodule(theEnv,theModule))     {      EnvSetCurrentModule(theEnv,theModule);      RemoveAllActivations(theEnv);     }   RestoreCurrentModule(theEnv);   EnvClearFocusStack(theEnv);   /*==========================================================*/   /* Remove all partial matches from the beta memories in the */   /* join network. Alpha memories do not need to be examined  */   /* since all pattern entities have been deleted by now.     */   /*==========================================================*/   for (i = 0; i < DefruleBinaryData(theEnv)->NumberOfJoins; i++)     {       FlushBetaMemory(theEnv,&DefruleBinaryData(theEnv)->JoinArray[i],LHS);       ReturnLeftMemory(theEnv,&DefruleBinaryData(theEnv)->JoinArray[i]);      FlushBetaMemory(theEnv,&DefruleBinaryData(theEnv)->JoinArray[i],RHS);       ReturnRightMemory(theEnv,&DefruleBinaryData(theEnv)->JoinArray[i]);     }   /*================================================*/   /* Decrement the symbol count for each rule name. */   /*================================================*/   for (i = 0; i < DefruleBinaryData(theEnv)->NumberOfDefrules; i++)     { UnmarkConstructHeader(theEnv,&DefruleBinaryData(theEnv)->DefruleArray[i].header); }   /*==================================================*/   /* Return the space allocated for the bload arrays. */   /*==================================================*/   space = DefruleBinaryData(theEnv)->NumberOfDefruleModules * sizeof(struct defruleModule);   if (space != 0) genfree(theEnv,(void *) DefruleBinaryData(theEnv)->ModuleArray,space);   DefruleBinaryData(theEnv)->NumberOfDefruleModules = 0;      space = DefruleBinaryData(theEnv)->NumberOfDefrules * sizeof(struct defrule);   if (space != 0) genfree(theEnv,(void *) DefruleBinaryData(theEnv)->DefruleArray,space);   DefruleBinaryData(theEnv)->NumberOfDefrules = 0;      space = DefruleBinaryData(theEnv)->NumberOfJoins * sizeof(struct joinNode);   if (space != 0) genfree(theEnv,(void *) DefruleBinaryData(theEnv)->JoinArray,space);   DefruleBinaryData(theEnv)->NumberOfJoins = 0;   space = DefruleBinaryData(theEnv)->NumberOfLinks * sizeof(struct joinLink);   if (space != 0) genfree(theEnv,(void *) DefruleBinaryData(theEnv)->LinkArray,space);   DefruleBinaryData(theEnv)->NumberOfLinks = 0;   DefruleData(theEnv)->RightPrimeJoins = NULL;   DefruleData(theEnv)->LeftPrimeJoins = NULL;  }/*******************************************************//* BloadDefruleModuleReference: Returns the defrule    *//*   module pointer for using with the bload function. *//*******************************************************/globle void *BloadDefruleModuleReference(  void *theEnv,  int theIndex)  {   return ((void *) &DefruleBinaryData(theEnv)->ModuleArray[theIndex]);  }#endif /* DEFRULE_CONSTRUCT && (BLOAD || BLOAD_ONLY || BLOAD_AND_BSAVE) && (! RUN_TIME) */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一本一道久久香蕉| 亚洲国产一区二区视频| 国产精品中文欧美| 久久久噜噜噜久噜久久综合| 国产aⅴ综合色| 中文字幕日本不卡| 在线观看av一区| 日本成人中文字幕在线视频 | 国产欧美日韩精品a在线观看| 老汉av免费一区二区三区| 欧美变态凌虐bdsm| 懂色av噜噜一区二区三区av| 一区二区三区久久| 欧美精品在欧美一区二区少妇| 久久精品国产99久久6| 国产视频一区二区在线观看| 色综合久久久久综合| 日本美女视频一区二区| 国产亚洲一区字幕| 欧美专区日韩专区| 国产一区二区三区电影在线观看 | 国产精品久久免费看| 色综合久久中文字幕综合网| 日韩va欧美va亚洲va久久| 26uuu精品一区二区三区四区在线| 不卡的电影网站| 日韩制服丝袜av| 国产精品视频一二三区 | 欧美一区二区三区公司| 国产白丝网站精品污在线入口| 亚洲欧美日本韩国| 精品国产伦一区二区三区观看体验| 成人久久视频在线观看| 日韩精品一二三四| 国产精品久久久久久久久久久免费看 | 欧美日韩国产综合一区二区 | 国产成人小视频| 亚洲va韩国va欧美va| 中文字幕欧美日本乱码一线二线| 国产黑丝在线一区二区三区| 亚洲综合999| 国产午夜亚洲精品不卡| 欧美日韩第一区日日骚| 91视频国产观看| 蜜臀久久99精品久久久画质超高清 | 亚洲乱码国产乱码精品精的特点 | 欧美一三区三区四区免费在线看| 丁香激情综合国产| 玖玖九九国产精品| 亚洲影视在线观看| 国产精品久久久久久久久快鸭| 日韩免费观看高清完整版 | 美女视频一区二区| 亚洲永久免费av| 中文字幕一区二区三区四区不卡 | 国产亚洲欧美中文| 欧美一区在线视频| 欧美日韩在线播放一区| 91蝌蚪porny| 国产成人精品亚洲午夜麻豆| 美女在线观看视频一区二区| 午夜亚洲国产au精品一区二区| 国产精品黄色在线观看| 日本一区免费视频| 久久久国产精品不卡| 精品久久99ma| 日韩欧美国产wwwww| 7777精品伊人久久久大香线蕉超级流畅 | 91成人在线免费观看| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 国产精品资源在线| 国产精品自在欧美一区| 激情综合网最新| 久久国产人妖系列| 麻豆高清免费国产一区| 奇米影视在线99精品| 免费人成在线不卡| 久久综合综合久久综合| 另类小说欧美激情| 韩国成人精品a∨在线观看| 国产专区欧美精品| 国产成人午夜99999| 国产成人啪免费观看软件| 成人黄色在线网站| 成人91在线观看| 日本高清不卡视频| 欧美日韩免费观看一区三区| 欧美日韩免费观看一区二区三区| 欧美性色欧美a在线播放| 欧美日韩一级片在线观看| 欧美日韩国产小视频| 日韩一区二区精品葵司在线 | 欧美麻豆精品久久久久久| 欧美精品久久99久久在免费线 | 7777精品久久久大香线蕉| 欧美猛男男办公室激情| 欧美一级精品在线| 精品成人免费观看| 国产精品久久国产精麻豆99网站| 亚洲视频香蕉人妖| 日本美女一区二区| 粉嫩aⅴ一区二区三区四区五区 | 色天使久久综合网天天| 欧美三级乱人伦电影| 日韩免费一区二区| 国产精品久久久久久久久果冻传媒 | 国产精品毛片大码女人| 亚洲色图视频网| 成人午夜碰碰视频| 欧美自拍偷拍午夜视频| 日韩写真欧美这视频| 国产精品国产三级国产aⅴ无密码| 亚洲人成精品久久久久| 视频一区二区三区入口| 国产成人一级电影| 欧美日韩国产经典色站一区二区三区| 欧美一二区视频| 亚洲天堂精品视频| 麻豆精品一区二区| 一本高清dvd不卡在线观看| 偷拍与自拍一区| 日韩欧美一区二区久久婷婷| 国产精品人人做人人爽人人添| 性做久久久久久免费观看| 国产伦精一区二区三区| 欧洲在线/亚洲| 久久久欧美精品sm网站| 视频一区二区三区中文字幕| 99精品久久99久久久久| 日韩三级在线免费观看| 亚洲乱码精品一二三四区日韩在线| 美女国产一区二区| 欧美中文字幕亚洲一区二区va在线| 久久亚洲影视婷婷| 免费视频一区二区| 欧美亚洲国产一区二区三区| 国产日韩综合av| 另类调教123区| 欧美日韩一级二级三级| 综合在线观看色| 国产成人在线色| 精品久久久久一区二区国产| 亚洲综合久久av| 91在线视频播放地址| 国产日产欧产精品推荐色| 日本不卡免费在线视频| 欧美性极品少妇| 中文字幕一区三区| 成人午夜在线视频| 久久精品欧美日韩| 精品综合久久久久久8888| 在线免费观看视频一区| 日韩美女久久久| 成人国产精品视频| 久久精品男人的天堂| 国产精品一区专区| 久久精品一区二区三区av| 麻豆国产精品官网| 精品久久一二三区| 老司机免费视频一区二区| 91精品国产一区二区三区蜜臀| 亚洲韩国一区二区三区| 欧美日韩一级二级| 亚洲成人av中文| 欧美日韩1234| 日韩影院精彩在线| 4438x成人网最大色成网站| 天使萌一区二区三区免费观看| 日韩av中文在线观看| 成人高清视频在线观看| 国产日本欧美一区二区| 国产白丝网站精品污在线入口| 久久久久综合网| 伊人夜夜躁av伊人久久| 亚洲国产美女搞黄色| 青青国产91久久久久久 | 亚洲电影在线播放| 欧美在线综合视频| 欧美另类videos死尸| 2023国产一二三区日本精品2022| 国内精品伊人久久久久av一坑 | 五月综合激情网| 欧美日韩在线电影| 午夜日韩在线观看| 欧美在线999| 亚洲一区二区三区四区在线观看 | 国产乱人伦偷精品视频免下载| 欧美日韩视频在线一区二区 | 国产精品国产三级国产aⅴ入口 | 国产亚洲自拍一区| 成人在线一区二区三区| 精品国产人成亚洲区| 成人性生交大合| 中文字幕日韩精品一区| 色8久久精品久久久久久蜜 | 久久香蕉国产线看观看99| 国产99久久精品| 亚洲精品免费播放| 欧美三级蜜桃2在线观看| 婷婷丁香激情综合|