/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_watcom.h | 138 long __stl_InterlockedExchange( long *Destination, long Value );
|
/prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/ |
uaccess.h | 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t" 74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_watcom.h | 138 long __stl_InterlockedExchange( long *Destination, long Value );
|
/system/bt/btcore/include/ |
bdaddr.h | 41 // Returns destination bdaddr |dest| after copying |src| to |dest|.
|
/system/bt/stack/include/ |
bnep_api.h | 58 BNEP_CONN_FAILED_DST_UUID, /* Connection failed wrong destination UUID */ 272 ** dst_uuid - destination uuid for the connection 322 ** p_dest_addr - BD_ADDR/Ethernet addr of the destination 350 ** p_dest_addr - BD_ADDR/Ethernet addr of the destination
|
/system/core/libcutils/arch-arm/ |
memset32.S | 59 /* align the destination to a cache-line */
|
/art/compiler/optimizing/ |
code_generator_mips64.cc | 592 void CodeGeneratorMIPS64::MoveLocation(Location destination, 595 if (source.Equals(destination)) { 599 // A valid move can always be inferred from the destination and source 605 if (destination.IsRegister() || destination.IsFpuRegister()) { 613 type = destination.IsRegister() ? Primitive::kPrimInt : Primitive::kPrimFloat; 619 type = destination.IsRegister() ? Primitive::kPrimLong : Primitive::kPrimDouble; 622 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(type)) || 623 (destination.IsRegister() && !Primitive::IsFloatingPointType(type))); 629 destination.AsFpuRegister<FpuRegister>() [all...] |
code_generator_arm64.cc | 700 void CodeGeneratorARM64::MoveConstant(CPURegister destination, HConstant* constant) { 702 __ Mov(Register(destination), constant->AsIntConstant()->GetValue()); 704 __ Mov(Register(destination), constant->AsLongConstant()->GetValue()); 706 __ Mov(Register(destination), 0); 708 __ Fmov(FPRegister(destination), constant->AsFloatConstant()->GetValue()); 711 __ Fmov(FPRegister(destination), constant->AsDoubleConstant()->GetValue()); 727 void CodeGeneratorARM64::MoveLocation(Location destination, Location source, Primitive::Type type) { 728 if (source.Equals(destination)) { 732 // A valid move can always be inferred from the destination and source 738 if (destination.IsRegister() || destination.IsFpuRegister()) 1402 MemOperand destination = HeapOperand(obj); local [all...] |
parallel_move_resolver.h | 82 // a register that is the destination of a move, but that move has not been emitted yet. 172 void AddPendingMove(Location source, Location destination, Primitive::Type type);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
ndis.h | [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_blorp_blit.cpp | 56 * destination coordinates. 80 /* Clip the destination rectangle, and keep track of how many pixels we 105 * that were clipped/scissored out of the destination rectangle. 218 /* If the destination rectangle needs to be clipped or scissored, do so. 597 /* If the destination image is W tiled and multisampled, then the thread 654 * If the actual tiling and sample count of the destination surface are not 674 * If we need to kill pixels that are outside the destination rectangle, 902 /* Either the destination surface is single-sampled, or the WM will be [all...] |
/external/google-breakpad/src/client/mac/testapp/English.lproj/ |
MainMenu.xib | [all...] |
/bionic/libc/arch-arm/cortex-a15/bionic/ |
memset.S | 83 // r3 is the destination pointer 92 // Align destination to a double word to avoid the strd crossing
|
/bionic/libc/arch-arm/cortex-a9/bionic/ |
memset.S | 112 /* compute the offset to align the destination 142 /* align the destination to a cache-line */
|
/bionic/libc/arch-arm/denver/bionic/ |
memset.S | 90 // r3 is the advancing destination pointer 122 // Destination is now 16-byte aligned. Determine how to handle
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
InsnFormat.java | 151 * output destination. The instruction must be of this instance's format. 155 * @param out {@code non-null;} the output destination to write to 486 * Writes one code unit to the given output destination. 496 * Writes two code units to the given output destination. 508 * Writes three code units to the given output destination. 523 * Writes four code units to the given output destination. 540 * Writes five code units to the given output destination. 559 * Writes six code units to the given output destination.
|