• Home
  • Raw
  • Download

Lines Matching refs:klex

152     klex_subobj_t *klex;  in klexInitialize()  local
162 klex = (klex_subobj_t *) this->subObj; in klexInitialize()
165 &(klex->nrblocks))) { in klexInitialize()
166 if (klex->nrblocks > 0) { in klexInitialize()
167 PICODBG_DEBUG(("nr blocks: %i, curpos: %i", klex->nrblocks,curpos)); in klexInitialize()
168 klex->searchind = this->base + curpos; in klexInitialize()
170 klex->searchind = NULL; in klexInitialize()
172 klex->lexblocks = this->base + PICOKLEX_LEX_NRBLOCKS_SIZE + in klexInitialize()
173 (klex->nrblocks * (PICOKLEX_LEX_SIE_SIZE)); in klexInitialize()
490 klex_SubObj klex = (klex_SubObj) this; in picoklex_lexLookup() local
492 if (NULL == klex) { in picoklex_lexLookup()
511 if ((klex->nrblocks) == 0) { in picoklex_lexLookup()
516 lbnr = klex_getLexblockNr(klex, tgraph); in picoklex_lexLookup()
517 PICODBG_ASSERT(lbnr < klex->nrblocks); in picoklex_lexLookup()
518 lbc = klex_getLexblockRange(klex, lbnr); in picoklex_lexLookup()
519 PICODBG_ASSERT((lbc >= 1) && (lbc <= klex->nrblocks)); in picoklex_lexLookup()
527 klex_lexblockLookup(klex, lexposStart, lexposEnd, graph, graphlen, lexres); in picoklex_lexLookup()
541 klex_SubObj klex = (klex_SubObj) this; in picoklex_lexIndLookup() local
554 if (pentry >= ((picoos_uint32)klex->nrblocks * PICOKLEX_LEXBLOCK_SIZE)) { in picoklex_lexIndLookup()
558 pentry += (klex->lexblocks[pentry]); in picoklex_lexIndLookup()
559 *phonlen = (klex->lexblocks[pentry++]) - 2; in picoklex_lexIndLookup()
560 *pos = klex->lexblocks[pentry++]; in picoklex_lexIndLookup()
561 *phon = &(klex->lexblocks[pentry]); in picoklex_lexIndLookup()