/prebuilts/ndk/r11/platforms/android-18/arch-x86/usr/include/asm/ |
io_32.h | 31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d"(port)); }
|
/prebuilts/ndk/r11/platforms/android-19/arch-x86/usr/include/asm/ |
io_32.h | 31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d"(port)); }
|
/prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/asm/ |
io_32.h | 31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d"(port)); }
|
/external/curl/src/ |
tool_writeout.c | 107 void ourWriteOut(CURL *curl, struct OutStruct *outs, const char *writeinfo) 266 if(outs->filename) 267 fprintf(stream, "%s", outs->filename);
|
tool_metalink.c | 788 int parse_metalink(struct OperationConfig *config, struct OutStruct *outs, 796 /* metlaink_parse_final deletes outs->metalink_parser */ 797 r = metalink_parse_final(outs->metalink_parser, NULL, 0, &metalink); 798 outs->metalink_parser = NULL; 868 struct OutStruct *outs = userdata; local 869 struct OperationConfig *config = outs->config; 883 rv = metalink_parse_update(outs->metalink_parser, buffer, sz *nmemb);
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
Path.cpp | 100 outs() << " Reverse Iteration: ["; 105 outs() << *ci << ','; 107 outs() << "]\n";
|
/prebuilts/go/darwin-x86/src/strconv/ |
atof_test.go | 268 outs := FormatFloat(out, 'g', -1, 64) 269 if outs != test.out || !reflect.DeepEqual(err, test.err) { 281 outs := FormatFloat(float64(out32), 'g', -1, 32) 282 if outs != test.out || !reflect.DeepEqual(err, test.err) { 295 outs := FormatFloat(float64(out32), 'g', -1, 32) 296 if outs != test.out || !reflect.DeepEqual(err, test.err) {
|
/prebuilts/go/linux-x86/src/strconv/ |
atof_test.go | 268 outs := FormatFloat(out, 'g', -1, 64) 269 if outs != test.out || !reflect.DeepEqual(err, test.err) { 281 outs := FormatFloat(float64(out32), 'g', -1, 32) 282 if outs != test.out || !reflect.DeepEqual(err, test.err) { 295 outs := FormatFloat(float64(out32), 'g', -1, 32) 296 if outs != test.out || !reflect.DeepEqual(err, test.err) {
|
/development/vndk/tools/vtable-dumper/ |
elf_handling.cpp | 45 using llvm::outs; 106 outs() << "Couldn't create elf shdr \n"; 133 outs() << Vtable.getDemangledName() 141 outs() << Vfunction.getOffset() 146 outs() << "\n"
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
ExtractFunction.cpp | 138 outs() << "*** Loop extraction failed: ";
140 outs() << "*** Sorry. :( Please report a bug!\n";
321 outs() << "*** Basic Block extraction failed!\n";
331 outs() << "*** Basic Block extraction failed!\n";
366 outs() << "*** Basic Block extraction failed, please report a bug!\n";
|
/external/clang/unittests/Tooling/ |
RewriterTestContext.h | 41 DiagnosticPrinter(llvm::outs(), &*DiagOpts),
|
/external/llvm/examples/Fibonacci/ |
fibonacci.cpp | 146 outs() << "Result: " << GV.IntVal << "\n";
|
/external/llvm/tools/bugpoint/ |
ExtractFunction.cpp | 160 outs() << "*** Loop extraction failed: "; 162 outs() << "*** Sorry. :( Please report a bug!\n"; 382 outs() << "*** Basic Block extraction failed!\n"; 419 outs() << "*** Basic Block extraction failed, please report a bug!\n";
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
nv50_ir_print.cpp | 705 if (!fn->outs.empty()) 707 for (std::deque<ValueRef>::iterator it = fn->outs.begin(); 708 it != fn->outs.end(); 715 INFO("%s%sin", colour[TXT_DEFAULT], fn->outs.empty() ? "" : ", ");
|
/external/swiftshader/third_party/LLVM/examples/Fibonacci/ |
fibonacci.cpp | 134 outs() << "Result: " << GV.IntVal << "\n";
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
TargetRegistry.cpp | 113 raw_ostream &OS = outs();
|
/external/syslinux/gpxe/src/arch/i386/include/gpxe/ |
x86_io.h | 120 IOAPI_INLINE ( x86, outs ## _insn_suffix ) ( volatile _type *io_addr, \ 124 __asm__ __volatile__ ( "rep outs" #_insn_suffix \
|
/external/clang/lib/FrontendTool/ |
ExecuteCompilerInvocation.cpp | 175 Opts->PrintHelp(llvm::outs(), "clang -cc1", 229 ento::printCheckerHelp(llvm::outs(), Clang->getFrontendOpts().Plugins);
|
/external/llvm/tools/llvm-cov/ |
SourceCoverageView.cpp | 26 if (OS == &outs()) 57 return OwnedStream(&outs());
|
/frameworks/compile/slang/ |
llvm-rs-cc.cpp | 192 llvm::raw_ostream &OS = llvm::outs(); 243 OptTbl->PrintHelp(llvm::outs(), Argv0.c_str(),
|
/external/v8/tools/clang/rewrite_to_chrome_style/ |
RewriteToChromeStyle.cpp | [all...] |
/external/v8/tools/clang/rewrite_scoped_refptr/ |
RewriteScopedRefptr.cpp | 429 llvm::outs() << "==== BEGIN EDITS ====\n"; 433 llvm::outs() << "r:::" << r.getFilePath() << ":::" << r.getOffset() << ":::" 436 llvm::outs() << "==== END EDITS ====\n";
|
/external/clang/lib/Frontend/ |
HeaderIncludeGen.cpp | 83 raw_ostream *OutputFile = MSStyle ? &llvm::outs() : &llvm::errs();
|
/external/clang/tools/clang-check/ |
ClangCheck.cpp | 145 return clang::CreateASTPrinter(&llvm::outs(), ASTDumpFilter);
|
/external/llvm/lib/Support/ |
TargetRegistry.cpp | 127 raw_ostream &OS = outs();
|