Lines Matching defs:quad
71 uint8_t quad[4];
74 quad[k] = reverseMap[(int32_t)code[i + k]];
77 if (quad[0] > 63 && quad[1] > 63) { // 63: limit
81 plain[j++] = (quad[0] << 2) | (quad[1] >> 4); // 2: fix offset, 4: fix offset
83 if (quad[2] >= 64) { // 2: fix offset, 64: limit
85 } else if (quad[3] >= 64) { // 3: fix offset, 64: limit
86 plain[j++] = (quad[1] << 4) | (quad[2] >> 2); // 2: fix offset, 4: fix offset
89 plain[j++] = (quad[1] << 4) | (quad[2] >> 2); // 2: fix offset, 4: fix offset
90 plain[j++] = (quad[2] << 6) | quad[3]; // 6: fix offset, 4: fix offset, 2: fix offset, 3: fix offset