HomeSort by: relevance | last modified time | path
    Searched defs:to_b64 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/util/
base64_code.c 81 static unsigned char to_b64[] = variable
109 VSTRING_ADDCH(result, to_b64[cp[0] >> 2]);
111 VSTRING_ADDCH(result, to_b64[(cp[0] & 0x3) << 4 | cp[1] >> 4]);
113 VSTRING_ADDCH(result, to_b64[(cp[1] & 0xf) << 2 | cp[2] >> 6]);
114 VSTRING_ADDCH(result, to_b64[cp[2] & 0x3f]);
116 VSTRING_ADDCH(result, to_b64[(cp[1] & 0xf) << 2]);
121 VSTRING_ADDCH(result, to_b64[(cp[0] & 0x3) << 4]);
168 for (cp = to_b64; cp < to_b64 + sizeof(to_b64) - 1; cp++
    [all...]
base64_code.c 81 static unsigned char to_b64[] = variable
109 VSTRING_ADDCH(result, to_b64[cp[0] >> 2]);
111 VSTRING_ADDCH(result, to_b64[(cp[0] & 0x3) << 4 | cp[1] >> 4]);
113 VSTRING_ADDCH(result, to_b64[(cp[1] & 0xf) << 2 | cp[2] >> 6]);
114 VSTRING_ADDCH(result, to_b64[cp[2] & 0x3f]);
116 VSTRING_ADDCH(result, to_b64[(cp[1] & 0xf) << 2]);
121 VSTRING_ADDCH(result, to_b64[(cp[0] & 0x3) << 4]);
168 for (cp = to_b64; cp < to_b64 + sizeof(to_b64) - 1; cp++
    [all...]

Completed in 34 milliseconds