/linux-2.4.37.9/arch/parisc/math-emu/ |
D | dfcmp.c | 51 unsigned int cond, unsigned int *status) in dbl_fcmp() argument 73 && (Exception(cond) || Dbl_isone_signaling(leftp1))) in dbl_fcmp() 77 && (Exception(cond) || Dbl_isone_signaling(rightp1))) ) in dbl_fcmp() 80 Set_status_cbit(Unordered(cond)); in dbl_fcmp() 84 Set_status_cbit(Unordered(cond)); in dbl_fcmp() 96 Set_status_cbit(Unordered(cond)); in dbl_fcmp() 111 Set_status_cbit(Equal(cond)); in dbl_fcmp() 115 Set_status_cbit(Lessthan(cond)); in dbl_fcmp() 119 Set_status_cbit(Greaterthan(cond)); in dbl_fcmp() 126 Set_status_cbit(Equal(cond)); in dbl_fcmp() [all …]
|
D | sfcmp.c | 50 unsigned int cond, unsigned int *status) in sgl_fcmp() argument 73 && (Exception(cond) || Sgl_isone_signaling(left))) in sgl_fcmp() 77 && (Exception(cond) || Sgl_isone_signaling(right)) ) ) in sgl_fcmp() 80 Set_status_cbit(Unordered(cond)); in sgl_fcmp() 84 Set_status_cbit(Unordered(cond)); in sgl_fcmp() 96 Set_status_cbit(Unordered(cond)); in sgl_fcmp() 111 Set_status_cbit(Equal(cond)); in sgl_fcmp() 115 Set_status_cbit(Lessthan(cond)); in sgl_fcmp() 119 Set_status_cbit(Greaterthan(cond)); in sgl_fcmp() 126 Set_status_cbit(Equal(cond)); in sgl_fcmp() [all …]
|
D | float.h | 536 #define Unordered(cond) Unorderedbit(cond) 537 #define Equal(cond) Equalbit(cond) 538 #define Lessthan(cond) Lessthanbit(cond) 539 #define Greaterthan(cond) Greaterthanbit(cond) 540 #define Exception(cond) Exceptionbit(cond)
|
/linux-2.4.37.9/Documentation/arm/nwfpe/ |
D | README.FPE | 18 <LDF|STF>{cond}<S|D|E> Fd, Rn 19 <LDF|STF>{cond}<S|D|E> Fd, [Rn, #<expression>]{!} 20 <LDF|STF>{cond}<S|D|E> Fd, [Rn], #<expression> 27 <LFM|SFM>{cond}<S|D|E> Fd, <count>, [Rn] 28 <LFM|SFM>{cond}<S|D|E> Fd, <count>, [Rn, #<expression>]{!} 29 <LFM|SFM>{cond}<S|D|E> Fd, <count>, [Rn], #<expression> 32 <LFM|SFM>{cond}<FD,EA> Fd, <count>, [Rn]{!} 45 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point 46 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer 47 WFS{cond} Rd Write floating point status register [all …]
|
D | TODO | 4 POW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - power 5 RPW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse power 6 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2) 8 LOG{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base 10 9 LGN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base e 10 EXP{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - exponent 11 SIN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - sine 12 COS{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - cosine 13 TAN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - tangent 14 ASN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - arcsine [all …]
|
/linux-2.4.37.9/scripts/ |
D | tkcond.c | 74 static void free_cond( struct condition *cond ) in free_cond() argument 77 for ( tmp = cond; tmp; tmp = tmp1 ) in free_cond() 153 struct condition * cond; in join_condition_stack() local 189 for ( cond = conditions [i]; cond != NULL; cond = cond->next ) in join_condition_stack() 193 cnew->op = cond->op; in join_condition_stack() 194 cnew->str = cond->str ? strdup( cond->str ) : NULL; in join_condition_stack() 195 cnew->nameindex = cond->nameindex; in join_condition_stack() 456 remove_bang( eliminate_other_arch( cfg->cond ) ); in fix_conditionals() 457 cfg->cond = NULL; in fix_conditionals() 469 struct condition * cond; in fix_conditionals() local [all …]
|
D | tkgen.c | 291 struct condition * cond; in generate_if() local 313 for ( cond = ocond; cond != NULL; cond = cond->next ) in generate_if() 315 switch ( cond->op ) in generate_if() 321 if ( ! vartable[cond->nameindex].global_written ) in generate_if() 323 vartable[cond->nameindex].global_written = 1; in generate_if() 324 global( vartable[cond->nameindex].name ); in generate_if() 343 for ( cond = ocond; cond != NULL; cond = cond->next ) in generate_if() 345 switch ( cond->op ) in generate_if() 360 printf( "$%s", vartable[cond->nameindex].name ); in generate_if() 364 if ( strcmp( cond->str, "y" ) == 0 ) printf( "1" ); in generate_if() [all …]
|
D | tkparse.c | 221 struct condition * cond; in tokenize_if() local 232 cond = malloc( sizeof(*cond) ); in tokenize_if() 233 memset( cond, 0, sizeof(*cond) ); in tokenize_if() 235 { list = last = cond; prev = NULL; } in tokenize_if() 237 { prev = last; last->next = cond; last = cond; } in tokenize_if() 244 cond->op = op_and; pnt += 2; continue; in tokenize_if() 251 cond->op = op_or; pnt += 2; continue; in tokenize_if() 258 cond->op = op_neq; pnt += 2; continue; in tokenize_if() 265 cond->op = op_eq; pnt += 1; continue; in tokenize_if() 273 cond->op = op_bang; pnt += 1; continue; in tokenize_if() [all …]
|
D | checkpatch.pl | 1359 my ($stat, $cond, $line_nr_next, $remain_next, $off_next); 1361 ($stat, $cond, $line_nr_next, $remain_next, $off_next) = 1364 $cond =~ s/\n./\n /g; 1478 my ($s, $c) = ($stat, $cond); 2063 my ($s, $c) = ($stat, $cond); 2289 my ($cond, $block) = @{$chunk}; 2292 my ($whitespace) = ($cond =~ /^((?:\s*\n[+-])*\s*)/s); 2303 substr($block, 0, length($cond), ''); 2308 if (statement_lines($cond) > 1) { 2340 my ($cond, $block) = @{$chunks[0]}; [all …]
|
/linux-2.4.37.9/arch/ia64/sn/fakeprom/ |
D | fpromasm.S | 150 (p6) br.cond.spnt.few init 153 (p6) br.cond.sptk 1b 161 (p6) br.cond.sptk.few.clr 2f;; 197 (p6) br.cond.sptk.few.clr 1b 204 (p6) br.cond.spnt slave 260 (p6) br.cond.sptk slave;; 296 (p6) br.cond.sptk.few static 301 (p6) br.cond.sptk.few stacked 305 (p7) br.cond.sptk.few 1f 313 (p7) br.cond.sptk.few 1f [all …]
|
/linux-2.4.37.9/include/asm-arm/proc-armv/ |
D | assembler.h | 24 #define LOADREGS(cond, base, reglist...)\ argument 25 ldm##cond base,reglist 27 #define LOADREGS(cond, base, reglist...)\ argument 28 ldm/**/cond base,reglist
|
/linux-2.4.37.9/include/asm-arm/proc-armo/ |
D | assembler.h | 21 #define LOADREGS(cond, base, reglist...)\ argument 22 ldm##cond base,reglist^ 27 #define LOADREGS(cond, base, reglist...)\ argument 28 ldm/**/cond base,reglist^
|
/linux-2.4.37.9/arch/ia64/sn/kernel/sn2/ |
D | ptc_deadlock.S | 48 (p6) br.cond.sptk 5b 62 (p6) br.cond.sptk 5b;; 71 (p6) br.cond.sptk 5b 79 (p8) br.cond.spnt 1b;; // Repeat if DEADLOCK occurred.
|
/linux-2.4.37.9/drivers/isdn/eicon/ |
D | sys.h | 83 # define ASSERT(cond) \ argument 84 if (!(cond)) \ 89 # define ASSERT(cond) ((void)0) argument
|
/linux-2.4.37.9/arch/ia64/lib/ |
D | copy_user.S | 106 (p10) br.cond.dptk .long_copy_user 156 (p15) br.cond.spnt 1f 166 br.cond.spnt .word_copy_user 203 (p9) br.cond.spnt 4f // if (16 > len1) skip 8-byte copy 235 (pred) br.cond.spnt .copy_user_bit##shift 245 br.cond.sptk.many .diff_align_do_tail; \ 254 br.cond.sptk.many .failure_in2 324 (p8) br.cond.dpnt .diff_align_copy_user 365 (p7) br.cond.dpnt .dotail // we have less than 16 bytes left 462 br.cond.dptk.many .failure_in1bis [all …]
|
D | memset.S | 83 (p_scr) br.cond.dptk.many .move_bytes_unaligned // go move just a few (M_B_U) 119 (p_scr) br.cond.dpnt.many .fraction_of_line // go move just a few 125 (p_zr) br.cond.dptk.many .l1b // Jump to use stf.spill 193 (p_scr) br.cond.dpnt.many .fraction_of_line // Branch no. 2 194 br.cond.dpnt.many .move_bytes_from_alignment // Branch no. 3 247 (p_scr) br.cond.dpnt.many .move_bytes_from_alignment // 258 (p_scr) br.cond.dpnt.many .store_words 277 (p_scr) br.cond.dpnt.many .move_bytes_from_alignment // Branch 299 (p_scr) br.cond.dpnt.few .restore_and_exit
|
/linux-2.4.37.9/net/irda/irnet/ |
D | irnet.h | 355 #define DABORT(cond, ret, dbg, args...) \ argument 356 {if(cond) {\ 361 #define DASSERT(cond, ret, dbg, args...) \ argument 362 {if((DEBUG_ASSERT) && !(cond)) {\
|
/linux-2.4.37.9/arch/mips/math-emu/ |
D | cp1emu.c | 201 unsigned int cond; in cop1Emulate() local 424 cond = ctx->sr & fpucondbit[MIPSInst_RT(ir) >> 2]; in cop1Emulate() 426 cond = ctx->sr & FPU_CSR_COND; in cop1Emulate() 432 cond = !cond; in cop1Emulate() 444 if (cond) { in cop1Emulate() 531 cond = fpucondbit[MIPSInst_RT(ir) >> 2]; in cop1Emulate() 532 if (((ctx->sr & cond) != 0) == ((MIPSInst_RT(ir) & 1) != 0)) in cop1Emulate() 804 unsigned cond; in fpu_emu() local 853 cond = fpucondbit[MIPSInst_FT(ir) >> 2]; in fpu_emu() 854 if (((ctx->sr & cond) != 0) != in fpu_emu() [all …]
|
/linux-2.4.37.9/fs/jfs/ |
D | jfs_lock.h | 34 #define __SLEEP_COND(wq, cond, lock_cmd, unlock_cmd) \ argument 41 if (cond) \
|
/linux-2.4.37.9/arch/arm/kernel/ |
D | entry-header.S | 139 .macro adrsvc, cond, reg, label 140 adr\cond \reg, \label 200 .macro adrsvc, cond, reg, label 201 adr\cond \reg, \label 202 orr\cond \reg, \reg, #0x08000003
|
/linux-2.4.37.9/arch/alpha/boot/ |
D | misc.c | 63 # define Assert(cond,msg) {if(!(cond)) error(msg);} argument 70 # define Assert(cond,msg) argument
|
/linux-2.4.37.9/drivers/net/skfp/ |
D | srf.c | 191 void smt_srf_event(smc,code,index,cond) in smt_srf_event() argument 195 int cond ; 204 if (code == SMT_COND_MAC_DUP_ADDR && cond) { 219 if (*evc->evc_cond_state == cond) 228 DB_SMT("SRF: condition is %s\n",cond ? "ON":"OFF",0) ; 229 if (cond) {
|
/linux-2.4.37.9/net/ipv4/ |
D | tcp_diag.c | 339 struct tcpdiag_hostcond *cond = (struct tcpdiag_hostcond*)(op+1); in tcpdiag_bc_run() local 342 if (cond->port != -1 && in tcpdiag_bc_run() 343 cond->port != (op->code == TCPDIAG_BC_S_COND ? sk->num : ntohs(sk->dport))) { in tcpdiag_bc_run() 348 if (cond->prefix_len == 0) in tcpdiag_bc_run() 366 if (bitstring_match(addr, cond->addr, cond->prefix_len)) in tcpdiag_bc_run() 368 if (sk->family == AF_INET6 && cond->family == AF_INET) { in tcpdiag_bc_run() 371 bitstring_match(addr+3, cond->addr, cond->prefix_len)) in tcpdiag_bc_run()
|
/linux-2.4.37.9/arch/sh/boot/compressed/ |
D | misc.c | 58 # define Assert(cond,msg) {if(!(cond)) error(msg);} argument 65 # define Assert(cond,msg) argument
|
/linux-2.4.37.9/arch/cris/boot/compressed/ |
D | misc.c | 70 # define Assert(cond,msg) {if(!(cond)) error(msg);} argument 77 # define Assert(cond,msg) argument
|