Home
last modified time | relevance | path

Searched refs:pStart (Results 1 - 2 of 2) sorted by relevance

/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp161 const unsigned char *pStart = nullptr; in Base64Encode() local
173 pStart = src; in Base64Encode()
181 while (pEnd - pStart >= 3) { in Base64Encode()
183 *pos = table[pStart[0] >> 2]; in Base64Encode()
185 *(pos + 1) = table[((pStart[0] & LOWER_2_BITS_MASK) << 4) | (pStart[1] >> 4)]; in Base64Encode()
187 *(pos + 2) = table[((pStart[1] & LOWER_4_BITS_MASK) << 2) | (pStart[2] >> 6)]; in Base64Encode()
189 *(pos + 3) = table[pStart[2] & LOWER_6_BITS_MASK]; in Base64Encode()
192 // 3 : the pointer of pStart scroll in Base64Encode()
[all...]
/commonlibrary/ets_utils/js_api_module/xml/
H A Djs_xml.h35 * @param pStart is the pointer.
39 XmlSerializer(char *pStart, size_t bufferLength, const std::string &encoding = "utf-8") :pStart_(pStart), in XmlSerializer() argument

Completed in 2 milliseconds