Home
last modified time | relevance | path

Searched refs:getAllocEntry (Results 1 – 8 of 8) sorted by relevance

/dports/games/scummvm/scummvm-2.5.1/engines/twine/resources/
H A Dhqr.h80 int32 getAllocEntry(uint8 **ptr, const char *filename, int32 index);
81 inline int32 getAllocEntry(uint8 **ptr, const TwineResource &resource) { in getAllocEntry() function
82 return getAllocEntry(ptr, resource.hqr, resource.index); in getAllocEntry()
H A Dresources.cpp48 const int32 size = HQR::getAllocEntry(&mainPalette, Resources::HQR_RESS_FILE, RESSHQR_MAINPAL); in initPalettes()
69 _spriteSizeTable[i] = HQR::getAllocEntry(&_spriteTable[i], Resources::HQR_SPRITES_FILE, i); in preloadSprites()
112 _samplesSizeTable[i] = HQR::getAllocEntry(&_samplesTable[i], Resources::HQR_SAMPLES_FILE, i); in preloadSamples()
139 _fontBufSize = HQR::getAllocEntry(&_fontPtr, Resources::HQR_RESS_FILE, RESSHQR_LBAFONT); in initResources()
218 size = HQR::getAllocEntry(&content, Resources::HQR_RESS_FILE, RESSHQR_FLAINFO); in loadMovieInfo()
220 size = HQR::getAllocEntry(&content, Resources::HQR_RESS_FILE, 48); in loadMovieInfo()
H A Dhqr.cpp247 int32 getAllocEntry(uint8 **ptr, const char *filename, int32 index) { in getAllocEntry() function
275 const int size = getAllocEntry(&content, filename, index); in dumpEntry()
/dports/games/scummvm/scummvm-2.5.1/engines/twine/audio/
H A Dmusic.cpp215 int32 midiSize = HQR::getAllocEntry(&midiPtr, filename, midiIdx); in playMidiMusic()
H A Dsound.cpp75 const int32 sampSize = HQR::getAllocEntry(&sampPtr, Resources::HQR_FLASAMP_FILE, index); in playFlaSample()
/dports/games/scummvm/scummvm-2.5.1/engines/twine/
H A Dholomap.cpp81 …const int32 locationsSize = HQR::getAllocEntry(&locationsPtr, Resources::HQR_RESS_FILE, RESSHQR_HO… in loadLocations()
355 const int32 holomapImageSize = HQR::getAllocEntry(&holomapImagePtr, holomapImageRes); in drawHolomapTrajectory()
536 const int32 holomapImageSize = HQR::getAllocEntry(&holomapImagePtr, holomapImageRes); in processHolomap()
/dports/games/scummvm/scummvm-2.5.1/engines/twine/scene/
H A Dgrid.cpp329 _brickSizeTable[i] = HQR::getAllocEntry(&_brickTable[i], Resources::HQR_LBA_BRK_FILE, i); in loadGridBricks()
426 _currentGridSize = HQR::getAllocEntry(&_currentGrid, Resources::HQR_LBA_GRI_FILE, index); in initGrid()
452 const int32 gridSize = HQR::getAllocEntry(&gridPtr, Resources::HQR_LBA_GRI_FILE, realIndex); in initCellingGrid()
H A Dscene.cpp438 _currentSceneSize = HQR::getAllocEntry(&_currentScene, Resources::HQR_SCENE_FILE, index); in initScene()