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

1 2

  /external/dropbear/libtomcrypt/
filter.pl 6 $ins = shift;
9 open(INS,"<$ins");
17 while (<INS>) {
20 close INS;
  /dalvik/vm/interp/
Stack.c 208 * the stack that has no ins, outs, or locals, and no break frame above it.
400 * Push a call frame on. If there isn't enough room for ins, locals,
453 u4* ins; local
459 /* "ins" for new frame start at frame pointer plus locals */
460 ins = ((u4*)self->curFrame) + (method->registersSize - method->insSize);
462 //LOGD(" FP is %p, INs live at >= %p\n", self->curFrame, ins);
469 *ins++ = (u4) obj;
478 memcpy(ins, &val, 8); // EABI prevents direct store
479 ins += 2
557 u4* ins; local
658 s4* ins; local
    [all...]
  /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);
  /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)); }
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 437 private synchronized void readConfigurationImpl(InputStream ins)
440 props.load(ins);
477 * @param ins
485 public void readConfiguration(InputStream ins) throws IOException {
487 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)); }
  /dalvik/vm/reflect/
Reflect.h 77 int dvmConvertArgument(DataObject* arg, ClassObject* type, s4* ins);
  /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 \
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogManagerTest.java 226 public void readConfiguration(InputStream ins) throws IOException {
228 super.readConfiguration(ins);
  /external/freetype/src/truetype/
ttinterp.h 152 /* increment IP after ins. exec */
164 FT_UInt maxIDefs; /* maximum number of ins defs */
282 TT_Size ins );
  /external/openssl/crypto/des/
des.c 131 struct stat ins,outs; local
266 (stat(in,&ins) != -1) &&
268 (ins.st_dev == outs.st_dev) &&
269 (ins.st_ino == outs.st_ino))
  /external/bluetooth/glib/gio/tests/
live-g-file.c 387 GFileInputStream *ins; local
446 ins = g_file_read (child, NULL, &error);
447 g_assert (ins != NULL);
457 g_input_stream_read (G_INPUT_STREAM (ins), buffer + total_read,
467 res = g_input_stream_close (G_INPUT_STREAM (ins), NULL, &error);
474 g_object_unref (ins);
    [all...]
  /external/chromium/sdch/open-vcdiff/
install-sh 341 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
  /external/libpng/
install-sh 341 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
  /external/protobuf/gtest/build-aux/
install-sh 341 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
  /external/protobuf/
install-sh 341 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
  /external/kernel-headers/original/asm-x86/
io_32.h 337 static inline void ins##bwl(int port, void *addr, unsigned long count) { \
338 __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d"(port)); \
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 684 pair<FlagIterator, bool> ins = local
686 if (ins.second == false) { // means the name was already in the map
687 if (strcmp(ins.first->second->filename(), flag->filename()) != 0) {
691 ins.first->second->filename(),
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
ChannelsTest.java 201 InputStream ins = Channels.newInputStream(rbChannel); local
202 assertNotNull(ins);
203 assertEquals(0, ins.available());
    [all...]
  /external/v8/src/
jsregexp.cc 4679 ZoneSplayTree<Config>::Locator ins; local
4690 ZoneSplayTree<Config>::Locator ins; local
4710 ZoneSplayTree<Config>::Locator ins; local
    [all...]
  /external/webkit/WebCore/css/
html.css 534 u, ins {
  /libcore/luni/src/test/java/tests/sql/
StatementTest.java 1782 InsertThread ins = new InsertThread((PreparedStatement)st); local
    [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 6460 milliseconds

1 2