Home | History | Annotate | Download | only in gen

Lines Matching defs:bitcmd

65 #define	SET_LEN	6		/* initial # of bitcmd struct to malloc */
66 #define SET_LEN_INCR 4 /* # of bitcmd structs to add as needed */
68 typedef struct bitcmd {
72 } BITCMD;
80 static BITCMD *addcmd(BITCMD *, mode_t, mode_t, mode_t, mode_t);
81 static void compress_mode(BITCMD *);
83 static void dumpmode(BITCMD *);
87 * Given the old mode and an array of bitcmd structures, apply the operations
88 * described in the bitcmd structures to the old mode, and return the new mode.
95 const BITCMD *set;
100 set = (const BITCMD *)bbox;
164 BITCMD *newset; \
184 BITCMD *set, *saveset, *endset;
368 static BITCMD *
369 addcmd(BITCMD *set, mode_t op, mode_t who, mode_t oparg, mode_t mask)
416 dumpmode(BITCMD *set)
433 * Given an array of bitcmd structures, compress by compacting consecutive
439 compress_mode(BITCMD *set)
441 BITCMD *nset;