Lines Matching refs:m_pDB
303 char * m_pDB; ///< Block of data containing all the strings; member
314 char * m_pDB; ///< Block of data containing all the data member
328 pTable->m_pDB = (char *) malloc(pTable->m_maxDB * sizeof(char)); in GFDCreateStringTable()
329 memset(pTable->m_pDB, 0, pTable->m_maxDB * sizeof(char)); in GFDCreateStringTable()
343 free(pTable->m_pDB); in GFDDestroyStringTable()
356 … memcpy(pDB, pTable->m_pDB, pTable->m_maxDB); // copy old data into this new location in GFDGrowStringTableDB()
358 free(pTable->m_pDB); // cleanup, and save new values in GFDGrowStringTableDB()
359 pTable->m_pDB = pDB; in GFDGrowStringTableDB()
387 strncpy_s(pTable->m_nDB + pTable->m_pDB, len+1, str, len+1); in GFDAddStringTable()
389 strncpy_s(pTable->m_nDB + pTable->m_pDB + len + 1, sizeof(u32), (char*) &zero, len_pad - len-1); in GFDAddStringTable()
408 pTable->m_pDB = (char *) malloc(pTable->m_maxDB * sizeof(char)); in GFDCreateDataTable()
409 memset(pTable->m_pDB, 0xbb, pTable->m_maxDB * sizeof(char)); in GFDCreateDataTable()
424 free(pTable->m_pDB); in GFDDestroyDataTable()
437 … memcpy(pDB, pTable->m_pDB, pTable->m_maxDB); // copy old data into this new location in GFDGrowDataTableDB()
439 free(pTable->m_pDB); // cleanup, and save new values in GFDGrowDataTableDB()
440 pTable->m_pDB = pDB; in GFDGrowDataTableDB()
463 memcpy(pTable->m_pDB + pTable->m_nDB, data, nBytes); in GFDAddDataTable()
810 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderVSH()
811 …pOffset[nE] = GFDAddDataTable(pDT, pStrTable->m_pDB, nWordsStrTbl*4); // simply write out string … in GFDCreateBlockRelocateHeaderVSH()
816 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderVSH()
823 *((u32*) (pDT->m_pDB + GFDCleanTag(pAddr[i]))) = pOffset[i]; in GFDCreateBlockRelocateHeaderVSH()
980 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderPSH()
981 …pOffset[nE] = GFDAddDataTable(pDT, pStrTable->m_pDB, nWordsStrTbl*4); // simply write out string … in GFDCreateBlockRelocateHeaderPSH()
986 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderPSH()
993 *((u32*) (pDT->m_pDB + GFDCleanTag(pAddr[i]))) = pOffset[i]; in GFDCreateBlockRelocateHeaderPSH()
1151 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderGSH()
1152 …pOffset[nE] = GFDAddDataTable(pDT, pStrTable->m_pDB, nWordsStrTbl*4); // simply write out string … in GFDCreateBlockRelocateHeaderGSH()
1157 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderGSH()
1164 *((u32*) (pDT->m_pDB + GFDCleanTag(pAddr[i]))) = pOffset[i]; in GFDCreateBlockRelocateHeaderGSH()
1349 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderCSH()
1350 …pOffset[nE] = GFDAddDataTable(pDT, pStrTable->m_pDB, nWordsStrTbl*4); // simply write out string … in GFDCreateBlockRelocateHeaderCSH()
1355 GFDEndianSwap8in32((u32*) pStrTable->m_pDB, nWordsStrTbl); in GFDCreateBlockRelocateHeaderCSH()
1362 *((u32*) (pDT->m_pDB + GFDCleanTag(pAddr[i]))) = pOffset[i]; in GFDCreateBlockRelocateHeaderCSH()
1441 … if(!GFDWriteFilePPCData(fp, (nBytesVSStruct + 3) / 4, GFD_ELEMENT_SIZE_32, (u32 *) pDT_VS->m_pDB)) in GFDWriteFileVertexShaderBlock()
1497 … if(!GFDWriteFilePPCData(fp, (nBytesPSStruct + 3) / 4, GFD_ELEMENT_SIZE_32, (u32 *) pDT_PS->m_pDB)) in GFDWriteFilePixelShaderBlock()
1557 … if(!GFDWriteFilePPCData(fp, (nBytesGSStruct + 3) / 4, GFD_ELEMENT_SIZE_32, (u32 *) pDT_GS->m_pDB)) in GFDWriteFileGeometryShaderBlock()
1634 … if(!GFDWriteFilePPCData(fp, (nBytesCSStruct + 3) / 4, GFD_ELEMENT_SIZE_32, (u32 *) pDT_CS->m_pDB)) in GFDWriteFileComputeShaderBlock()