| /NextBSD/sys/dev/sfxge/common/ |
| HD | efx_sram.c | 210 __in boolean_t negate, in efx_sram_byte_increment_set() argument 216 _NOTE(ARGUNUSED(negate)) in efx_sram_byte_increment_set() 225 __in boolean_t negate, in efx_sram_all_the_same_set() argument 230 if (negate) in efx_sram_all_the_same_set() 239 __in boolean_t negate, in efx_sram_bit_alternate_set() argument 245 EFX_DWORD_0, (negate) ? 0x55555555 : 0xaaaaaaaa, in efx_sram_bit_alternate_set() 246 EFX_DWORD_1, (negate) ? 0x55555555 : 0xaaaaaaaa); in efx_sram_bit_alternate_set() 252 __in boolean_t negate, in efx_sram_byte_alternate_set() argument 258 EFX_DWORD_0, (negate) ? 0x00ff00ff : 0xff00ff00, in efx_sram_byte_alternate_set() 259 EFX_DWORD_1, (negate) ? 0x00ff00ff : 0xff00ff00); in efx_sram_byte_alternate_set() [all …]
|
| /NextBSD/contrib/gcclibs/libiberty/ |
| HD | fnmatch.c | 127 register int negate; in fnmatch() local 136 negate = (*p == '!' || *p == '^'); in fnmatch() 137 if (negate) in fnmatch() 180 if (!negate) in fnmatch() 197 if (negate) in fnmatch()
|
| /NextBSD/contrib/binutils/libiberty/ |
| HD | fnmatch.c | 127 register int negate; in fnmatch() local 136 negate = (*p == '!' || *p == '^'); in fnmatch() 137 if (negate) in fnmatch() 180 if (!negate) in fnmatch() 197 if (negate) in fnmatch()
|
| /NextBSD/contrib/libarchive/test_utils/ |
| HD | test_utils.c | 40 int negate = 0; in test_filter() local 46 negate = 1; in test_filter() 73 return (negate) ? !retval : retval; in test_filter()
|
| /NextBSD/crypto/heimdal/lib/roken/ |
| HD | fnmatch.c | 144 int negate, ok; in rangematch() local 154 if (negate = (*pattern == '!' || *pattern == '^')) in rangematch() 174 return (ok == negate ? NULL : pattern); in rangematch()
|
| HD | getarg.c | 353 int negate = 0; in arg_match_long() local 371 negate = 0; in arg_match_long() 383 negate = !negate; in arg_match_long() 431 *flag = !negate; in arg_match_long() 436 *flag = negate; in arg_match_long()
|
| /NextBSD/contrib/apr/strings/ |
| HD | apr_fnmatch.c | 82 int negate; in fnmatch_ch() local 89 negate = ((**pattern == '!') || (**pattern == '^')); in fnmatch_ch() 90 if (negate) in fnmatch_ch() 103 return (result ^ negate); in fnmatch_ch()
|
| /NextBSD/contrib/gcc/config/ |
| HD | fp-bit.h | 239 # define negate __negsf2 macro 253 # define negate __negdf2 macro 275 # define negate __negtf2 macro 295 # define negate __negsf2 macro 315 # define negate __negdf2 macro 496 extern FLO_type negate (FLO_type);
|
| /NextBSD/sys/libkern/ |
| HD | fnmatch.c | 159 int negate, ok; in rangematch() local 169 if ( (negate = (*pattern == '!' || *pattern == '^')) ) in rangematch() 212 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH); in rangematch()
|
| /NextBSD/contrib/gcclibs/libcpp/ |
| HD | expr.c | 1460 bool overflow, negate = false; in num_mul() local 1467 negate = !negate, lhs = num_negate (lhs, precision); in num_mul() 1469 negate = !negate, rhs = num_negate (rhs, precision); in num_mul() 1490 if (negate) in num_mul() 1496 result.overflow = overflow || (num_positive (result, precision) ^ !negate in num_mul() 1511 bool negate = false, lhs_neg = false; in num_div_op() local 1518 negate = !negate, lhs_neg = true, lhs = num_negate (lhs, precision); in num_div_op() 1520 negate = !negate, rhs = num_negate (rhs, precision); in num_div_op() 1584 if (negate) in num_div_op() 1586 result.overflow = (num_positive (result, precision) ^ !negate in num_div_op()
|
| /NextBSD/lib/libc/gen/ |
| HD | fnmatch.c | 237 int negate, ok; in rangematch() local 251 if ( (negate = (*pattern == '!' || *pattern == '^')) ) in rangematch() 308 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH); in rangematch()
|
| /NextBSD/contrib/top/ |
| HD | commands.c | 467 register char negate; local 476 if ((negate = (*str == '-')) != 0) 486 if (negate)
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | parse.c | 440 int negate = 0; in write_dollar_variable() local 446 negate = 1; in write_dollar_variable() 452 i = -negate; in write_dollar_variable() 461 i = atoi (str.ptr + 1 + negate); in write_dollar_variable() 462 if (negate) in write_dollar_variable()
|
| /NextBSD/contrib/gcc/ |
| HD | tree-ssa-phiopt.c | 884 bool negate; in abs_replacement() local 953 negate = true; in abs_replacement() 955 negate = false; in abs_replacement() 959 if (negate) in abs_replacement() 976 if (negate) in abs_replacement()
|
| HD | tree-ssa-reassoc.c | 1204 tree negate; in repropagate_negates() local 1206 for (i = 0; VEC_iterate (tree, broken_up_subtracts, i, negate); i++) in repropagate_negates() 1208 tree user = get_single_immediate_use (negate); in repropagate_negates() 1224 if (TREE_OPERAND (TREE_OPERAND (user, 1), 0) == negate) in repropagate_negates() 1233 if (TREE_OPERAND (TREE_OPERAND (user, 1), 1) == negate) in repropagate_negates() 1236 TREE_OPERAND (rhs, 1) = get_unary_op (negate, NEGATE_EXPR); in repropagate_negates()
|
| HD | ifcvt.c | 1725 int negate; in noce_try_abs() local 1737 negate = 0; in noce_try_abs() 1741 negate = 1; in noce_try_abs() 1756 negate = !negate; in noce_try_abs() 1801 negate = !negate; in noce_try_abs() 1818 if (target && negate) in noce_try_abs()
|
| /NextBSD/lib/libc/mips/gen/ |
| HD | ldexp.S | 178 neg.d $f0, $f0 # negate result 197 neg.d $f0, $f0 # negate result 204 neg.d $f0, $f0 # negate result
|
| /NextBSD/usr.bin/dc/ |
| HD | bcode.h | 94 void negate(struct number *);
|
| /NextBSD/contrib/gcc/config/rs6000/ |
| HD | darwin-ldouble-format | 68 The unary negate operation operates by negating the low and high parts. 70 An absolute or absolute-negate operation must be done by comparing
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | cpu-ia64-opc.c | 408 int negate; in ext_inc3() local 411 negate = val & 0x4; in ext_inc3() 419 if (negate) in ext_inc3()
|
| /NextBSD/bin/pax/ |
| HD | pat_rep.c | 569 int negate; local 572 if ((negate = (*pattern == '!')) != 0) 590 return (ok == negate ? NULL : pattern);
|
| /NextBSD/contrib/libstdc++/include/backward/ |
| D | function.h | 73 using std::negate;
|
| /NextBSD/bin/sh/ |
| HD | parser.c | 368 int negate, t; in pipeline() local 370 negate = 0; in pipeline() 374 negate = !negate; in pipeline() 400 if (negate) { in pipeline()
|
| /NextBSD/contrib/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineAddSub.cpp | 51 void negate(); 131 void negate() { Coeff.negate(); } in negate() function in __anon080f30f50111::FAddend 300 negate(); in operator *=() 327 void FAddendCoef::negate() { in negate() function in FAddendCoef 383 Addend.negate(); in drillValueDownOneStep()
|
| /NextBSD/contrib/llvm/lib/Target/Hexagon/ |
| HD | HexagonIntrinsicsV4.td | 156 // Vector conditional negate 191 // Vector conditional negate
|