Home
last modified time | relevance | path

Searched refs:dataSize (Results 1 – 10 of 10) sorted by relevance

/CafeSDK-2.12.13/system/src/lib/gfd/
DgfdInterface.c154 memcpy(pHeader, (void *)pDataStruct, pBlockHeader->dataSize); in GFDGetVertexShader()
156 if (!_GFDRelocateBlock(pBlockHeader->dataSize,(char *)pHeader)) in GFDGetVertexShader()
161 … GFDPRINT("GFD:VSH_HEADER: %x -> %x size: %d\n", pDataStruct, pHeader, pBlockHeader->dataSize); in GFDGetVertexShader()
170 memcpy(pHeader->shaderPtr, (char *)pDataStruct, pBlockHeader->dataSize); in GFDGetVertexShader()
173 …T("GFD:VSH_PROGRAM: %x -> %x size: %d\n", pDataStruct, pHeader->shaderPtr, pBlockHeader->dataSize); in GFDGetVertexShader()
180 pDataStruct += pBlockHeader->dataSize; in GFDGetVertexShader()
227 memcpy(pHeader, (void *)pDataStruct, pBlockHeader->dataSize); in GFDGetPixelShader()
229 if (!_GFDRelocateBlock(pBlockHeader->dataSize,(char *)pHeader)) in GFDGetPixelShader()
234 …NT("GFD:PSH_HEADER: %x -> %x size: %d\n", pDataStruct, pHeader->shaderPtr, pBlockHeader->dataSize); in GFDGetPixelShader()
243 memcpy(pHeader->shaderPtr, (char *)pDataStruct, pBlockHeader->dataSize); in GFDGetPixelShader()
[all …]
/CafeSDK-2.12.13/system/include/cafe/gfd/
DgfdFormat.h84 u32 dataSize; ///< Size of the following data block, in bytes. member
105 …u32 dataSize; ///< size of the main data section (allocate this size of contiguo… member
/CafeSDK-2.12.13/system/src/lib/gfd/headers/cafe/gfd/
DgfdFormat.h84 u32 dataSize; ///< Size of the following data block, in bytes. member
105 …u32 dataSize; ///< size of the main data section (allocate this size of contiguo… member
/CafeSDK-2.12.13/system/include/nn/uds/CAFE/
Duds_Api.h193 size_t dataSize );
266 size_t dataSize );
529 nn::Result SendTo ( const EndpointDescriptor& endpointDesc, const void* data, size_t dataSize, u16 …
723 nn::Result SetApplicationDataToBeacon ( const void* pData, size_t dataSize );
/CafeSDK-2.12.13/system/include/cafe/
Dsysapp.h315 u32 dataSize; member
325 u32 dataSize; member
/CafeSDK-2.12.13/system/src/tool/gfx/projects/gfd/
DgfdFileTexture.cpp413 …if(!GFDReadFilePPCData(&outTexture, (gfdBlockHeader.dataSize + 3) / 4, GFD_ELEMENT_SIZE_32, pFile)) in GFDReadFileTexture()
434 imageData = (u32*)malloc(((gfdBlockHeader.dataSize + 3) / 4)*GFD_ELEMENT_SIZE_32); in GFDReadFileTexture()
437 …if(!GFDReadFileGPUData(imageData, (gfdBlockHeader.dataSize + 3) / 4, GFD_ELEMENT_SIZE_32, swapMode… in GFDReadFileTexture()
454 mipData = (u32*)malloc(((gfdBlockHeader.dataSize + 3) / 4)*GFD_ELEMENT_SIZE_32); in GFDReadFileTexture()
457 …if(!GFDReadFileGPUData(mipData, (gfdBlockHeader.dataSize + 3) / 4, GFD_ELEMENT_SIZE_32, swapMode, … in GFDReadFileTexture()
473 fseek(pFile, gfdBlockHeader.dataSize, SEEK_CUR); in GFDReadFileTexture()
DgfdFileIO.cpp48 … blockHeader.dataSize = size; // following data block size in bytes, doesn't include this header in GFDWriteFileBlockHeader()
DgfdFileShader.cpp847 …vshTrailer->dataSize = GFDCleanTag(pOffset[oPatchTable]) - GFDCleanTag(pOffset[oMain… in GFDCreateBlockRelocateHeaderVSH()
1017 …pshTrailer->dataSize = GFDCleanTag(pOffset[oPatchTable]) - GFDCleanTag(pOffset[oMain… in GFDCreateBlockRelocateHeaderPSH()
1188 …gshTrailer->dataSize = GFDCleanTag(pOffset[oPatchTable]) - GFDCleanTag(pOffset[oMain… in GFDCreateBlockRelocateHeaderGSH()
1391 …vshTrailer->dataSize = GFDCleanTag(pOffset[oPatchTable]) - GFDCleanTag(pOffset[oMain… in GFDCreateBlockRelocateHeaderCSH()
/CafeSDK-2.12.13/system/src/tool/gfx/include/gfdFile/
DgfdFileIO.h52 GFD_DECLSPEC bool GFD_API GFDWriteFileBlockHeader(FILE *fp, GFDBlockType type, u32 dataSize);
/CafeSDK-2.12.13/system/include/nn/olv/
Dolv_Types.h400 nn::Result AddCommonData(const u32 dataTypeId, const u8* data, const u32 dataSize);
2966 nn::Result GetCommonData(u32 *type, u8* data, u32 *dataSize, const u32 dataMaxSize);
3106 u32 type, dataSize; in GetYoutubeResult() local
3107 nn::Result result = GetCommonData(&type, youtubeResult, &dataSize, youtubeResultSize); in GetYoutubeResult()
3110 if (type != RESULT_COMMON_DATA_TYPE_YOUTUBE || dataSize != youtubeResultSize) in GetYoutubeResult()