• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:inBuff

333 size_t wxMBConv::MB2WC(wchar_t *outBuff, const char *inBuff, size_t outLen) const
335 size_t rc = ToWChar(outBuff, outLen, inBuff);
346 size_t wxMBConv::WC2MB(char *outBuff, const wchar_t *inBuff, size_t outLen) const
348 size_t rc = FromWChar(outBuff, outLen, inBuff);
402 wxMBConv::cMB2WC(const char *inBuff, size_t inLen, size_t *outLen) const
404 const size_t dstLen = ToWChar(NULL, 0, inBuff, inLen);
408 if ( ToWChar(wbuf.data(), dstLen, inBuff, inLen) != wxCONV_FAILED )
428 wxMBConv::cWC2MB(const wchar_t *inBuff, size_t inLen, size_t *outLen) const
430 size_t dstLen = FromWChar(NULL, 0, inBuff, inLen);
436 if ( FromWChar(buf.data(), dstLen, inBuff, inLen) != wxCONV_FAILED )
972 const wxUint16 *inBuff = wx_reinterpret_cast(const wxUint16 *, src);
973 for ( srcLen = 1; *inBuff++; srcLen++ )
1056 const wxUint16 *inBuff = wx_reinterpret_cast(const wxUint16 *, src);
1057 for ( size_t n = 0; n < srcLen; n++, inBuff++ )
1059 *dst++ = wxUINT16_SWAP_ALWAYS(*inBuff);
1114 const wxUint16 *inBuff = wx_reinterpret_cast(const wxUint16 *, src);
1115 for ( const wxUint16 * const inEnd = inBuff + inLen; inBuff < inEnd; )
1117 const wxUint32 ch = wxDecodeSurrogate(&inBuff);
1118 if ( !inBuff )
1187 const wxUint16 *inBuff = wx_reinterpret_cast(const wxUint16 *, src);
1188 for ( const wxUint16 * const inEnd = inBuff + inLen; inBuff < inEnd; )
1193 tmp[0] = wxUINT16_SWAP_ALWAYS(*inBuff);
1194 inBuff++;
1195 tmp[1] = wxUINT16_SWAP_ALWAYS(*inBuff);
1202 inBuff++;
1273 const wxUint32 *inBuff = wx_reinterpret_cast(const wxUint32 *, src);
1274 for ( srcLen = 1; *inBuff++; srcLen++ )
1304 const wxUint32 *inBuff = wx_reinterpret_cast(const wxUint32 *, src);
1310 const size_t numChars = encode_utf16(*inBuff++, cc);
1382 const wxUint32 *inBuff = wx_reinterpret_cast(const wxUint32 *, src);
1385 for ( size_t n = 0; n < inLen; n++, inBuff++ )
1388 const size_t numChars = encode_utf16(wxUINT32_SWAP_ALWAYS(*inBuff), cc);
1514 const wxUint32 *inBuff = wx_reinterpret_cast(const wxUint32 *, src);
1515 for ( size_t n = 0; n < srcLen; n++, inBuff++ )
1517 *dst++ = wxUINT32_SWAP_ALWAYS(*inBuff);
1966 char *inBuff = (char *)wnul;
1968 if ( iconv(w2m, ICONV_CHAR_CAST(&inBuff), &inLen, &outBuff, &outLen) == (size_t)-1 )