Home | History | Annotate | Download | only in logd

Lines Matching defs:SIGNATURE_MASK

92 #define SIGNATURE_MASK 0xF0
93 // <digit> following ('0' to '9' masked with ~SIGNATURE_MASK) added to signature
94 #define LESS_THAN_SIG SIGNATURE_MASK
95 #define OPEN_BRACKET_SIG ((SIGNATURE_MASK << 1) & SIGNATURE_MASK)
107 if ((*s & SIGNATURE_MASK) == LESS_THAN_SIG) {
108 *s = (*s & ~SIGNATURE_MASK) + '0';
114 if ((*s & SIGNATURE_MASK) == OPEN_BRACKET_SIG) {
115 *s = (*s == OPEN_BRACKET_SPACE) ? ' ' : (*s & ~SIGNATURE_MASK) + '0';
149 *s &= ~SIGNATURE_MASK;
180 *s &= ~SIGNATURE_MASK;