Searched defs:fileBuf (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddcfmtest.cpp439 char *fileBuf = NULL; local
466 fileBuf = new char[fileSize];
468 amtRead = fread(fileBuf, 1, fileSize, f);
481 fileBufNoBOM = fileBuf + 3;
483 if (fileSize<3 || uprv_strncmp(fileBuf, "\xEF\xBB\xBF", 3) != 0) {
486 fileBufNoBOM = fileBuf;
508 delete[] fileBuf;
H A Dregextst.cpp3645 char *fileBuf = NULL; local
3671 fileBuf = new char[fileSize];
3673 amt_read = fread(fileBuf, 1, fileSize, f);
3686 fileBufC = fileBuf;
3688 fileBuf, fileSize, &signatureLength, &status);
3732 delete[] fileBuf;
H A Drbbitst.cpp2442 char *fileBuf = NULL; local
2468 fileBuf = new char[fileSize];
2470 amt_read = fread(fileBuf, 1, fileSize, f);
2483 fileBufC = fileBuf;
2485 fileBuf, fileSize, &signatureLength, &status);
2525 delete []fileBuf;
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp68 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> fileBuf = local
70 if (!fileBuf)
74 fileBuf.get()->getBuffer().split(lines, "\n");
/external/icu/icu4c/source/test/intltest/
H A Ddcfmtest.cpp472 char *fileBuf = NULL; local
499 fileBuf = new char[fileSize];
501 amtRead = fread(fileBuf, 1, fileSize, f);
514 fileBufNoBOM = fileBuf + 3;
516 if (fileSize<3 || uprv_strncmp(fileBuf, "\xEF\xBB\xBF", 3) != 0) {
519 fileBufNoBOM = fileBuf;
541 delete[] fileBuf;
H A Dregextst.cpp3803 char *fileBuf = NULL; local
3829 fileBuf = new char[fileSize];
3831 amt_read = fread(fileBuf, 1, fileSize, f);
3844 fileBufC = fileBuf;
3846 fileBuf, fileSize, &signatureLength, &status);
3890 delete[] fileBuf;
H A Drbbitst.cpp1430 char *fileBuf = NULL; local
1456 fileBuf = new char[fileSize];
1458 amt_read = fread(fileBuf, 1, fileSize, f);
1471 fileBufC = fileBuf;
1473 fileBuf, fileSize, &signatureLength, &status);
1513 delete []fileBuf;
/external/chromium_org/third_party/webrtc/modules/audio_device/test/
H A Dfunc_test_manager.cc424 int16_t fileBuf[480]; local
427 int32_t len = _playFile.Read((int8_t*) fileBuf, 2
432 _playFile.Read((int8_t*) fileBuf, 2 * nSamples);
438 memcpy(audioSamples, fileBuf, 2 * nSamples);
446 (*audio16) = fileBuf[i]; // left
448 (*audio16) = fileBuf[i]; // right

Completed in 327 milliseconds