Searched refs:DIR_MASK (Results 1 – 1 of 1) sorted by relevance
173 DIR_MASK = 0x30000000, enumerator175 DIR_UNDEFINED = DIR_MASK, // MUST have all bits set224 inline bool isGlobal() const { return (mIndex & DIR_MASK) == DIR_GLOBAL; } in isGlobal()226 inline bool forInput() const { return (mIndex & DIR_MASK) == DIR_INPUT; } in forInput()228 inline bool forOutput() const { return (mIndex & DIR_MASK) == DIR_OUTPUT; } in forOutput()276 mIndex = (mIndex & ~DIR_MASK) | (output ? DIR_OUTPUT : DIR_INPUT); in setPort()331 && (mIndex & DIR_MASK) != DIR_UNDEFINED; in isValid()350 mIndex = (mIndex & ~DIR_MASK) | IS_STREAM_FLAG; in convertToStream()356 mIndex = (mIndex & ~(DIR_MASK | IS_STREAM_FLAG)); in convertToPort()361 mIndex = (mIndex & ~(DIR_MASK | IS_STREAM_FLAG)) | DIR_GLOBAL; in convertToGlobal()[all …]