Lines Matching refs:Base64
59 static const char Base64[] = variable
150 target[datalength++] = Base64[output[0]]; in b64_ntop()
151 target[datalength++] = Base64[output[1]]; in b64_ntop()
152 target[datalength++] = Base64[output[2]]; in b64_ntop()
153 target[datalength++] = Base64[output[3]]; in b64_ntop()
172 target[datalength++] = Base64[output[0]]; in b64_ntop()
173 target[datalength++] = Base64[output[1]]; in b64_ntop()
177 target[datalength++] = Base64[output[2]]; in b64_ntop()
209 pos = strchr(Base64, ch); in libresolv_hidden_def()
218 target[tarindex] = (pos - Base64) << 2; in libresolv_hidden_def()
226 target[tarindex] |= (pos - Base64) >> 4; in libresolv_hidden_def()
227 target[tarindex+1] = ((pos - Base64) & 0x0f) in libresolv_hidden_def()
237 target[tarindex] |= (pos - Base64) >> 2; in libresolv_hidden_def()
238 target[tarindex+1] = ((pos - Base64) & 0x03) in libresolv_hidden_def()
248 target[tarindex] |= (pos - Base64); in libresolv_hidden_def()