HomeSort by: relevance | last modified time | path
    Searched refs:Rune (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/netpgp/dist/src/lib/
bufgap.c 80 #define Rune char
96 chartorune(Rune *rp, char *s)
103 priorrune(Rune *rp, char *s)
182 Rune r;
239 Rune r;
410 Rune r;
446 Rune r;
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bufgap.c 69 #define Rune char
85 chartorune(Rune *rp, char *s)
92 priorrune(Rune *rp, char *s)
171 Rune r;
228 Rune r;
399 Rune r;
435 Rune r;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp 564 static void encodeUtf8(uint32_t Rune, std::string &Out) {
565 if (Rune < 0x80) {
566 Out.push_back(Rune & 0x7F);
567 } else if (Rune < 0x800) {
568 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6);
569 uint8_t SecondByte = 0x80 | (Rune & 0x3F);
572 } else if (Rune < 0x10000) {
573 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12);
574 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6);
575 uint8_t ThirdByte = 0x80 | (Rune & 0x3F)
    [all...]

Completed in 26 milliseconds