HomeSort by relevance Sort by last modified time
    Searched full:destination (Results 126 - 150 of 5294) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/test/MC/Mips/mips64r3/
invalid.s 9 jalr.hb $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
10 jalr.hb $31, $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
  /external/llvm/test/MC/Mips/mips64r5/
invalid.s 9 jalr.hb $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
10 jalr.hb $31, $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
  /external/llvm/test/MC/Mips/mips64r6/
invalid.s 10 jalr.hb $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
11 jalr.hb $31, $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 51 private String destination; field in class:MessageLog
85 String destination,
96 this.destination = destination;
118 String destination,
129 this.destination = destination;
153 + destination
  /external/v8/src/compiler/
gap-resolver.h 23 InstructionOperand* destination) = 0;
26 InstructionOperand* destination) = 0;
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 34 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
37 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
41 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
45 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}} \
51 // expected-warning{{destination for this 'memcpy' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}} \
64 // expected-warning {{destination for this '__builtin_memset' call is a pointer to dynamic class}} \
67 // expected-warning {{destination for this '__builtin_memset' call is a pointer to dynamic class}} \
71 // expected-warning{{destination for this '__builtin_memmove' call is a pointer to dynamic class}} \
77 // expected-warning{{destination for this '__builtin_memcpy' call is a pointer to dynamic class}} \
84 // expected-warning {{destination for this '__builtin___memset_chk' call is a pointer to dynamic class}}
    [all...]
  /external/iptables/extensions/
libip6t_dst.man 1 This module matches the parameters in Destination Options header
libipt_MIRROR.man 2 and destination fields in the IP header and retransmits the packet.
libxt_multiport.man 1 This module matches a set of source or destination ports. Up to 15
15 [\fB!\fP] \fB\-\-destination\-ports\fP,\fB\-\-dports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport\fP\fB:\fP\fIport\fP]...
16 Match if the destination port is one of the given ports. The flag
21 Match if either the source or destination ports are equal to one of
libxt_REDIRECT.man 9 destination IP to the primary address of the incoming interface
14 This specifies a destination port or range of ports to use: without
15 this, the destination port is never altered. This is only valid
libxt_TPROXY.man 9 This specifies a destination port to use. It is a required option, 0 means the
10 new destination port is the same as the original. This is only valid if the
14 This specifies a destination address to use. By default the address is the IP
  /external/llvm/test/CodeGen/Thumb2/
2010-12-03-AddSPNarrowing.ll 3 ; destination register is narrowed to tADDspi instead of tADDrSPi.
  /external/llvm/test/CodeGen/X86/
switch-default-only.ll 3 ; No need for branching when the default and only destination follows
  /external/svox/pico/lang/
PicoLangDefaultInSystem.mk 6 # Note the destination path matches that used in external/svox/pico/tts/com_svox_picottsengine.cpp
PicoLangEnUsInSystem.mk 6 # Note the destination path matches that used in external/svox/pico/tts/com_svox_picottsengine.cpp
  /external/valgrind/exp-bbv/tests/amd64-linux/
complex_rep.S 17 mov $buffer1, %rdi # set destination
26 mov $buffer1, %rdi # set destination
35 mov $buffer1, %rdi # set destination
39 mov $buffer1, %rdi # set destination
  /external/valgrind/exp-bbv/tests/x86/
complex_rep.S 17 mov $buffer1, %edi # set destination
26 mov $buffer1, %edi # set destination
35 mov $buffer1, %edi # set destination
39 mov $buffer1, %edi # set destination
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
BitmapSerializeUtils.java 51 * @param destination The destination file descriptor.
53 public static void writeBitmapPixels(Bitmap bitmap, ParcelFileDescriptor destination) {
54 nativeWriteBitmapPixels(bitmap, destination.getFd());
  /external/eigen/blas/
CMakeLists.txt 42 RUNTIME DESTINATION bin
43 LIBRARY DESTINATION lib
44 ARCHIVE DESTINATION lib)
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
  /packages/apps/Gallery2/jni/filters/
exposure.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
highlight.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
hue.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
negative.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 char * dst = destination;
  /external/v8/src/compiler/arm/
code-generator-arm.cc 700 InstructionOperand* destination) {
702 // Dispatch on the source and destination operand kinds. Not all
705 DCHECK(destination->IsRegister() || destination->IsStackSlot());
707 if (destination->IsRegister()) {
708 __ mov(g.ToRegister(destination), src);
710 __ str(src, g.ToMemOperand(destination));
713 DCHECK(destination->IsRegister() || destination->IsStackSlot());
715 if (destination->IsRegister())
    [all...]

Completed in 533 milliseconds

1 2 3 4 56 7 8 91011>>