Lines Matching defs:mask
69 Py_UCS4 mask;
76 mask = MASK_ASCII;
79 if (bits & mask) {
80 if (mask == mask_limit) {
84 if (mask == MASK_ASCII) {
86 mask = MASK_UCS1;
89 /* mask can't be MASK_UCS2 because of mask_limit above */
90 assert(mask == MASK_UCS1);
92 mask = MASK_UCS2;
94 /* We check the new mask on the same chars in the next iteration */
100 if (p[0] & mask) {
101 if (mask == mask_limit) {
105 if (mask == MASK_ASCII) {
107 mask = MASK_UCS1;
110 /* mask can't be MASK_UCS2 because of mask_limit above */
111 assert(mask == MASK_UCS1);
113 mask = MASK_UCS2;
115 /* We check the new mask on the same chars in the next iteration */