HomeSort by relevance Sort by last modified time
    Searched refs:__ret (Results 151 - 175 of 579) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
concept_checks.h 58 #define _STLP_GENERATOR_CHECK(__func, __ret) do {} while(0)
59 #define _STLP_CLASS_GENERATOR_CHECK(__func, __ret) \
60 static int __##__func##__ret##_generator_check
61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0)
62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \
63 static int __##__func##__ret##__arg##_unary_function_check
64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
concept_checks.h 58 #define _STLP_GENERATOR_CHECK(__func, __ret) do {} while(0)
59 #define _STLP_CLASS_GENERATOR_CHECK(__func, __ret) \
60 static int __##__func##__ret##_generator_check
61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0)
62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \
63 static int __##__func##__ret##__arg##_unary_function_check
64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
concept_checks.h 58 #define _STLP_GENERATOR_CHECK(__func, __ret) do {} while(0)
59 #define _STLP_CLASS_GENERATOR_CHECK(__func, __ret) \
60 static int __##__func##__ret##_generator_check
61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0)
62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \
63 static int __##__func##__ret##__arg##_unary_function_check
64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
concept_checks.h 58 #define _STLP_GENERATOR_CHECK(__func, __ret) do {} while(0)
59 #define _STLP_CLASS_GENERATOR_CHECK(__func, __ret) \
60 static int __##__func##__ret##_generator_check
61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0)
62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \
63 static int __##__func##__ret##__arg##_unary_function_check
64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
concept_checks.h 58 #define _STLP_GENERATOR_CHECK(__func, __ret) do {} while(0)
59 #define _STLP_CLASS_GENERATOR_CHECK(__func, __ret) \
60 static int __##__func##__ret##_generator_check
61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0)
62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \
63 static int __##__func##__ret##__arg##_unary_function_check
64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \
67 static int __##__func##__ret##__first##__second##_binary_function_check
68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second)
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /development/ndk/platforms/android-9/arch-mips/include/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /external/kernel-headers/original/asm-mips/
cmpxchg.h 17 __typeof(*(m)) __ret; \
33 : "=&r" (__ret), "=R" (*m) \
53 : "=&r" (__ret), "=R" (*m) \
60 __ret = *m; \
61 if (__ret == old) \
66 __ret; \
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
cmpxchg.h 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_core.c 46 int __ret = 0; local
64 __ret = -EINVAL;
68 __ret = rbug_connection_send_finish(__con, __serial);
72 return __ret;
81 int __ret = 0; local
99 __ret = -EINVAL;
103 __ret = rbug_connection_send_finish(__con, __serial);
107 return __ret;
117 int __ret = 0; local
137 __ret = -EINVAL
155 int __ret = 0; local
194 int __ret = 0; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_core.c 46 int __ret = 0; local
64 __ret = -EINVAL;
68 __ret = rbug_connection_send_finish(__con, __serial);
72 return __ret;
81 int __ret = 0; local
99 __ret = -EINVAL;
103 __ret = rbug_connection_send_finish(__con, __serial);
107 return __ret;
117 int __ret = 0; local
137 __ret = -EINVAL
155 int __ret = 0; local
194 int __ret = 0; local
    [all...]
  /external/kernel-headers/original/asm-generic/
bug.h 44 int __ret = 0; \
49 __ret = 1; \
51 __ret; \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
c++locale.h 74 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); local
76 const int __ret = __builtin_vsprintf(__out, __fmt, __args); local
86 return __ret;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ip_tables.h 227 int __ret = 0; \
235 __ret = fn(__match , ## args); \
236 if (__ret != 0) \
239 __ret; \
246 int __ret = 0; \
252 __ret = fn(__entry , ## args); \
253 if (__ret != 0) \
256 __ret; \
263 int __ret = 0; \
272 __ret = fn(__entry , ## args);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ip_tables.h 227 int __ret = 0; \
235 __ret = fn(__match , ## args); \
236 if (__ret != 0) \
239 __ret; \
246 int __ret = 0; \
252 __ret = fn(__entry , ## args); \
253 if (__ret != 0) \
256 __ret; \
263 int __ret = 0; \
272 __ret = fn(__entry , ## args);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ip_tables.h 227 int __ret = 0; \
235 __ret = fn(__match , ## args); \
236 if (__ret != 0) \
239 __ret; \
246 int __ret = 0; \
252 __ret = fn(__entry , ## args); \
253 if (__ret != 0) \
256 __ret; \
263 int __ret = 0; \
272 __ret = fn(__entry , ## args);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
c++locale.h 74 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); local
76 const int __ret = __builtin_vsprintf(__out, __fmt, __args); local
86 return __ret;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
c++locale.h 74 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); local
76 const int __ret = __builtin_vsprintf(__out, __fmt, __args); local
86 return __ret;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
c++locale.h 74 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); local
76 const int __ret = __builtin_vsprintf(__out, __fmt, __args); local
86 return __ret;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
c++locale.h 74 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); local
76 const int __ret = __builtin_vsprintf(__out, __fmt, __args); local
86 return __ret;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
c++locale.h 74 const int __ret = __builtin_vsnprintf(__out, __size, __fmt, __args); local
76 const int __ret = __builtin_vsprintf(__out, __fmt, __args); local
86 return __ret;

Completed in 2579 milliseconds

1 2 3 4 5 67 8 91011>>