Lines Matching refs:strCode
3514 const wchar_t* strCode = L"0123456789abcdef"; in EncodeURL() local
3521 strEncode[1] = strCode[iIndex]; in EncodeURL()
3522 strEncode[2] = strCode[ch - iIndex * 16]; in EncodeURL()
3536 strEncode[1] = strCode[iIndex]; in EncodeURL()
3537 strEncode[2] = strCode[ch - iIndex * 16]; in EncodeURL()
3560 strEncode[1] = strCode[iIndex]; in EncodeURL()
3561 strEncode[2] = strCode[ch - iIndex * 16]; in EncodeURL()
3569 wchar_t tmp = strCode[ch % iRadix]; in EncodeURL()
3573 strTmp += strCode[ch]; in EncodeURL()
3604 const wchar_t* strCode = L"0123456789abcdef"; in EncodeHTML() local
3628 strEncode[3] = strCode[iIndex]; in EncodeHTML()
3629 strEncode[4] = strCode[ch - iIndex * 16]; in EncodeHTML()
3636 strEncode[3] = strCode[iBigByte / 16]; in EncodeHTML()
3637 strEncode[4] = strCode[iBigByte % 16]; in EncodeHTML()
3638 strEncode[5] = strCode[iLittleByte / 16]; in EncodeHTML()
3639 strEncode[6] = strCode[iLittleByte % 16]; in EncodeHTML()
3660 const wchar_t* strCode = L"0123456789abcdef"; in EncodeXML() local
3693 strEncode[3] = strCode[iIndex]; in EncodeXML()
3694 strEncode[4] = strCode[ch - iIndex * 16]; in EncodeXML()
3701 strEncode[3] = strCode[iBigByte / 16]; in EncodeXML()
3702 strEncode[4] = strCode[iBigByte % 16]; in EncodeXML()
3703 strEncode[5] = strCode[iLittleByte / 16]; in EncodeXML()
3704 strEncode[6] = strCode[iLittleByte % 16]; in EncodeXML()