Home
last modified time | relevance | path

Searched refs:FLAGBASE (Results 1 – 2 of 2) sorted by relevance

/dports/textproc/enchant/enchant-1.6.0/src/ispell/
H A Dispell.h385 #define FLAGBASE ((MASKTYPE_WIDTH) - 6) macro
388 #define FLAGBASE ((MASKTYPE_WIDTH) - 6) macro
390 #define FLAGBASE 0 macro
514 #define USED ((MASKTYPE) 1 << (FLAGBASE + 0))
515 #define KEEP ((MASKTYPE) 1 << (FLAGBASE + 1))
519 #define ANYCASE ((MASKTYPE) 0 << (FLAGBASE + 2))
520 #define ALLCAPS ((MASKTYPE) 1 << (FLAGBASE + 2))
521 #define CAPITALIZED ((MASKTYPE) 2 << (FLAGBASE + 2))
522 #define FOLLOWCASE ((MASKTYPE) 3 << (FLAGBASE + 2))
523 #define CAPTYPEMASK ((MASKTYPE) 3 << (FLAGBASE + 2))
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/VectorCompiler/lib/GenXCodeGen/
H A DGenXIntrinsics.h26 #define GENX_ITR_FLAGENUM(o, v) ((v) << ((o) + FLAGBASE))
27 #define GENX_ITR_FLAGMASK(o, w) (((1 << (w)) - 1) << ((o) + FLAGBASE))
65 FLAGBASE = 8, enumerator
67 CATBASE = FLAGBASE + FLAGWIDTH,
70 FLAGMASK = ((~((1 << FLAGBASE) - 1)) ^ CATMASK),
237 return (Info & ARGCOUNTMASK) >> FLAGBASE; in getArgCountMin()