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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/macros/
test3.s 1 .macro m arg1 arg2
4 \arg2
test2.s 1 .macro m arg1 arg2 arg3
3 .ifc ,\arg2\arg3
5 m \arg2,\arg3
test1.s 1 .macro m arg1 arg2
3 \arg1 == \arg2
  /external/clang/tools/libclang/
Index_Internal.h 25 #define INVOKE_BLOCK2(block, arg1, arg2) block(arg1, arg2)
31 #define INVOKE_BLOCK2(block, arg1, arg2) block->invoke(block, arg1, arg2)
  /external/dng_sdk/source/
dng_safe_arithmetic.cpp 21 // Returns the result of adding arg1 and arg2 if it will fit in a T (where T is
25 T SafeAdd(T arg1, T arg2) {
32 if ((arg1 >= 0 && arg2 <= std::numeric_limits<T>::max() - arg1) ||
33 (arg1 < 0 && arg2 >= std::numeric_limits<T>::min() - arg1)) {
34 return arg1 + arg2;
41 // Returns the result of multiplying arg1 and arg2 if it will fit in a T (where
45 T SafeUnsignedMult(T arg1, T arg2) {
46 if (arg1 == 0 || arg2 <= std::numeric_limits<T>::max() / arg1) {
47 return arg1 * arg2;
56 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /external/javasqlite/src/main/java/SQLite/
Authorizer.java 14 * @param arg2 second argument (file, table, or column name)
22 public int authorize(int what, String arg1, String arg2, String arg3,
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-15/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-16/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-17/arch-arm/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block
  /prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/linux/
thread_info.h 17 unsigned long arg0, arg1, arg2, arg3; member in struct:restart_block

Completed in 1316 milliseconds

1 2 3 4 5 6 7 8 91011>>