HomeSort by relevance Sort by last modified time
    Searched refs:b64t (Results 1 - 2 of 2) sorted by null

  /external/ipsec-tools/src/racoon/
getcertsbyname.c 351 static const char b64t[] = local
357 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
358 printf("%c", b64t[((p[0] << 4) & 0x30) | ((p[1] >> 4) & 0x0f)]);
359 printf("%c", b64t[((p[1] << 2) & 0x3c) | ((p[2] >> 6) & 0x03)]);
360 printf("%c", b64t[p[2] & 0x3f]);
366 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
367 printf("%c", b64t[((p[0] << 4) & 0x30)| ((p[1] >> 4) & 0x0f)]);
368 printf("%c", b64t[((p[1] << 2) & 0x3c)]);
371 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
372 printf("%c", b64t[((p[0] << 4) & 0x30)])
    [all...]
  /external/grub/stage2/
md5.c 86 static const char *b64t = variable
289 if (*p++ != b64t[w & 0x3f])
294 *p++ = b64t[w & 0x3f];
306 if (*p++ != b64t[w & 0x3f])
311 *p++ = b64t[w & 0x3f];

Completed in 665 milliseconds