HomeSort by relevance Sort by last modified time
    Searched defs:EmitData (Results 1 - 12 of 12) sorted by null

  /external/vixl/src/
code-buffer-vixl.cc 122 void CodeBuffer::EmitData(const void* data, size_t size) {
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 206 void DwarfAccelTable::EmitData(AsmPrinter *Asm, DwarfDebug *D) {
258 EmitData(Asm, D);
  /external/llvm/include/llvm/Transforms/
Instrumentation.h 58 bool EmitData;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/
Instrumentation.h 47 bool EmitData;
  /external/v8/tools/
bigint-tester.py 92 def EmitData(self, count):
103 print(self.EmitData(count))
110 f.write(self.EmitData(count))
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 121 void EmitData(raw_ostream &Out, key_type_ref, data_type_ref V, offset_type) {
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SubtargetEmitter.cpp 563 // EmitData - Emits all stages and itineries, folding common patterns.
565 void SubtargetEmitter::EmitData(raw_ostream &OS) {
664 EmitData(OS);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfWriter.cpp 140 void EmitData(raw_ostream &Out, key_type_ref, data_type_ref V, offset_type) {
  /external/clang/lib/Frontend/
CacheTokens.cpp 83 void EmitData(raw_ostream& Out) {
151 static void EmitData(raw_ostream& Out, PTHEntryKeyVariant V,
164 V.EmitData(Out);
640 static void EmitData(raw_ostream& Out, PTHIdKey*, uint32_t pID,
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 679 void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data,
ASTWriter.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 46 : ModulePass(ID), EmitNotes(true), EmitData(true), Use402Format(false) {
49 GCOVProfiler(bool EmitNotes, bool EmitData, bool use402Format = false)
50 : ModulePass(ID), EmitNotes(EmitNotes), EmitData(EmitData),
52 assert((EmitNotes || EmitData) && "GCOVProfiler asked to do nothing?");
95 bool EmitData;
107 ModulePass *llvm::createGCOVProfilerPass(bool EmitNotes, bool EmitData,
109 return new GCOVProfiler(EmitNotes, EmitData, Use402Format);
348 if (EmitData) return emitProfileArcs();

Completed in 328 milliseconds