HomeSort by relevance Sort by last modified time
    Searched refs:OS (Results 151 - 175 of 1056) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/Support/
raw_ostream.cpp 702 OS.append(Ptr, Size);
715 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
720 OS.reserve(OS.size() + 128);
721 SetBuffer(OS.end(), OS.capacity() - OS.size());
735 if (OS.capacity() - OS.size() < 64)
736 OS.reserve(OS.capacity() * 2)
    [all...]
  /external/v8/src/
platform-posix.cc 30 // Mac OS, FreeBSD and OpenBSD.
68 intptr_t OS::MaxVirtualMemory() {
76 intptr_t OS::CommitPageSize() {
84 void OS::ProtectCode(void* address, const size_t size) {
90 void OS::Guard(void* address, const size_t size) {
96 void* OS::GetRandomMmapAddr() {
159 double OS::nan_value() {
169 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
179 double OS::TimeCurrentMillis() {
187 int64_t OS::Ticks()
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
MachineStackMarker.cpp 37 #if OS(DARWIN)
45 #elif OS(WINDOWS)
50 #elif OS(HAIKU)
52 #include <OS.h>
54 #elif OS(UNIX)
57 #if !OS(HAIKU)
62 #if OS(SOLARIS)
72 #if OS(QNX)
79 #if USE(PTHREADS) && !OS(WINDOWS) && !OS(DARWIN
    [all...]
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 72 raw_ostream &OS);
74 raw_ostream &OS);
80 raw_ostream &OS;
83 PrintTransforms(raw_ostream &OS)
84 : Ctx(0), OS(OS) { }
91 OS << "Insert: ";
92 printSourceLocation(loc, *Ctx, OS);
93 OS << " \"" << text << "\"\n";
98 OS << "Remove: "
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 1007 void DIDescriptor::print(raw_ostream &OS) const {
1011 OS << "[ " << Tag << " ]";
1014 DISubrange(DbgNode).printInternal(OS);
1016 DICompileUnit(DbgNode).printInternal(OS);
1018 DIFile(DbgNode).printInternal(OS);
1020 DIEnumerator(DbgNode).printInternal(OS);
1022 DIType(DbgNode).printInternal(OS);
1024 DIDerivedType(DbgNode).printInternal(OS);
1026 DICompositeType(DbgNode).printInternal(OS);
1028 DISubprogram(DbgNode).printInternal(OS);
    [all...]
  /external/qemu/android/build/
common.sh 59 ## Normalize OS and CPU
83 OS=`uname -s`
84 case "$OS" in
86 OS=darwin-$CPU
90 OS=linux-$CPU
93 OS=freebsd-$CPU
96 OS=windows
99 OS=cygwin
106 log2 "OS=$OS"
    [all...]
  /external/bison/lib/
stdbool.in.h 64 # include <OS.h> /* defines bool but not _Bool */
  /external/clang/examples/PrintFunctionNames/
Makefile 26 ifeq ($(OS),Darwin)
  /external/clang/include/clang/Basic/
PrettyStackTrace.h 34 virtual void print(raw_ostream &OS) const;
  /external/clang/include/clang/CodeGen/
BackendUtil.h 37 BackendAction Action, raw_ostream *OS);
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefResultChecker.cpp 52 llvm::raw_svector_ostream OS(sbuf);
66 OS << "The " << (isLeft ? "left" : "right")
73 OS << "The result of the '"
77 BugReport *report = new BugReport(*BT, OS.str(), N);
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 64 inline raw_ostream &operator<<(raw_ostream &OS,
66 V.print(OS);
67 return OS;
166 void print(raw_ostream &OS) const;
  /external/llvm/include/llvm/MC/
MCCodeEmitter.h 36 /// stream \p OS.
37 virtual void EncodeInstruction(const MCInst &Inst, raw_ostream &OS,
MCSymbol.h 152 /// print - Print the value to the stream \p OS.
153 void print(raw_ostream &OS) const;
159 inline raw_ostream &operator<<(raw_ostream &OS, const MCSymbol &Sym) {
160 Sym.print(OS);
161 return OS;
  /external/llvm/lib/Target/NVPTX/
NVPTXSection.h 35 raw_ostream &OS) const {}
  /external/v8/test/cctest/
test-lock.cc 18 Mutex* mutex = OS::CreateMutex();
26 Mutex* mutex = OS::CreateMutex();
34 Mutex* mutex = OS::CreateMutex();
45 Semaphore* sem = OS::CreateSemaphore(0);
  /external/valgrind/main/tests/
os_test.c 6 // This program determines which OS that this Valgrind installation
10 // - 0 if the machine matches the asked-for OS and satisfies a
12 // - 1 if it doesn't match but does match the name of another OS
13 // - 2 if it doesn't match the name of any OS
16 // Nb: When updating this file for a new OS, add the name to
57 static Bool go(char* OS, char *min_version)
60 if ( 0 == strcmp( OS, "linux" ) && matches_version( min_version )) return True;
63 if ( 0 == strcmp( OS, "darwin" ) ) return True;
66 # error Unknown OS
79 fprintf( stderr, "usage: os_test <OS-type> [<min-version>]\n" )
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocator.cpp 40 #if OS(SYMBIAN) && CPU(ARMV5_OR_LOWER)
42 // on Symbian OS limits the number of chunks for each process to 16.
84 #if OS(WINDOWS) || OS(SYMBIAN)
109 #if CPU(ARM_TRADITIONAL) && OS(LINUX) && COMPILER(RVCT)
  /external/webkit/Source/JavaScriptCore/wtf/
ExportMacros.h 35 #if !PLATFORM(CHROMIUM) && OS(WINDOWS) && !COMPILER(GCC)
UnusedParam.h 29 #if COMPILER(INTEL) && !OS(WINDOWS) || COMPILER(RVCT)
  /external/webkit/Source/WebCore/dom/
DOMTextContentWalker.h 28 #if OS(ANDROID)
57 #endif // OS(ANDROID)
  /external/webkit/Source/WebCore/platform/chromium/
ClipboardUtilitiesChromium.cpp 39 #if OS(WINDOWS)
  /external/webkit/Source/WebCore/platform/graphics/win/
GDIExtras.cpp 32 #if OS(WINCE)
  /external/webkit/Source/WebCore/platform/win/
EditorWin.cpp 45 #if !OS(WINCE)
  /external/clang/lib/AST/
DeclarationName.cpp 182 llvm::raw_string_ostream OS(Result);
183 printName(OS);
184 return OS.str();
187 void DeclarationName::printName(raw_ostream &OS) const {
191 OS << II->getName();
197 OS << getObjCSelector().getAsString();
203 OS << *ClassRec->getDecl();
205 OS << ClassType.getAsString();
210 OS << '~';
213 OS << *Rec->getDecl()
    [all...]

Completed in 3282 milliseconds

1 2 3 4 5 67 8 91011>>