HomeSort by: relevance | last modified time | path
    Searched defs:EQ (Results 1 - 13 of 13) sorted by relevancy

  /src/usr.bin/make/unit-tests/
directive-export-gmake.mk 90 EQ= =
92 export EQ_VAR${EQ}eq-value
  /src/tools/m4/bootstrap/
parser.h 5 #define EQ 261
parser.c 55 #define EQ 261
254 0,0,0,0,0,0,0,0,0,0,0,0,0,"NUMBER","ERROR","LOR","LAND","EQ","NE","LE","GE",
271 "expr : expr EQ expr",
  /src/usr.bin/tset/
map.c 53 #define EQ 0x02
56 #define GE (GT | EQ)
57 #define LE (LT | EQ)
122 mapp->conditional |= EQ;
154 mapp->conditional = ~mapp->conditional & (EQ | GT | LT);
172 if (mapp->conditional & EQ) {
201 case EQ:
  /src/lib/libc/regex/
regexec.c 124 #define EQ(a, b) ((a) == (b))
153 #undef EQ
176 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
  /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
codecs.c 109 #define EQ(x, y) \
121 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '+') |
122 (EQ(x, 63) & '/');
131 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '+') & 62) |
132 (EQ(c, '/') & 63);
134 return x | (EQ(x, 0) & (EQ(c, 'A') ^ 0xFF));
142 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '-') |
143 (EQ(x, 63) & '_');
152 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '-') & 62)
    [all...]
  /src/lib/libcrypt/
crypt-argon2.c 83 #define EQ(x, y) ((((0U - ((unsigned)(x) ^ (unsigned)(y))) >> 8) & 0xFF) ^ 0xFF)
96 (GE(c, '0') & LE(c, '9') & (c - ('0' - 52))) | (EQ(c, '+') & 62) |
97 (EQ(c, '/') & 63);
98 return x | (EQ(x, 0) & (EQ(c, 'A') ^ 0xFF));
  /src/usr.bin/mail/
mime_codecs.c 479 #define EQ Q /* '=' must be quoted */
488 N, N, N, N, N, N, N, N, N, N, N, N, N,EQ, N, N,
521 #undef EQ
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 631 void EQ(const Vector<uint32_t> &A, const Vector<uint32_t> &B) {
635 void EQ(const Vector<std::string> &A, const Vector<std::string> &B) {
651 EQ(NewFiles, Result);
689 EQ(M.Files[0].Features, {1, 2, 3});
690 EQ(M.Files[1].Features, {4, 5, 6});
704 EQ(M.Files[0].Features, {1, 2, 3});
705 EQ(M.Files[1].Features, {4, 5, 6});
706 EQ(M.Files[2].Features, {1, 3, 6});
708 EQ(NewFiles, {});
715 EQ(M.Files[0].Features, {1, 2, 3})
    [all...]
  /src/usr.bin/xlint/lint1/
op.h 90 EQ,
  /src/usr.bin/deroff/
deroff.c 86 * definitions, equations (both .EQ ... .EN and $...$),
214 static int EQ(pacmac);
1070 * equations (EQ) nested within a display
1097 EQ(pacmac unused)
1644 M(FNEST, 'E','Q', EQ), /* equation starting */
  /src/usr.bin/make/
cond.c 130 LT, LE, GT, GE, EQ, NE
522 case EQ:
532 if (op != EQ && op != NE) {
541 return ToToken((op == EQ) == (strcmp(lhs, rhs) == 0));
572 return par->p += 2, *out_op = EQ, true;
  /src/usr.sbin/syslogd/
syslogd.c 375 #define EQ(a) (strncmp(optarg, # a, sizeof(# a) - 1) == 0)
376 if (EQ(bsd) || EQ(rfc3264))
378 else if (EQ(syslog) || EQ(rfc5424))

Completed in 122 milliseconds