Home
last modified time | relevance | path

Searched refs:pFile (Results 1 – 17 of 17) sorted by relevance

/third_party/openh264/codec/encoder/plus/src/
DwelsEncoderExt.cpp1312 FILE* pFile = NULL; in DumpSrcPicture() local
1322 pFile = WelsFopen (strFileName, "ab+"); in DumpSrcPicture()
1324 if (NULL != pFile) { in DumpSrcPicture()
1325 fwrite (pSrcPic->pData[0], sizeof (uint8_t), pSrcPic->iStride[0]*m_iMaxPicHeight, pFile); in DumpSrcPicture()
1326 … fwrite (pSrcPic->pData[1], sizeof (uint8_t), pSrcPic->iStride[1] * (m_iMaxPicHeight >> 1), pFile); in DumpSrcPicture()
1327 … fwrite (pSrcPic->pData[2], sizeof (uint8_t), pSrcPic->iStride[2] * (m_iMaxPicHeight >> 1), pFile); in DumpSrcPicture()
1328 fflush (pFile); in DumpSrcPicture()
1329 fclose (pFile); in DumpSrcPicture()
1336 pFile = WelsFopen (strFileName, "ab+"); in DumpSrcPicture()
1337 if (NULL != pFile) { in DumpSrcPicture()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/minizip/
Dminizip.c228 FILE* pFile = FOPEN_FUNC(filename, "rb"); in isLargeFile() local
230 if(pFile != NULL) in isLargeFile()
232 int n = FSEEKO_FUNC(pFile, 0, SEEK_END); in isLargeFile()
233 pos = FTELLO_FUNC(pFile); in isLargeFile()
240 fclose(pFile); in isLargeFile()
/third_party/skia/third_party/externals/zlib/contrib/minizip/
Dminizip.c228 FILE* pFile = FOPEN_FUNC(filename, "rb"); in isLargeFile() local
230 if(pFile != NULL) in isLargeFile()
232 int n = FSEEKO_FUNC(pFile, 0, SEEK_END); in isLargeFile()
233 pos = FTELLO_FUNC(pFile); in isLargeFile()
240 fclose(pFile); in isLargeFile()
/third_party/flutter/skia/third_party/externals/zlib/contrib/minizip/
Dminizip.c228 FILE* pFile = FOPEN_FUNC(filename, "rb"); in isLargeFile() local
230 if(pFile != NULL) in isLargeFile()
232 int n = FSEEKO_FUNC(pFile, 0, SEEK_END); in isLargeFile()
233 pos = FTELLO_FUNC(pFile); in isLargeFile()
240 fclose(pFile); in isLargeFile()
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/minizip/
Dminizip.c228 FILE* pFile = FOPEN_FUNC(filename, "rb"); in isLargeFile() local
230 if(pFile != NULL) in isLargeFile()
232 int n = FSEEKO_FUNC(pFile, 0, SEEK_END); in isLargeFile()
233 pos = FTELLO_FUNC(pFile); in isLargeFile()
240 fclose(pFile); in isLargeFile()
/third_party/zlib/contrib/minizip/
Dminizip.c229 FILE* pFile = FOPEN_FUNC(filename, "rb"); in isLargeFile() local
231 if(pFile != NULL) in isLargeFile()
233 FSEEKO_FUNC(pFile, 0, SEEK_END); in isLargeFile()
234 pos = (ZPOS64_T)FTELLO_FUNC(pFile); in isLargeFile()
241 fclose(pFile); in isLargeFile()
/third_party/flutter/skia/third_party/externals/sdl/src/
DSDL_log.c408 FILE* pFile; in SDL_LogOutput()
409 pFile = fopen ("SDL_Log.txt", "a"); in SDL_LogOutput()
410 fprintf(pFile, "%s: %s\n", SDL_priority_prefixes[priority], message); in SDL_LogOutput()
411 fclose (pFile); in SDL_LogOutput()
/third_party/openh264/codec/console/dec/inc/
Dd3d9_utils.h73 HRESULT Process (void* pDst[3], SBufferInfo* Info, FILE* pFile = NULL);
78 HRESULT Dump (void* pDst[3], SBufferInfo* pInfo, FILE* pFile);
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/templates/
Dgen_llvm.hpp68 …llvm::DIFile* pFile = builder.createFile("${input_file}", "${os.path.normpath(input_dir).replace('… variable
76 …pJitMgr->CreateDebugStructType(pRetType, "${type['name']}", pFile, ${type['lineNum']}, dbgMembers);
/third_party/sqlite/src/
Dshell.c3914 static int apndClose(sqlite3_file *pFile){ in apndClose() argument
3915 pFile = ORIGFILE(pFile); in apndClose()
3916 return pFile->pMethods->xClose(pFile); in apndClose()
3923 sqlite3_file *pFile, in apndRead() argument
3928 ApndFile *paf = (ApndFile *)pFile; in apndRead()
3929 pFile = ORIGFILE(pFile); in apndRead()
3930 return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst); in apndRead()
3940 sqlite3_file *pFile, in apndWriteMark() argument
3947 assert(pFile == ORIGFILE(paf)); in apndWriteMark()
3954 if( SQLITE_OK==(rc = pFile->pMethods->xWrite in apndWriteMark()
[all …]
Dsqlite3.c24228 sqlite3_file *pFile,
24238 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut);
24239 assert( rc==SQLITE_OK || pFile->pMethods==0 );
24325 sqlite3_file *pFile;
24326 pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile);
24327 if( pFile ){
24328 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
24330 sqlite3_free(pFile);
24333 *ppFile = pFile;
24342 SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){
[all …]
/third_party/jerryscript/jerry-core/api/
Dgenerate-bytecode.c81 const char* pFile; in is_template_file() local
82 pFile = strrchr(filename, '.'); in is_template_file()
83 if ((pFile != NULL) && (strcmp(pFile, template) == 0)) { in is_template_file()
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp227 DIFile* pFile, in CreateDebugStructType() argument
238 DICompositeType* pDIStructTy = builder.createStructType(pFile, in CreateDebugStructType()
240 pFile, in CreateDebugStructType()
261 pDIStructTy, name, pFile, lineNum, size, alignment, offset, flags, pDebugTy)); in CreateDebugStructType()
DJitManager.h198 llvm::DIFile* pFile,
/third_party/openh264/test/api/
Dencode_options_test.cpp1359 FILE* pFile = NULL; in TEST_P() local
1361 pFile = fopen (p.sFileSave, "wb"); in TEST_P()
1401 if (pFile) { in TEST_P()
1402 fwrite (info.sLayerInfo[0].pBsBuf, iLen, 1, pFile); in TEST_P()
1403 fflush (pFile); in TEST_P()
1428 if (pFile) { in TEST_P()
1429 fclose (pFile); in TEST_P()
/third_party/glslang/StandAlone/
DStandAlone.cpp1708 FILE** pFile, in fopen_s() argument
1713 if (!pFile || !filename || !mode) { in fopen_s()
1725 *pFile = f; in fopen_s()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch82520 -static int apndClose(sqlite3_file *pFile){
82521 - pFile = ORIGFILE(pFile);
82522 - return pFile->pMethods->xClose(pFile);
82539 - sqlite3_file *pFile,
82544 - ApndFile *paf = (ApndFile *)pFile;
82545 - pFile = ORIGFILE(pFile);
82546 - return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst);
82579 - sqlite3_file *pFile,
82590 - assert(pFile == ORIGFILE(paf));
82604 - if( SQLITE_OK==(rc = pFile->pMethods->xWrite
[all …]