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

1 2

  /dalvik/vm/mterp/x86/
footer.S 47 * prepare to copy args to "outs" area of current frame
60 * %eax=methodToCall, %ecx=CCCC, LOCAL0_OFFSET(%ebp)=count, %edx=&outs (&stackSaveArea)
67 subl LOCAL0_OFFSET(%ebp), %edx # %edx<- update &outs
73 movl %ebx, (%edx) # *outs<- vCCCC
74 lea 4(%edx), %edx # outs++
81 * prepare to copy args to "outs" area of current frame
95 * %eax=methodToCall, %ecx=GFED, LOCAL0_OFFSET(%ebp)=count, %edx=outs
108 lea -4(%edx), %edx # %edx<- update &outs; &outs--
110 movl %ecx, (%edx) # *outs<- v
    [all...]
  /dalvik/vm/mterp/x86-atom/
footer.S 154 * prepare to copy args to "outs" area of current frame
157 SAVEAREA_FROM_FP %eax # %eax<- &outs; &StackSaveArea
164 * %ecx=methodToCall, %edx=CCCC, sReg0=count, %eax=&outs (&stackSaveArea)
171 subl sReg0, %eax # %eax<- update &outs
177 movl %ebx, (%eax) # *outs<- vCCCC
178 lea 4(%eax), %eax # outs++
185 * prepare to copy args to "outs" area of current frame
193 SAVEAREA_FROM_FP %eax # %eax<- &outs; &StackSaveArea
197 * %ecx=methodToCall, %edx=GFED, sReg0=count, %eax=outs
210 lea -4(%eax), %eax # %eax<- update &outs; &outs-
    [all...]
  /dalvik/vm/mterp/c/
gotoTargets.c 777 u4* outs; local
788 outs = OUTS_FROM_FP(fp, vsrc1);
790 outs[i] = GET_REGISTER(vdst+i);
798 outs = OUTS_FROM_FP(fp, count);
801 outs[4] = GET_REGISTER(vsrc1 & 0x0f);
805 outs[i] = GET_REGISTER(vdst & 0x0f);
814 outs[4] = GET_REGISTER(vsrc1 & 0x0f);
816 outs[3] = GET_REGISTER(vdst >> 12);
818 outs[2] = GET_REGISTER((vdst & 0x0f00) >> 8);
820 outs[1] = GET_REGISTER((vdst & 0x00f0) >> 4)
    [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-5/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)); }
  /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)); }
  /external/bluetooth/glib/gio/tests/
live-g-file.c 128 GFileOutputStream *outs; local
134 outs = g_file_replace (child, NULL, FALSE, create_flags, NULL, &error);
136 g_assert (outs != NULL);
138 res = g_output_stream_close (G_OUTPUT_STREAM (outs), NULL, &error);
139 g_object_unref (outs);
182 GFileOutputStream *outs; local
249 outs =
253 g_assert (outs != NULL);
254 outds = g_data_output_stream_new (G_OUTPUT_STREAM (outs));
263 res = g_output_stream_close (G_OUTPUT_STREAM (outs), NULL, &error)
    [all...]
  /external/grub/netboot/
linux-asm-io.h 101 extern void outs##s(unsigned short port, const void * addr, unsigned long count); \
102 extern inline void outs##s(unsigned short port, const void * addr, unsigned long count) \
103 { __asm__ __volatile__ ("cld ; rep ; outs" #s \
  /external/openssl/crypto/des/
des.c 131 struct stat ins,outs; local
267 (stat(out,&outs) != -1) &&
268 (ins.st_dev == outs.st_dev) &&
269 (ins.st_ino == outs.st_ino))
  /dalvik/vm/mterp/out/
InterpC-x86-atom.c 2099 u4* outs; local
    [all...]
InterpC-x86.c 2036 u4* outs; local
    [all...]
InterpC-allstubs.c 3905 u4* outs; local
    [all...]
InterpC-portdbg.c 4184 u4* outs; local
    [all...]
InterpC-portstd.c 3934 u4* outs; local
    [all...]
InterpAsm-x86.S 45 sub FrameSize,%esp # Allocate storage for spill, locals & outs
    [all...]
InterpAsm-x86-atom.S     [all...]
InterpAsm-armv4t.S     [all...]
InterpAsm-armv5te-vfp.S     [all...]
InterpAsm-armv5te.S     [all...]
InterpAsm-armv7-a-neon.S     [all...]
InterpAsm-armv7-a.S     [all...]
  /dalvik/vm/mterp/armv5te/
footer.S 541 @ prepare to copy args to "outs" area of current frame
547 @ r0=methodToCall, r1=CCCC, r2=count, r10=outs
550 sub r10, r10, r2, lsl #2 @ r10<- "outs" area, for call args
554 str r1, [r10], #4 @ *outs++ = val
567 @ prepare to copy args to "outs" area of current frame
575 @ r0=methodToCall, r1=GFED, r3=outSize, r2=count, r9=regSize, r10=outs
583 str r2, [r10, #-4]! @ *--outs = vA
587 str r2, [r10, #-4]! @ *--outs = vG
591 str r2, [r10, #-4]! @ *--outs = vF
595 str r2, [r10, #-4]! @ *--outs = v
    [all...]
  /external/kernel-headers/original/asm-x86/
io_32.h 334 static inline void outs##bwl(int port, const void *addr, unsigned long count) { \
335 __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); \
  /external/v8/test/cctest/
test-regexp.cc 605 OutSet* outs = table.Get(p); local
611 CHECK_EQ(is_on, outs->Get(j));
    [all...]

Completed in 1715 milliseconds

1 2