Searched
refs:OS (Results
501 -
525 of
855) sorted by null
<<21222324252627282930>>
/external/llvm/lib/Analysis/ |
BranchProbabilityInfo.cpp | 354 BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS, BasicBlock *Src, 358 OS << "edge " << Src->getNameStr() << " -> " << Dst->getNameStr() 362 return OS;
|
/external/llvm/lib/MC/ |
SubtargetFeature.cpp | 367 void SubtargetFeatures::print(raw_ostream &OS) const { 369 OS << Features[i] << " "; 370 OS << "\n";
|
WinCOFFObjectWriter.cpp | 142 WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit); 316 WinCOFFObjectWriter::WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) 317 : MCObjectWriter(OS, true) 849 assert(OS.tell() == (*i)->Header.PointerToRawData && 856 assert(OS.tell() == (*i)->Header.PointerToRelocations && 870 assert(OS.tell() == Header.PointerToSymbolTable && 877 OS.write((char const *)&Strings.Data.front(), Strings.Data.size()); 884 MCObjectWriter *createWinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) { 885 return new WinCOFFObjectWriter(OS, is64Bit);
|
/external/llvm/tools/bugpoint/ |
ToolRunner.cpp | 116 std::ostringstream OS; 117 OS << "\nError running remote client:\n "; 119 OS << " " << *Arg; 120 OS << "\n"; 127 std::ostreambuf_iterator<char>(OS)); 131 errs() << OS; 140 std::ostringstream OS; 141 OS << "\nError running tool:\n "; 143 OS << " " << *Arg; 144 OS << "\n" [all...] |
/external/llvm/utils/TableGen/ |
SetTheory.cpp | 175 raw_string_ostream OS(Name); 176 OS << format(Format.c_str(), unsigned(From)); 177 Record *Rec = Records.getDef(OS.str());
|
NeonEmitter.h | 171 void emitIntrinsic(raw_ostream &OS, Record *R);
|
Record.h | 73 void print(raw_ostream &OS) const { OS << getAsString(); } 124 inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) { 125 Ty.print(OS); 126 return OS; 495 void print(raw_ostream &OS) const { OS << getAsString(); } 553 inline raw_ostream &operator<<(raw_ostream &OS, const Init &I) { 554 I.print(OS); return OS; [all...] |
/external/v8/src/ |
runtime-profiler.cc | 60 int Delay() const { return static_cast<int>(OS::Ticks() - start_); } 92 start_ = OS::Ticks(); 114 Semaphore* RuntimeProfiler::semaphore_ = OS::CreateSemaphore(0);
|
spaces-inl.h | 384 OS::Protect(start, size); 391 OS::Unprotect(start, size, executable); 397 OS::Protect(chunks_[id].address(), chunks_[id].size()); 403 OS::Unprotect(chunks_[id].address(), chunks_[id].size(),
|
/external/v8/test/cctest/ |
test-conversions.cc | 101 CHECK(isnan(StringToDouble(&uc, " ", NO_FLAGS, OS::nan_value()))); 102 CHECK(isnan(StringToDouble(&uc, "", NO_FLAGS, OS::nan_value()))); 103 CHECK(isnan(StringToDouble(&uc, " ", NO_FLAGS, OS::nan_value())));
|
test-double.cc | 82 CHECK(Double(OS::nan_value()).IsSpecial()); 105 CHECK(!Double(OS::nan_value()).IsInfinite()); 116 CHECK(Double(OS::nan_value()).IsNan());
|
test-spaces.cc | 121 OS::Setup(); 187 OS::Setup(); 220 OS::Setup();
|
/external/webkit/Source/WebCore/plugins/ |
PluginPackage.cpp | 119 #if !OS(SYMBIAN) 132 #endif // !OS(SYMBIAN) 234 #if !OS(WINDOWS) 365 #if OS(WINDOWS)
|
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
TextureMapperGL.cpp | 32 #elif OS(MAC_OS_X) 36 #if OS(UNIX) 72 #if !OS(MAC_OS_X) 213 #if OS(MAC_OS_X) 215 #elif OS(UNIX) 550 #if OS(MAC_OS_X) 552 #elif OS(UNIX) 562 #if OS(MAC_OS_X) 564 #elif OS(UNIX)
|
/external/clang/lib/Basic/ |
IdentifierTable.cpp | 346 llvm::raw_svector_ostream OS(Str); 349 OS << (*I)->getName(); 350 OS << ':'; 353 return OS.str();
|
/external/icu4c/ |
runConfigureICU | 40 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400 51 zOS Use the IBM cxx compiler on z/OS (os/390) 52 zOSV1R2 Use the IBM cxx compiler for z/OS 1.2 300 THE_OS="z/OS (OS/390)" 301 THE_COMP="z/OS C/C++" 308 THE_OS="z/OS 1.2" 309 THE_COMP="z/OS 1.2 C/C++ [all...] |
/external/llvm/include/llvm/Analysis/ |
IVUsers.h | 167 void print(raw_ostream &OS, const Module* = 0) const;
|
/external/llvm/include/llvm/CodeGen/ |
LiveInterval.h | 180 void print(raw_ostream &os) const; 188 raw_ostream& operator<<(raw_ostream& os, const LiveRange &LR); 524 void print(raw_ostream &OS, const TargetRegisterInfo *TRI = 0) const; 538 inline raw_ostream &operator<<(raw_ostream &OS, const LiveInterval &LI) { 539 LI.print(OS); 540 return OS;
|
/external/llvm/lib/Analysis/IPA/ |
CallGraphSCCPass.cpp | 383 raw_string_ostream OS(Functions); 386 if (I != CurSCC.begin()) OS << ", "; 387 (*I)->print(OS); 389 OS.flush();
|
/external/llvm/lib/Target/ARM/ |
ARMAsmBackend.cpp | 391 MCObjectWriter *createObjectWriter(raw_ostream &OS) const { 392 return createELFObjectWriter(new ARMELFObjectWriter(OSType), OS, 420 MCObjectWriter *createObjectWriter(raw_ostream &OS) const { 421 return createARMMachObjectWriter(OS, /*Is64Bit=*/false,
|
/external/srec/portable/include/ |
ptrd.h | 54 #error Portable Synchronization not defined for this OS! 55 #endif /* os dependant basic types */ 245 * resources from the OS. In situations where this mechanism is not required,
|
/external/v8/src/x64/ |
codegen-x64.cc | 57 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
|
/external/webkit/Source/WebCore/platform/graphics/ |
Path.h | 59 #elif OS(WINCE)
|
/external/webkit/Source/WebCore/platform/graphics/transforms/ |
TransformationMatrix.h | 51 #if PLATFORM(WIN) || (PLATFORM(QT) && OS(WINDOWS)) || (PLATFORM(WX) && OS(WINDOWS)) 330 #if PLATFORM(WIN) || (PLATFORM(QT) && OS(WINDOWS)) || (PLATFORM(WX) && OS(WINDOWS))
|
/external/webkit/Source/WebCore/platform/network/ |
ResourceResponseBase.h | 38 #if OS(SOLARIS)
|
Completed in 906 milliseconds
<<21222324252627282930>>