/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/asm/ |
io.h | 94 #define __BUILD_IOPORT_STRING(bwlq, type) static inline void outs##bwlq(unsigned long port, const void *addr, unsigned int count) { const volatile type *__addr = addr; while (count--) { __mem_out##bwlq(*__addr, port); __addr++; } } static inline void ins##bwlq(unsigned long port, void *addr, unsigned int count) { volatile type *__addr = addr; while (count--) { *__addr = __mem_in##bwlq(port); __addr++; } }
|
/external/llvm/tools/dsymutil/ |
DwarfLinker.cpp | [all...] |
MachOUtils.cpp | 95 outs() << "Running lipo\n"; 97 outs() << ' ' << ((Arg == nullptr) ? "\n" : Arg);
|
MachODebugMapParser.cpp | 272 raw_ostream &OS(llvm::outs());
|
/prebuilts/go/darwin-x86/src/cmd/fix/ |
typecheck.go | 621 outs := "" 623 outs = " " + out[0] 625 outs = " (" + join(out) + ")" 627 return "func(" + join(in) + ")" + outs
|
/prebuilts/go/linux-x86/src/cmd/fix/ |
typecheck.go | 621 outs := "" 623 outs = " " + out[0] 625 outs = " (" + join(out) + ")" 627 return "func(" + join(in) + ")" + outs
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
intelbad.s | 64 outs dx, [esi]
|
intel.s | 105 outs dx, byte ptr ds:[esi] 106 outs dx, dword ptr ds:[esi] 472 outs dx, word ptr ds:[esi]
|
opcode-intel.d | 112 *[0-9a-f]+: 6e[ ]+outs[ ]+dx,BYTE PTR ds:\[esi\] 113 *[0-9a-f]+: 6f[ ]+outs[ ]+dx,DWORD PTR ds:\[esi\] 477 *[0-9a-f]+: 66 6f[ ]+outs[ ]+dx,WORD PTR ds:\[esi\] [all...] |
/external/valgrind/helgrind/ |
hg_main.c | 3481 WordSetID outs; \/* in univ_laog *\/ member in struct:__anon26746 [all...] |
/frameworks/compile/mclinker/tools/mcld/ |
Main.cpp | 273 mcld::outs().setColor(res); [all...] |
/external/llvm/tools/llvm-config/ |
llvm-config.cpp | 420 raw_ostream &OS = outs();
|
/frameworks/compile/libbcc/tools/bcc/ |
Main.cpp | 151 llvm::raw_ostream &os = llvm::outs();
|
/external/clang/lib/Frontend/ |
FrontendActions.cpp | 602 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs(); 747 llvm::outs().write((*Buffer)->getBufferStart(), Preamble);
|
/external/llvm/tools/llvm-readobj/ |
MachODumper.cpp | 666 llvm::outs(), 669 prettyPrintStackMap(llvm::outs(),
|
COFFDumper.cpp | [all...] |
ELFDumper.cpp | [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/rsc.io/x86/x86asm/ |
xed_test.go | 89 if (text == "rep" && dec.enc[0] == 0xF3 || (text == "repn" || text == "repne") && dec.enc[0] == 0xF2) && (!contains(dec.text, "ins", "outs", "movs", "lods", "cmps", "scas") || contains(dec.text, "xmm")) {
|
/prebuilts/go/linux-x86/src/cmd/internal/rsc.io/x86/x86asm/ |
xed_test.go | 89 if (text == "rep" && dec.enc[0] == 0xF3 || (text == "repn" || text == "repne") && dec.enc[0] == 0xF2) && (!contains(dec.text, "ins", "outs", "movs", "lods", "cmps", "scas") || contains(dec.text, "xmm")) {
|
/external/clang/tools/driver/ |
cc1as_main.cpp | 480 Opts->PrintHelp(llvm::outs(), "clang -cc1as", "Clang Integrated Assembler",
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
ExternalFunctions.cpp | 413 outs() << Buffer;
|
/external/llvm/lib/Support/ |
raw_ostream.cpp | 698 // outs(), errs(), nulls() 701 /// outs() - This returns a reference to a raw_ostream for standard output. 702 /// Use it like: outs() << "foo" << "bar"; 703 raw_ostream &llvm::outs() { function in class:llvm 706 // detection. If you don't want this behavior, don't use outs().
|
/frameworks/base/services/core/java/com/android/server/pm/ |
ShortcutService.java | 790 FileOutputStream outs = null; local 792 outs = file.startWrite(); 796 out.setOutput(outs, StandardCharsets.UTF_8.name()); 808 file.finishWrite(outs); 811 file.failWrite(outs); [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ra.cpp | 413 tmp->reg.data.id = cal->target.fn->outs[d].rep()->reg.data.id; 487 for (std::deque<ValueRef>::iterator it = f->outs.begin(); 488 it != f->outs.end(); ++it) { 563 // remaining live-outs are live until end [all...] |
/external/opencv3/modules/core/test/ |
test_operations.cpp | [all...] |