Searched refs:fBuff (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | MMap.h | 27 fBuff(0) // 0 is the error value returned by MapViewOfFile() in TMMap() 40 fBuff = (char*)malloc(sizeof(char) * fSize); in TMMap() 44 fBuff[count++] = c; in TMMap() 47 fBuff[count++] = c; in TMMap() 50 char* getData() { return fBuff; } in getData() 61 char* fBuff; // the actual data; variable
|
/external/zstd/examples/ |
D | simple_compression.c | 20 void* const fBuff = mallocAndLoadFile_orDie(fname, &fSize); in compress_orDie() local 28 size_t const cSize = ZSTD_compress(cBuff, cBuffSize, fBuff, fSize, 1); in compress_orDie() 36 free(fBuff); in compress_orDie()
|
D | dictionary_compression.c | 33 void* const fBuff = mallocAndLoadFile_orDie(fname, &fSize); in compress() local 45 size_t const cSize = ZSTD_compress_usingCDict(cctx, cBuff, cBuffSize, fBuff, fSize, cdict); in compress() 54 free(fBuff); in compress()
|