/freebsd/lib/libc/gen/ |
H A D | fts-compat11.c | 67 #define ISSET(opt) (sp->fts_options & (opt)) macro 70 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd)) 136 if (ISSET(FTS_LOGICAL)) in freebsd11_fts_open() 162 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW), -1); in freebsd11_fts_open() 205 if (!ISSET(FTS_NOCHDIR) && in freebsd11_fts_open() 270 if (!ISSET(FTS_NOCHDIR)) { in freebsd11_fts_close() 305 if (sp->fts_cur == NULL || ISSET(FTS_STOP)) in freebsd11_fts_read() 330 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) { in freebsd11_fts_read() 345 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) { in freebsd11_fts_read() 357 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) { in freebsd11_fts_read() [all …]
|
H A D | fts.c | 66 #define ISSET(opt) (sp->fts_options & (opt)) macro 69 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd)) 135 if (ISSET(FTS_LOGICAL)) in fts_open() 161 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW), -1); in fts_open() 204 if (!ISSET(FTS_NOCHDIR) && in fts_open() 269 if (!ISSET(FTS_NOCHDIR)) { in fts_close() 304 if (sp->fts_cur == NULL || ISSET(FTS_STOP)) in fts_read() 329 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) { in fts_read() 344 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) { in fts_read() 356 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) { in fts_read() [all …]
|
H A D | fts-compat.c | 78 #define ISSET(opt) (sp->fts_options & (opt)) macro 81 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd)) 142 if (ISSET(FTS_LOGICAL)) in __fts_open_44bsd() 172 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW)); in __fts_open_44bsd() 215 if (!ISSET(FTS_NOCHDIR) && in __fts_open_44bsd() 280 if (!ISSET(FTS_NOCHDIR)) { in __fts_close_44bsd() 315 if (sp->fts_cur == NULL || ISSET(FTS_STOP)) in __fts_read_44bsd() 340 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) { in __fts_read_44bsd() 355 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) { in __fts_read_44bsd() 367 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) { in __fts_read_44bsd() [all …]
|
/freebsd/contrib/nvi/regex/ |
H A D | regexec.c | 66 #define ISSET(v, n) ((v) & (1 << (n))) macro 92 #undef ISSET 113 #define ISSET(v, n) ((v)[n]) macro
|
H A D | engine.c | 740 if (ISSET(st, stopst) || p == stop) in fast() 755 if (ISSET(st, stopst)) in fast() 823 if (ISSET(st, stopst)) in slow() 982 if (ISSET(st, i)) { in print()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | regexec.c | 63 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) macro 89 #undef ISSET 110 #define ISSET(v, n) ((v)[n]) macro
|
H A D | regengine.inc | 785 if (ISSET(st, stopst) || p == stop) 800 if (ISSET(st, stopst)) 890 if (ISSET(st, stopst)) 1043 if (ISSET(st, i)) {
|
/freebsd/lib/libc/regex/ |
H A D | regexec.c | 97 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) macro 126 #undef ISSET 149 #define ISSET(v, n) ((v)[n]) macro
|
H A D | engine.c | 945 if (ISSET(st, stopst)) { in walk() 971 if (ISSET(st, stopst)) in walk() 1148 if (ISSET(st, i)) { in print()
|
/freebsd/sys/kern/ |
H A D | kern_ubsan.c | 57 #define ISSET(x, y) ((x) & (y)) macro 88 #define ISSET(t, f) ((t) & (f)) macro 366 …szLocation, ISSET(pData->mType->mTypeInfo, NUMBER_SIGNED_BIT) ? "signed" : "unsigned", szLHS, szOp… in HandleOverflow() 1237 if (ISSET(ubsan_flags, UBSAN_STDOUT)) { in Report() 1244 if (ISSET(ubsan_flags, UBSAN_STDERR)) { in Report() 1251 if (ISSET(ubsan_flags, UBSAN_SYSLOG)) { in Report() 1258 if (isFatal || ISSET(ubsan_flags, UBSAN_ABORT)) { in Report() 1285 return ISSET(siOldValue, ACK_REPORTED); in isAlreadyReported() 1353 ASSERT(ISSET(pType->mTypeInfo, NUMBER_SIGNED_BIT)); 1380 ASSERT(!ISSET(pType->mTypeInfo, NUMBER_SIGNED_BIT)); [all …]
|
/freebsd/contrib/mandoc/ |
H A D | compat_fts.c | 66 #define ISSET(opt) (sp->fts_options & (opt)) macro 231 if (sp->fts_cur == NULL || ISSET(FTS_STOP)) in fts_read() 245 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) { in fts_read() 261 if (ISSET(FTS_STOP)) in fts_read()
|
/freebsd/lib/libc/db/hash/ |
H A D | hash.h | 151 #define ISSET(A, N) ((A)[(N)/BITS_PER_MAP] & (1<<((N)%BITS_PER_MAP))) macro
|
/freebsd/share/doc/psd/05.sysman/ |
H A D | spell.ok | 26 ISSET
|
/freebsd/share/doc/psd/21.ipc/ |
H A D | spell.ok | 52 ISSET
|
/freebsd/sys/dev/rtsx/ |
H A D | rtsx.c | 316 #define ISSET(t, f) ((t) & (f)) macro 2438 if (ISSET(cmd->flags, MMC_RSP_PRESENT)) { 2491 read = ISSET(cmd->data->flags, MMC_DATA_READ); 2758 int read = ISSET(cmd->data->flags, MMC_DATA_READ); 2819 read = ISSET(cmd->data->flags, MMC_DATA_READ); 2915 read = ISSET(cmd->data->flags, MMC_DATA_READ); 3464 if (!ISSET(sc->rtsx_flags, RTSX_F_CARD_PRESENT)) { 3471 !ISSET(sc->rtsx_flags, RTSX_F_SDIO_SUPPORT)) {
|
/freebsd/libexec/getty/ |
H A D | subr.c | 228 #define ISSET(t, f) ((t) & (f)) macro
|