Searched refs:currFSTEntry (Results 1 – 2 of 2) sorted by relevance
| /RvlSDK-3.1.4/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 | 592 FSTEntry* currFSTEntry; in ConstructFSTFromStructure() local 629 currFSTEntry = (FSTEntry*)fst; in ConstructFSTFromStructure() 630 charPtr = FSTStringStart = (char*)(currFSTEntry + total); in ConstructFSTFromStructure() 651 setIsDir(currFSTEntry, item->isDir); in ConstructFSTFromStructure() 652 setStringOff(currFSTEntry, charPtr - FSTStringStart); in ConstructFSTFromStructure() 665 setParent(currFSTEntry, item->parent->entrynum); in ConstructFSTFromStructure() 666 setNextEntry(currFSTEntry, (i + item->numItems)); in ConstructFSTFromStructure() 671 setPosition(currFSTEntry, item->fileNewPosition); in ConstructFSTFromStructure() 672 setLength(currFSTEntry, item->fileLength); in ConstructFSTFromStructure() 697 currFSTEntry++; in ConstructFSTFromStructure()
|