Searched refs:m_pDB (Results 1 – 1 of 1) sorted by relevance
| /CafeSDK-2.12.13-1/system/src/tool/gfx/projects/gfd/ |
| D | gfdFileShader.cpp | 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() [all …]
|