HomeSort by relevance Sort by last modified time
    Searched refs:ins (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/valgrind/tsan/pin/
simple_pin_test.cc 20 for (INS ins = BBL_InsHead(bbl); INS_Valid(ins); ins = INS_Next(ins)) {
21 if (INS_IsStackRead(ins) || INS_IsStackWrite(ins))
23 if (INS_IsMemoryRead(ins) || INS_IsMemoryWrite(ins)) {
25 INS_InsertCall(ins, IPOINT_BEFORE
    [all...]
  /external/dropbear/libtomcrypt/
filter.pl 6 $ins = shift;
9 open(INS,"<$ins");
17 while (<INS>) {
20 close INS;
  /external/chromium/build/
sanitize-mac-build-log.sed 21 \|^ /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/|d
  /dalvik/vm/interp/
Stack.cpp 207 * the stack that has no ins, outs, or locals, and no break frame above it.
391 * Push a call frame on. If there isn't enough room for ins, locals,
444 u4* ins; local
450 /* "ins" for new frame start at frame pointer plus locals */
451 ins = ((u4*)self->interpSave.curFrame) +
454 //LOGD(" FP is %p, INs live at >= %p", self->interpSave.curFrame, ins);
461 *ins++ = (u4) obj;
469 memcpy(ins, &val, 8); // EABI prevents direct store
470 ins += 2
550 u4* ins; local
659 s4* ins; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
HomeProvider.java 93 InputStream ins = context.getContentResolver() local
95 return new WebResourceResponse("text/html", "utf-8", ins);
Template.java 271 InputStream ins = context.getResources().openRawResource(id); local
273 byte[] buf = new byte[ins.available()];
274 ins.read(buf);
  /frameworks/base/core/tests/coretests/src/android/text/
PackedIntVectorTest.java 29 int[] ins = new int[width]; local
46 ins[j] = i + j;
52 p.insertAt(at, ins);
  /external/clang/test/CXX/class.access/
p6.cpp 165 A ins; member in class:test7::B
168 void foo(int arg[__builtin_offsetof(B, ins)]);
  /external/javassist/src/main/javassist/tools/rmi/
AppletServer.java 144 private void processRMI(InputStream ins, OutputStream outs)
147 ObjectInputStream in = new ObjectInputStream(ins);
221 private void lookupName(String cmd, InputStream ins, OutputStream outs)
224 ObjectInputStream in = new ObjectInputStream(ins);
ObjectImporter.java 237 InputStream ins = new BufferedInputStream(sock.getInputStream()); local
238 skipHeader(ins);
239 ObjectInputStream din = new ObjectInputStream(ins);
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 369 InputStream[] ins = new InputStream[valueCount]; local
372 ins[i] = new FileInputStream(entry.getCleanFile(i));
385 return new Snapshot(ins);
598 private final InputStream[] ins; field in class:DiskLruCache.Snapshot
600 private Snapshot(InputStream[] ins) {
601 this.ins = ins;
608 return ins[index];
619 for (InputStream in : ins) {
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 823 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
824 if (Name.startswith("ins") && Operands.size() == 3 &&
869 const char *ins; local
873 ins = "lodsb";
875 ins = "lodsw";
877 ins = "lodsl";
879 ins = "lodsq";
881 ins = NULL;
882 if (ins != NULL)
899 const char *ins; local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
io_32.h 26 #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)); }
  /development/ndk/platforms/android-9/arch-x86/include/asm/
io_32.h 26 #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/javassist/src/main/javassist/
ClassPoolTail.java 331 InputStream ins = null; local
335 ins = list.path.openClassfile(classname);
342 if (ins == null)
345 return ins;
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLModElement01.js 81 Retrieve the cite attribute of the INS element and examine its value.
100 nodeList = doc.getElementsByTagName("ins");
105 assertURIEquals("citeLink",null,null,null,"ins-reasons.html",null,null,null,null,vcite);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLModElement01.js 81 Retrieve the cite attribute of the INS element and examine its value.
100 nodeList = doc.getElementsByTagName("ins");
105 assertURIEquals("citeLink",null,null,null,"ins-reasons.html",null,null,null,null,vcite);
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 366 private synchronized void readConfigurationImpl(InputStream ins)
369 props.load(ins);
406 * @param ins
411 public void readConfiguration(InputStream ins) throws IOException {
413 readConfigurationImpl(ins);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
io_32.h 26 #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)); }
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
io_32.h 26 #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)); }
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
io_32.h 26 #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)); }
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
io_32.h 26 #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)); }
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
io_32.h 26 #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/valgrind/tsan/
ts_pin.cc     [all...]
  /external/grub/netboot/
linux-asm-io.h 95 extern void ins##s(unsigned short port, void * addr, unsigned long count); \
96 extern inline void ins##s(unsigned short port, void * addr, unsigned long count) \
97 { __asm__ __volatile__ ("cld ; rep ; ins" #s \

Completed in 866 milliseconds

1 2 3