Searched refs:currFSTEntry (Results 1 – 2 of 2) sorted by relevance
| /RvlSDK-3.2.3/build/tools/darch/src/ |
| D | fst.c | 259 FSTEntry* currFSTEntry; in createFST() local 271 currFSTEntry = (FSTEntry*)FST; in createFST() 272 FSTStringStart = (char*)(currFSTEntry + entryNum); in createFST() 282 setIsDir(currFSTEntry, (char)curr->isDir); in createFST() 284 setStringOff(currFSTEntry, curr->nameOffset); in createFST() 298 setParent(currFSTEntry, curr->parentEntry); in createFST() 299 setNextEntry(currFSTEntry, curr->nextEntry); in createFST() 303 setPosition(currFSTEntry, curr->filePosition); in createFST() 304 setLength(currFSTEntry, curr->fileLength); in createFST() 309 currFSTEntry++; in createFST()
|
| D | create.c | 596 FSTEntry* currFSTEntry; in ConstructFSTFromStructure() local 633 currFSTEntry = (FSTEntry*)fst; in ConstructFSTFromStructure() 634 charPtr = FSTStringStart = (char*)(currFSTEntry + total); in ConstructFSTFromStructure() 655 setIsDir(currFSTEntry, item->isDir); in ConstructFSTFromStructure() 656 setStringOff(currFSTEntry, charPtr - FSTStringStart); in ConstructFSTFromStructure() 669 setParent(currFSTEntry, item->parent->entrynum); in ConstructFSTFromStructure() 670 setNextEntry(currFSTEntry, (i + item->numItems)); in ConstructFSTFromStructure() 675 setPosition(currFSTEntry, item->fileNewPosition); in ConstructFSTFromStructure() 676 setLength(currFSTEntry, item->fileLength); in ConstructFSTFromStructure() 701 currFSTEntry++; in ConstructFSTFromStructure()
|