/linux-2.6.39/arch/x86/include/asm/ |
D | cmpxchg_32.h | 96 __typeof__(*(ptr)) __ret; \ 104 : "=a" (__ret), "+m" (*__ptr) \ 113 : "=a" (__ret), "+m" (*__ptr) \ 122 : "=a" (__ret), "+m" (*__ptr) \ 130 __ret; \ 217 __typeof__(*(ptr)) __ret; \ 219 __ret = (__typeof__(*(ptr)))__cmpxchg((ptr), \ 223 __ret = (__typeof__(*(ptr)))cmpxchg_386((ptr), \ 226 __ret; \ 230 __typeof__(*(ptr)) __ret; \ [all …]
|
D | cmpxchg_64.h | 78 __typeof__(*(ptr)) __ret; \ 86 : "=a" (__ret), "+m" (*__ptr) \ 95 : "=a" (__ret), "+m" (*__ptr) \ 104 : "=a" (__ret), "+m" (*__ptr) \ 113 : "=a" (__ret), "+m" (*__ptr) \ 121 __ret; \
|
D | string_64.h | 38 void *__ret; \ 40 __ret = __memcpy((dst), (src), __len); \ 42 __ret = __builtin_memcpy((dst), (src), __len); \ 43 __ret; \
|
/linux-2.6.39/include/linux/netfilter_bridge/ |
D | ebtables.h | 314 int __ret = 0; \ 323 __ret = fn(__match , ## args); \ 324 if (__ret != 0) \ 327 if (__ret == 0) { \ 329 __ret = -EINVAL; \ 331 __ret; \ 337 int __ret = 0; \ 346 __ret = fn(__watcher , ## args); \ 347 if (__ret != 0) \ 350 if (__ret == 0) { \ [all …]
|
/linux-2.6.39/net/dsa/ |
D | mv88e6xxx.h | 76 int __ret; \ 78 __ret = mv88e6xxx_reg_read(ds, addr, reg); \ 79 if (__ret < 0) \ 80 return __ret; \ 81 __ret; \ 86 int __ret; \ 88 __ret = mv88e6xxx_reg_write(ds, addr, reg, val); \ 89 if (__ret < 0) \ 90 return __ret; \
|
D | mv88e6060.c | 26 int __ret; \ 28 __ret = reg_read(ds, addr, reg); \ 29 if (__ret < 0) \ 30 return __ret; \ 31 __ret; \ 43 int __ret; \ 45 __ret = reg_write(ds, addr, reg, val); \ 46 if (__ret < 0) \ 47 return __ret; \
|
/linux-2.6.39/drivers/media/common/tuners/ |
D | tuner-i2c.h | 131 int __ret = 0; \ 140 __ret = state->i2c_props.count; \ 144 if (0 == __ret) { \ 155 __ret = state->i2c_props.count; \ 158 __ret; \ 163 int __ret; \ 165 __ret = state->i2c_props.count; \ 171 __ret; \ 176 int __ret = 0; \ 178 __ret = state->i2c_props.count; \ [all …]
|
D | tda18271-priv.h | 165 int __ret; \ 166 __ret = (ret < 0); \ 167 if (__ret) \ 170 __ret; \
|
/linux-2.6.39/arch/powerpc/include/asm/ |
D | delay.h | 58 typeof(condition) __ret; \ 61 while (!(__ret = (condition)) && (tb_ticks_since(__start) <= __loops)) \ 66 if (!__ret) \ 67 __ret = (condition); \ 68 __ret; \
|
/linux-2.6.39/include/linux/ |
D | wait.h | 257 long __ret = timeout; \ 259 __wait_event_timeout(wq, condition, __ret); \ 260 __ret; \ 298 int __ret = 0; \ 300 __wait_event_interruptible(wq, condition, __ret); \ 301 __ret; \ 343 long __ret = timeout; \ 345 __wait_event_interruptible_timeout(wq, condition, __ret); \ 346 __ret; \ 373 int __ret = 0; \ [all …]
|
D | kfifo.h | 390 unsigned int __ret; \ 398 __ret = __kfifo_in_r(__kfifo, __val, sizeof(*__val), \ 401 __ret = !kfifo_is_full(__tmp); \ 402 if (__ret) { \ 412 __ret; \ 432 unsigned int __ret; \ 438 __ret = __kfifo_out_r(__kfifo, __val, sizeof(*__val), \ 441 __ret = !kfifo_is_empty(__tmp); \ 442 if (__ret) { \ 452 __ret; \ [all …]
|
D | debug_locks.h | 26 int __ret = 0; \ 31 __ret = 1; \ 33 __ret; \
|
/linux-2.6.39/arch/parisc/include/asm/ |
D | system.h | 130 unsigned long __ret = (unsigned long) &(a)->lock[0]; \ 131 __ret = (__ret + __PA_LDCW_ALIGNMENT - 1) \ 133 (volatile unsigned int *) __ret; \ 153 unsigned __ret; \ 155 : "=r" (__ret), "+m" (*(a)) : "r" (a)); \ 156 __ret; \
|
/linux-2.6.39/arch/mips/include/asm/ |
D | cmpxchg.h | 17 __typeof(*(m)) __ret; \ 33 : "=&r" (__ret), "=R" (*m) \ 50 : "=&r" (__ret), "=R" (*m) \ 57 __ret = *m; \ 58 if (__ret == old) \ 63 __ret; \
|
/linux-2.6.39/arch/ia64/include/asm/ |
D | uaccess.h | 98 long __ret; \ 100 case 1: __ret = __put_user((x), (ptr)); break; \ 101 case 2: __ret = (__put_user((x), (u8 __user *)(ptr))) \ 103 case 4: __ret = (__put_user((x), (u16 __user *)(ptr))) \ 105 case 8: __ret = (__put_user((x), (u32 __user *)(ptr))) \ 107 default: __ret = __put_user_unaligned_unknown(); \ 109 __ret; \ 116 long __ret; \ 118 case 1: __ret = __get_user((x), (ptr)); break; \ 119 case 2: __ret = (__get_user((x), (u8 __user *)(ptr))) \ [all …]
|
/linux-2.6.39/drivers/tty/hvc/ |
D | hvc_dcc.c | 35 u32 __ret; in __dcc_getstatus() local 37 : "=r" (__ret) : : "cc"); in __dcc_getstatus() 39 return __ret; in __dcc_getstatus()
|
/linux-2.6.39/arch/tile/include/asm/ |
D | uaccess.h | 177 ({ struct __get_user __ret; \ 182 __ret = __get_user_1(__gu_addr); \ 185 __ret = __get_user_2(__gu_addr); \ 188 __ret = __get_user_4(__gu_addr); \ 191 __ret = __get_user_8(__gu_addr); \ 194 __ret = __get_user_bad(); \ 198 __ret.val; \ 199 __ret.err; \
|
/linux-2.6.39/arch/arm/plat-omap/include/plat/ |
D | serial.h | 95 #define is_omap_port(pt) ({int __ret = 0; \ 99 __ret = 1; \ 100 __ret; \
|
/linux-2.6.39/arch/microblaze/kernel/ |
D | sys_microblaze.c | 91 register unsigned long __ret __asm__("r3"); in kernel_execve() 93 : "=r" (__ret), "=r" (__syscall) in kernel_execve() 97 return __ret; in kernel_execve()
|
/linux-2.6.39/include/linux/netfilter/ |
D | x_tables.h | 131 int __ret = 0; \ 139 __ret = fn(__m , ## args); \ 140 if (__ret != 0) \ 143 __ret; \ 150 int __ret = 0; \ 159 __ret = fn(__entry , ## args); \ 160 if (__ret != 0) \ 163 __ret; \
|
/linux-2.6.39/arch/blackfin/include/asm/ |
D | bfin_sport.h | 106 u32 __ret; \ 110 __ret = __mmrs->rx32; \ 113 __ret; \
|
/linux-2.6.39/arch/s390/include/asm/ |
D | cmpxchg.h | 77 __typeof__(*(ptr)) __ret; \ 78 __ret = (__typeof__(*(ptr))) \ 80 __ret; \
|
/linux-2.6.39/drivers/tty/serial/ |
D | bfin_sport_uart.h | 47 unsigned int __ret; \ 50 __ret = bfin_read32((sport)->port.membase + OFFSET_RX); \ 53 __ret; \
|
/linux-2.6.39/arch/powerpc/platforms/cell/spufs/ |
D | spufs.h | 323 int __ret = 0; \ 331 __ret = -ERESTARTSYS; \ 335 __ret = spu_acquire(ctx); \ 336 if (__ret) \ 340 __ret; \
|
/linux-2.6.39/arch/ia64/kernel/ |
D | mca_drv.h | 64 sal_log_mod_error_info_t *__ret = NULL; \ 66 __ret = &(peidx_head(p)->info[__idx]); \ 67 __ret; })
|