| /src/sys/dev/raidframe/ |
| rf_utils.c | 114 int val = 0, negate = 0; local 117 negate = 1; 122 return ((negate) ? -val : val);
|
| rf_utils.c | 114 int val = 0, negate = 0; local 117 negate = 1; 122 return ((negate) ? -val : val);
|
| /src/usr.bin/sort/ |
| fields.c | 260 u_char negate; local 263 negate = 0xff; 265 negate = 0; 276 negate ^= 0xff; 313 *pos++ = negate ^ exponent; 329 *pos++ = negate ^ (t + 0xc0); 332 *pos++ = negate ^ (exponent >> (c * 8)); 360 *pos++ = negate ^ (val + 0x40); 366 *last_nz_pos++ = negate;
|
| fields.c | 260 u_char negate; local 263 negate = 0xff; 265 negate = 0; 276 negate ^= 0xff; 313 *pos++ = negate ^ exponent; 329 *pos++ = negate ^ (t + 0xc0); 332 *pos++ = negate ^ (exponent >> (c * 8)); 360 *pos++ = negate ^ (val + 0x40); 366 *last_nz_pos++ = negate;
|
| /src/lib/libc/arch/mips/gen/ |
| modf.S | 65 bc1f 2f # No -> will have to negate result 69 sub.d $f0,$f2,$f4 # Remove fudge factor and negate
|
| modf.S | 65 bc1f 2f # No -> will have to negate result 69 sub.d $f0,$f2,$f4 # Remove fudge factor and negate
|
| ldexp.S | 176 neg.d $f0, $f0 # negate result 195 neg.d $f0, $f0 # negate result 202 neg.d $f0, $f0 # negate result
|
| ldexp.S | 176 neg.d $f0, $f0 # negate result 195 neg.d $f0, $f0 # negate result 202 neg.d $f0, $f0 # negate result
|
| /src/lib/libc/gen/ |
| fnmatch.c | 76 int negate, ok, need; local 88 if ((negate = (*pattern == '!' || *pattern == '^')) != 0) 113 return ok == negate ? NULL : pattern;
|
| fnmatch.c | 76 int negate, ok, need; local 88 if ((negate = (*pattern == '!' || *pattern == '^')) != 0) 113 return ok == negate ? NULL : pattern;
|
| /src/sys/lib/libkern/arch/m68k/ |
| divsi3.S | 68 .Lret: negl %d0 | negate quotient
|
| modsi3.S | 73 negl %d1 | negate modulus
|
| divsi3.S | 68 .Lret: negl %d0 | negate quotient
|
| modsi3.S | 73 negl %d1 | negate modulus
|
| /src/usr.bin/dc/ |
| bcode.h | 94 void negate(struct number *);
|
| bcode.h | 94 void negate(struct number *);
|
| /src/bin/sh/ |
| parser.c | 292 int negate; local 296 negate = 0; 301 if (posix && negate) 304 negate++; 325 if (negate) { 327 (negate&1) ? "" : "double ")); 329 n2->type = (negate & 1) ? NNOT : NDNOT; 347 int negate = 0; local 368 negate++; 606 if (negate) { 629 int negate = 0; local [all...] |
| parser.c | 292 int negate; local 296 negate = 0; 301 if (posix && negate) 304 negate++; 325 if (negate) { 327 (negate&1) ? "" : "double ")); 329 n2->type = (negate & 1) ? NNOT : NDNOT; 347 int negate = 0; local 368 negate++; 606 if (negate) { 629 int negate = 0; local [all...] |
| /src/sys/arch/hppa/stand/common/ |
| milli_tiny.S | 47 subt,= %r0,%r25,%r1 ; trap divide by 0, negate 91 subt,= %r0,%r25,%r1 ; trap divide by 0, negate
|
| milli_tiny.S | 47 subt,= %r0,%r25,%r1 ; trap divide by 0, negate 91 subt,= %r0,%r25,%r1 ; trap divide by 0, negate
|
| /src/sys/net/ |
| bpfjit.c | 1640 jmp_to_cond(const struct bpf_insn *pc, bool negate, int *res) 1651 *res |= negate ? SLJIT_LESS_EQUAL : SLJIT_GREATER; 1654 *res |= negate ? SLJIT_LESS : SLJIT_GREATER_EQUAL; 1657 *res |= negate ? SLJIT_NOT_EQUAL : SLJIT_EQUAL; 1660 *res |= negate ? SLJIT_EQUAL : SLJIT_NOT_EQUAL; 1713 int branching, negate; local 2015 negate = (jt == 0) ? 1 : 0; 2021 if (!jmp_to_cond(pc, negate, &cond)) 2035 if (!jmp_to_cond(pc, negate, &cond)) 2044 BJ_ASSERT(jtf[negate].sjump == NULL) [all...] |
| bpfjit.c | 1640 jmp_to_cond(const struct bpf_insn *pc, bool negate, int *res) 1651 *res |= negate ? SLJIT_LESS_EQUAL : SLJIT_GREATER; 1654 *res |= negate ? SLJIT_LESS : SLJIT_GREATER_EQUAL; 1657 *res |= negate ? SLJIT_NOT_EQUAL : SLJIT_EQUAL; 1660 *res |= negate ? SLJIT_EQUAL : SLJIT_NOT_EQUAL; 1713 int branching, negate; local 2015 negate = (jt == 0) ? 1 : 0; 2021 if (!jmp_to_cond(pc, negate, &cond)) 2035 if (!jmp_to_cond(pc, negate, &cond)) 2044 BJ_ASSERT(jtf[negate].sjump == NULL) [all...] |
| /src/usr.bin/make/ |
| cond.c | 908 bool (*evalBare)(const char *), bool negate, 919 par.negateEvalBare = negate; 1040 bool negate; local 1113 if (!DetermineKindOfConditional(&p, &plain, &evalBare, &negate)) 1153 res = CondEvalExpression(p, plain, evalBare, negate, true, false);
|
| cond.c | 908 bool (*evalBare)(const char *), bool negate, 919 par.negateEvalBare = negate; 1040 bool negate; local 1113 if (!DetermineKindOfConditional(&p, &plain, &evalBare, &negate)) 1153 res = CondEvalExpression(p, plain, evalBare, negate, true, false);
|
| /src/bin/pax/ |
| pat_rep.c | 598 int negate; local 601 if ((negate = (*pattern == '!')) != 0) 619 return (ok == negate ? NULL : pattern);
|