/src/lib/libc/gen/ |
fnmatch.c | 76 int negate, ok, need; local in function:rangematch 88 if ((negate = (*pattern == '!' || *pattern == '^')) != 0) 113 return ok == negate ? NULL : pattern;
|
/src/sys/dev/raidframe/ |
rf_utils.c | 114 int val = 0, negate = 0; local in function:rf_atoi 117 negate = 1; 122 return ((negate) ? -val : val);
|
/src/usr.bin/sort/ |
fields.c | 260 u_char negate; local in function:number 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/bin/pax/ |
pat_rep.c | 598 int negate; local in function:range_match 601 if ((negate = (*pattern == '!')) != 0) 619 return (ok == negate ? NULL : pattern);
|
/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 in function:generate_insn_code 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/dc/ |
bcode.c | 434 negate(struct number *n) function in typeref:typename:void 1199 negate(p);
|
/src/bin/sh/ |
parser.c | 292 int negate; local in function:pipeline 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 in function:command 368 negate++; 606 if (negate) { 629 int negate = 0; local in function:simplecmd [all...] |
/src/usr.bin/make/ |
cond.c | 908 bool (*evalBare)(const char *), bool negate, 919 par.negateEvalBare = negate; 1040 bool negate; local in function:Cond_EvalLine 1113 if (!DetermineKindOfConditional(&p, &plain, &evalBare, &negate)) 1153 res = CondEvalExpression(p, plain, evalBare, negate, true, false);
|