Home
last modified time | relevance | path

Searched refs:RIFF (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DRIFF.cpp49 auto RIFF = readChunk(Stream); in readFile() local
50 if (!RIFF) in readFile()
51 return RIFF.takeError(); in readFile()
52 if (RIFF->ID != fourCC("RIFF")) in readFile()
53 return error("not a RIFF container: root is {0}", fourCCStr(RIFF->ID)); in readFile()
54 if (RIFF->Data.size() < 4) in readFile()
57 std::copy(RIFF->Data.begin(), RIFF->Data.begin() + 4, F.Type.begin()); in readFile()
58 for (llvm::StringRef Body = RIFF->Data.drop_front(4); !Body.empty();) in readFile()
DCMakeLists.txt78 RIFF.cpp
/external/oboe/samples/parselib/
DREADME.md31 …s are "Microsoft Resource Interchange File Format" (RIFF) files. WAV files contain a variety of RI…
38 Support for **RIFF** file types and managing FOURCC data.
46 Defines common fields and operations for all WAV format RIFF Chunks.
49 Defines fields and operations for RIFF '`fmt `' chunks
52 Defines fields and operations for RIFF '`data`' chunks
/external/llvm-project/clang-tools-extra/clangd/index/
DSerialization.cpp458 auto RIFF = riff::readFile(Data); in readRIFF() local
459 if (!RIFF) in readRIFF()
460 return RIFF.takeError(); in readRIFF()
461 if (RIFF->Type != riff::fourCC("CdIx")) in readRIFF()
462 return error("wrong RIFF filetype: {0}", riff::fourCCStr(RIFF->Type)); in readRIFF()
464 for (const auto &Chunk : RIFF->Chunks) in readRIFF()
556 riff::File RIFF; in writeRIFF() local
557 RIFF.Type = riff::fourCC("CdIx"); in writeRIFF()
564 RIFF.Chunks.push_back({riff::fourCC("meta"), Meta}); in writeRIFF()
617 RIFF.Chunks.push_back({riff::fourCC("stri"), StringSection}); in writeRIFF()
[all …]
DSerialization.h37 RIFF, // Versioned binary format, suitable for production use. enumerator
62 IndexFileFormat Format = IndexFileFormat::RIFF;
/external/llvm-project/clang-tools-extra/clangd/unittests/
DSerializationTests.cpp220 Out.Format = IndexFileFormat::RIFF; in TEST()
253 Out.Format = IndexFileFormat::RIFF; in TEST()
290 Out.Format = IndexFileFormat::RIFF; in TEST()
346 Out.Format = IndexFileFormat::RIFF; in TEST()
401 Out.Format = IndexFileFormat::RIFF; in TEST()
/external/llvm-project/clang-tools-extra/clangd/indexer/
DIndexerMain.cpp35 clEnumValN(IndexFileFormat::RIFF, "binary",
37 llvm::cl::init(IndexFileFormat::RIFF));
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/
Ddecode_wav.dict1 header_RIFF="RIFF"
/external/webp/tests/fuzzer/
Dfuzz.dict9 "RIFF"
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clangd/
DBUILD.gn101 "RIFF.cpp",
/external/llvm-project/clang-tools-extra/clangd/index/dex/dexp/
DDexp.cpp277 clEnumValN(IndexFileFormat::RIFF, "binary", "binary RIFF format")),
/external/python/cpython2/Misc/
DHISTORY15654 * New module Lib/wave.py reads RIFF (*.wav) audio files.
/external/python/cpython3/Misc/
DHISTORY33033 * New module Lib/wave.py reads RIFF (*.wav) audio files.