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

  /src/external/bsd/nvi/dist/common/
util.h 27 #define F_ISSET(p, f) FL_ISSET((p)->flags, f)
options.c 591 if (F_ISSET(op, OPT_NOUNSET) && turnoff) {
599 if (F_ISSET(op, OPT_NOSET) && !turnoff) {
624 if (!F_ISSET(op, OPT_ALWAYS)) {
711 if (F_ISSET(op, OPT_NOZERO) && value == 0) {
722 if (!F_ISSET(op, OPT_ALWAYS) &&
756 if (F_ISSET(op, OPT_PAIRS) && STRLEN(sep) & 1) {
768 if (!F_ISSET(op, OPT_ALWAYS) &&
808 op = F_ISSET(&sp->opts[opt], OPT_GLOBAL) ?
898 if (F_ISSET(op, OPT_NDISP))
906 if (F_ISSET(op, OPT_ADISP)
    [all...]
  /src/lib/libc/db/btree/
btree.h 44 #define F_ISSET(p, f) ((p)->flags & (f))
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 624 #define F_ISSET(w, f) (((w) & (f)) == (f))
901 #define IS_LEAF(p) F_ISSET(MP_FLAGS(p), P_LEAF)
903 #define IS_LEAF2(p) F_ISSET(MP_FLAGS(p), P_LEAF2)
905 #define IS_BRANCH(p) F_ISSET(MP_FLAGS(p), P_BRANCH)
907 #define IS_OVERFLOW(p) F_ISSET(MP_FLAGS(p), P_OVERFLOW)
909 #define IS_SUBP(p) F_ISSET(MP_FLAGS(p), P_SUBP)
1652 return F_ISSET(n->mn_flags, F_BIGDATA) ? ": overflow page" :
1653 tp[F_ISSET(n->mn_flags, F_DUPDATA)][F_ISSET(n->mn_flags, F_SUBDATA)];
1706 if (F_ISSET(node->mn_flags, F_BIGDATA)
    [all...]

Completed in 64 milliseconds