Home
last modified time | relevance | path

Searched refs:REV32 (Results 1 – 5 of 5) sorted by relevance

/RvlSDK-3.2/build/tools/darch/include/
Ddarch.h161 #define REV32(data) ( ( ((data) & 0xff000000) >> 24 ) | \ macro
167 ( ( ( REV32((entry)->isDirAndStringOff) & 0xff000000 ) == 0 )? FALSE:TRUE )
169 ( REV32((entry)->isDirAndStringOff) & 0x00ffffff )
171 ( REV32((entry)->parentOrPosition) )
173 ( REV32((entry)->nextEntryOrLength) )
175 ( REV32((entry)->parentOrPosition) )
177 ( REV32((entry)->nextEntryOrLength) )
/RvlSDK-3.2/build/tools/darch/src/
Dout.c70 header.magic = REV32(DARCH_MAGIC); in makeOutFile()
71 header.fstStart = REV32(map.fstPosition); in makeOutFile()
72 header.fstSize = REV32(map.fstLength); in makeOutFile()
73 header.fileStart = REV32(map.userFilePosition); in makeOutFile()
Dextract.c69 if (header.magic != REV32(DARCH_MAGIC)) in OpenArc()
75 fstLength = REV32(header.fstSize); in OpenArc()
76 handle->fileStart = REV32(header.fileStart); in OpenArc()
84 if ( -1 == lseek(handle->fid, REV32(header.fstStart), SEEK_SET) ) in OpenArc()
Dcreate.c642 header.magic = REV32(DARCH_MAGIC); in ConstructFSTFromStructure()
643 header.fstStart = REV32(fstPos); in ConstructFSTFromStructure()
644 header.fstSize = REV32(fstLength); in ConstructFSTFromStructure()
645 header.fileStart = REV32(userPos); in ConstructFSTFromStructure()
/RvlSDK-3.2/build/demos/videmo/src/
Dbmp.c45 #define REV32(x) ((u32)( ( ((x) & 0xff000000) >> 24) \ macro
62 bi->biSizeImage = REV32(*(u32*)(header + 0x02)); in openBmp()
63 bi->bfOffBits = REV32(*(u32*)(header + 0x0a)); in openBmp()
67 bi->width = REV32(*(u32*)(bInfoHeader + 0x04)); in openBmp()
68 bi->height = REV32(*(u32*)(bInfoHeader + 0x08)); in openBmp()
70 bi->biCompression = REV32(*(u32*)(bInfoHeader + 0x10)); in openBmp()
72 bi->paletteOff = 0x0e + REV32(*(u32*)(bInfoHeader)); in openBmp()