Searched refs:cond (Results 1 - 25 of 267) sorted by path

1234567891011

/linux-master/arch/nios2/boot/compressed/
H A Dmisc.c55 # define Assert(cond, msg) {if (!(cond)) error(msg); }
62 # define Assert(cond, msg)
/linux-master/arch/parisc/math-emu/
H A Ddfcmp.c18 * dbl_fcmp(leftptr, rightptr, cond, status)
38 unsigned int cond, unsigned int *status)
60 && (Exception(cond) || Dbl_isone_signaling(leftp1)))
64 && (Exception(cond) || Dbl_isone_signaling(rightp1))) )
67 Set_status_cbit(Unordered(cond));
71 Set_status_cbit(Unordered(cond));
83 Set_status_cbit(Unordered(cond));
98 Set_status_cbit(Equal(cond));
102 Set_status_cbit(Lessthan(cond));
106 Set_status_cbit(Greaterthan(cond));
37 dbl_fcmp(dbl_floating_point * leftptr, dbl_floating_point * rightptr, unsigned int cond, unsigned int *status) argument
[all...]
H A Dfloat.h452 * |excepttype | r1 | r2/ext | operation |parm |n| t/cond |
522 #define Unordered(cond) Unorderedbit(cond)
523 #define Equal(cond) Equalbit(cond)
524 #define Lessthan(cond) Lessthanbit(cond)
525 #define Greaterthan(cond) Greaterthanbit(cond)
526 #define Exception(cond) Exceptionbi
[all...]
H A Dsfcmp.c18 * sgl_fcmp(leftptr, rightptr, cond, status)
37 unsigned int cond, unsigned int *status)
60 && (Exception(cond) || Sgl_isone_signaling(left)))
64 && (Exception(cond) || Sgl_isone_signaling(right)) ) )
67 Set_status_cbit(Unordered(cond));
71 Set_status_cbit(Unordered(cond));
83 Set_status_cbit(Unordered(cond));
98 Set_status_cbit(Equal(cond));
102 Set_status_cbit(Lessthan(cond));
106 Set_status_cbit(Greaterthan(cond));
36 sgl_fcmp(sgl_floating_point * leftptr, sgl_floating_point * rightptr, unsigned int cond, unsigned int *status) argument
[all...]
/linux-master/fs/jfs/
H A Djfs_lock.h22 #define __SLEEP_COND(wq, cond, lock_cmd, unlock_cmd) \
29 if (cond) \
/linux-master/include/linux/
H A Dprocessor.h49 #define spin_until_cond(cond) \
51 if (unlikely(!(cond))) { \
55 } while (!(cond)); \
/linux-master/net/netfilter/
H A Dxt_dccp.c27 #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
28 || (!!((invflag) & (option)) ^ (cond)))
/linux-master/tools/include/linux/
H A Drefcount.h45 #define REFCOUNT_WARN(cond, str) (void)(cond)
48 #define REFCOUNT_WARN(cond, str) BUG_ON(cond)
/linux-master/tools/perf/arch/sparc/annotate/
H A Dinstructions.c3 static int is_branch_cond(const char *cond) argument
5 if (cond[0] == '\0')
8 if (cond[0] == 'a' && cond[1] == '\0')
11 if (cond[0] == 'c' &&
12 (cond[1] == 'c' || cond[1] == 's') &&
13 cond[2] == '\0')
16 if (cond[0] == 'e' &&
17 (cond[
63 is_branch_reg_cond(const char *cond) argument
88 is_branch_float_cond(const char *cond) argument
140 const char *cond = name + 1; local
[all...]
/linux-master/tools/testing/radix-tree/linux/
H A Drcupdate.h8 #define rcu_dereference_protected(p, cond) rcu_dereference(p)
9 #define rcu_dereference_check(p, cond) rcu_dereference(p)
/linux-master/tools/testing/selftests/net/
H A Dpsock_tpacket.c52 # define bug_on(cond) assert(!(cond))
/linux-master/tools/testing/selftests/sync/
H A Dsynctest.h34 #define ASSERT(cond, msg) do { \
35 if (!(cond)) { \
/linux-master/tools/usb/
H A Dffs-test.c101 #define die_on(cond, ...) do { \
102 if (cond) \
/linux-master/arch/alpha/boot/
H A Dmisc.c65 # define Assert(cond,msg) {if(!(cond)) error(msg);}
72 # define Assert(cond,msg)
/linux-master/arch/arm/boot/compressed/
H A Ddecompress.c16 # define Assert(cond,msg) {if(!(cond)) error(msg);}
23 # define Assert(cond,msg)
/linux-master/arch/arm/include/asm/
H A Dassembler.h136 .macro asm_trace_hardirqs_on, cond=al, save=1 variable
145 bl\cond trace_hardirqs_on
197 asm_trace_hardirqs_on cond=eq variable
469 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER() variable
472 \instr\()b\t\cond\().w \reg, [\ptr, #\off]
474 \instr\t\cond\().w \reg, [\ptr, #\off]
485 .macro usracc, instr, reg, ptr, inc, cond, rept, abort variable
488 .ifnc \cond,al
490 itt \cond
492 ittt \cond
499 usraccoff \\instr, \\reg, \\ptr, \\inc, 0, \\cond, \\abort variable
501 usraccoff \\instr, \\reg, \\ptr, \\inc, \\inc, \\cond, \\abort variable
529 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f variable
530 usracc str, \\reg, \\ptr, \\inc, \\cond, \\rept, \\abort variable
533 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f variable
534 usracc ldr, \\reg, \\ptr, \\inc, \\cond, \\rept, \\abort variable
[all...]
H A Ddomain.h121 #define TUSERCOND(instr, cond) #instr "t" #cond
124 #define TUSERCOND(instr, cond) #instr #cond
H A Dspinlock.h29 #define WFE(cond) __ALT_SMP_ASM( \
30 "it " cond "\n\t" \
31 "wfe" cond ".n", \
36 #define WFE(cond) __ALT_SMP_ASM("wfe" cond, "nop")
H A Dvfpmacros.h12 .macro VFPFMRX, rd, sysreg, cond
13 vmrs\cond \rd, \sysreg
16 .macro VFPFMXR, sysreg, rd, cond
17 vmsr\cond \sysreg, \rd
21 .macro VFPFMRX, rd, sysreg, cond
22 MRC\cond p10, 7, \rd, \sysreg, cr0, 0 @ FMRX \rd, \sysreg
25 .macro VFPFMXR, sysreg, rd, cond
26 MCR\cond p10, 7, \rd, \sysreg, cr0, 0 @ FMXR \sysreg, \rd
/linux-master/arch/arm/kernel/
H A Dphys2virt.S163 @ ADD | cond | 0 0 1 0 1 0 0 0 | Rn | Rd | imm12 |
164 @ SUB | cond | 0 0 1 0 0 1 0 0 | Rn | Rd | imm12 |
165 @ MOV | cond | 0 0 1 1 1 0 1 0 | Rn | Rd | imm12 |
166 @ MVN | cond | 0 0 1 1 1 1 1 0 | Rn | Rd | imm12 |
179 @ MOVW | cond | 0 0 1 1 0 0 0 0 | imm4 | Rd | imm12 |
/linux-master/arch/arm/lib/
H A Dcopy_from_user.S76 .macro ldr1b ptr reg cond=al abort
77 ldrusr \reg, \ptr, 1, \cond, abort=\abort
90 .macro str1b ptr reg cond=al abort
91 strb\cond \reg, [\ptr], #1
H A Dcopy_to_user.S48 .macro ldr1b ptr reg cond=al abort
49 ldrb\cond \reg, [\ptr], #1
89 .macro str1b ptr reg cond=al abort
90 strusr \reg, \ptr, 1, \cond, abort=\abort
H A Dmemcpy.S29 .macro ldr1b ptr reg cond=al abort
30 ldrb\cond \reg, [\ptr], #1
41 .macro str1b ptr reg cond=al abort
42 strb\cond \reg, [\ptr], #1
/linux-master/arch/arm/mach-bcm/
H A Dbcm63xx_pmb.c58 * shift is seen, masked with mask and is different from cond.
62 u32 shift, u32 mask, u32 cond)
76 } while (((*val >> shift) & mask) != cond);
60 bpcm_wr_rd_mask(void __iomem *master, unsigned int addr, u32 off, u32 *val, u32 shift, u32 mask, u32 cond) argument
/linux-master/arch/arm/mach-omap2/
H A Dcommon.h197 * @cond: condition to test until it evaluates to true
201 * Loop waiting for @cond to become true or until at least @timeout
206 #define omap_test_timeout(cond, timeout, index) \
209 if (cond) \

Completed in 281 milliseconds

1234567891011