Home
last modified time | relevance | path

Searched refs:filePtr (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/isac/main/util/
Dutility.h21 #define OPEN_FILE_WB(filePtr, fullPath) \ argument
24 filePtr = fopen(fullPath, "wb"); \
25 if (filePtr == NULL) { \
30 filePtr = NULL; \
34 #define OPEN_FILE_AB(filePtr, fullPath) \ argument
37 filePtr = fopen(fullPath, "ab"); \
38 if (filePtr == NULL) { \
43 filePtr = NULL; \
47 #define OPEN_FILE_RB(filePtr, fullPath) \ argument
50 filePtr = fopen(fullPath, "rb"); \
[all …]
/external/icu/icu4c/source/test/perf/ubrkperf/
Dubrkperf.cpp94 UniChar* filePtr = text;
102 status = UCFindTextBreak(breakRef, macBreakType, kUCTextBreakLeadingEdgeMask, filePtr, numUniChars,
120 …status = UCFindTextBreak(breakRef, macBreakType, kUCTextBreakLeadingEdgeMask, filePtr, numUniChars,
Dubrkperfold.cpp319 UniChar* filePtr = text; in doForwardTest() local
327 status = UCFindTextBreak(breakRef, macBreakType, kUCTextBreakLeadingEdgeMask, filePtr, numUniChars, in doForwardTest()
345 …status = UCFindTextBreak(breakRef, macBreakType, kUCTextBreakLeadingEdgeMask, filePtr, numUniChars, in doForwardTest()
/external/sonivox/test/
DSonivoxTest.cpp247 FILE *filePtr = fopen(OUTPUT_FILE, "wb"); in TEST_P() local
248 ASSERT_NE(filePtr, nullptr) << "Failed to open file: " << OUTPUT_FILE; in TEST_P()
281 int32_t numBytes = fwrite(mPCMBuffer, 1, numBytesOutput, filePtr); in TEST_P()
285 fclose(filePtr); in TEST_P()
/external/llvm-project/lld/include/lld/ReaderWriter/
DMachOLinkingContext.h102 auto *filePtr = file.get(); in make_file() local
105 return filePtr; in make_file()