HomeSort by relevance Sort by last modified time
    Searched refs:pStr (Results 1 - 25 of 45) sorted by null

1 2

  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpbnu_setoctstr.c 63 // pStr pointer to the source octet string
69 cpSize cpFromOctStr_BNU(BNU_CHUNK_T* pA, const Ipp8u* pStr, cpSize strLen)
78 +( (BNU_CHUNK_T)pStr[strLen-8]<<(8*7) )
79 +( (BNU_CHUNK_T)pStr[strLen-7]<<(8*6) )
80 +( (BNU_CHUNK_T)pStr[strLen-6]<<(8*5) )
81 +( (BNU_CHUNK_T)pStr[strLen-5]<<(8*4) )
83 +( (BNU_CHUNK_T)pStr[strLen-4]<<(8*3) )
84 +( (BNU_CHUNK_T)pStr[strLen-3]<<(8*2) )
85 +( (BNU_CHUNK_T)pStr[strLen-2]<<(8*1) )
86 + (BNU_CHUNK_T)pStr[strLen-1]
    [all...]
pcpbnu32_getoctstr.c 67 // pStr pointer to the target octet string
71 cpSize cpToOctStr_BNU32(Ipp8u* pStr, cpSize strLen, const Ipp32u* pBNU, cpSize bnuSize)
79 ZEXPAND_BNU(pStr, 0, strLen);
80 pStr += strLen - BITS2WORD8_SIZE(bnuBitSize);
85 *pStr++ = EBYTE(x,3-nb);
89 *pStr++ = EBYTE(x,3);
90 *pStr++ = EBYTE(x,2);
91 *pStr++ = EBYTE(x,1);
92 *pStr++ = EBYTE(x,0);
pcpbnu_getoctstr.c 72 // pStr pointer to the target octet string
76 cpSize cpToOctStr_BNU(Ipp8u* pStr, cpSize strLen, const BNU_CHUNK_T* pA, cpSize nsA)
85 ZEXPAND_BNU(pStr, 0, strLen);
86 pStr += strLen - BITS2WORD8_SIZE(bnuBitSize);
92 *pStr++ = EBYTE(x, sizeof(BNU_CHUNK_T)-1-nb);
97 *pStr++ = EBYTE(x,7);
98 *pStr++ = EBYTE(x,6);
99 *pStr++ = EBYTE(x,5);
100 *pStr++ = EBYTE(x,4);
102 *pStr++ = EBYTE(x,3)
    [all...]
pcpgfp_getoctstring.c 56 Ipp8u* cpGFpGetOctString(Ipp8u* pStr, int strSize, const BNU_CHUNK_T* pElm, gsModEngine* pGFE)
65 error = (0 == cpToOctStr_BNU(pStr, strSize, pTmp, elemLen));
68 return error ? NULL : pStr;
pcpgfp_setoctstring.c 56 BNU_CHUNK_T* cpGFpSetOctString(BNU_CHUNK_T* pElm, const Ipp8u* pStr, int strSize, gsModEngine* pGFE)
67 int nsTmp = cpFromOctStr_BNU(pTmp, pStr, strSize);
pcpgfpecgetpointoctstring.c 60 // ippStsNullPtrErr pPoint == NULL / pEC == NULL / pStr == NULL
69 // pStr pointer to the string to read from
76 Ipp8u* pStr, int strLen, IppsGFpECState* pEC)) {
77 IPP_BAD_PTR3_RET(pPoint, pEC, pStr);
97 ippsGFpGetElementOctString(&ptX, pStr, elemLen, pEC->pGF);
98 pStr += elemLen;
99 ippsGFpGetElementOctString(&ptY, pStr, elemLen, pEC->pGF);
pcpgfpecsetpointoctstring.c 61 // ippStsNullPtrErr pPoint == NULL / pEC == NULL / pStr == NULL
69 // pStr pointer to the string to read from
75 IPPFUN(IppStatus, ippsGFpECSetPointOctString, (const Ipp8u* pStr,
77 IPP_BAD_PTR3_RET(pPoint, pEC, pStr);
93 ret = ippsGFpSetElementOctString(pStr, elemLen, &ptX, pEC->pGF);
95 pStr += elemLen;
96 ret = ippsGFpSetElementOctString(pStr, elemLen, &ptY, pEC->pGF);
pcpgfpgetelemoctstr.c 64 // NULL == pStr
79 // pStr Pointer to the octet string.
85 IPPFUN(IppStatus, ippsGFpGetElementOctString,(const IppsGFpElement* pA, Ipp8u* pStr, int strSize, IppsGFpState* pGFp))
87 IPP_BAD_PTR3_RET(pStr, pA, pGFp);
105 error = (NULL == cpGFpGetOctString(pStr, size, pDataElm, pBasicGFE));
108 pStr += size;
pcpgfpsetelemoctstr.c 65 // NULL == pStr && strSize>0
73 // BNU representation of pStr[] >= modulus
78 // pStr Pointer to the octet string
83 IPPFUN(IppStatus, ippsGFpSetElementOctString,(const Ipp8u* pStr, int strSize, IppsGFpElement* pR, IppsGFpState* pGFp))
90 IPP_BADARG_RET( (!pStr && 0<strSize), ippStsNullPtrErr);
111 error = NULL == cpGFpSetOctString(pDataElm, pStr, size, pBasicGFE);
115 pStr += size;
pcpbnu32misc.h 85 cpSize cpToOctStr_BNU32(Ipp8u* pStr, cpSize strLen, const Ipp32u* pBNU, cpSize bnuSize);
pcpbnu32arith.h 73 int cpToOS_BNU32(Ipp8u* pStr, int strLen, const Ipp32u* pBNU, int bnuSize);
  /external/skia/tools/
win_lcid.cpp 11 BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam) {
15 bufferSize = GetLocaleInfoEx(pStr, LOCALE_SENGLANGUAGE, wcBuffer, BUFFER_SIZE);
17 wprintf(L"Locale %s had error %d\n", pStr, GetLastError());
21 LCID lcid = LocaleNameToLCID(pStr, nullptr);
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer);
  /external/skqp/tools/
win_lcid.cpp 11 BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam) {
15 bufferSize = GetLocaleInfoEx(pStr, LOCALE_SENGLANGUAGE, wcBuffer, BUFFER_SIZE);
17 wprintf(L"Locale %s had error %d\n", pStr, GetLastError());
21 LCID lcid = LocaleNameToLCID(pStr, nullptr);
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer);
  /external/pdfium/core/fxcrt/
cfx_seekablestreamproxy.cpp 105 void SwapByteOrder(wchar_t* pStr, size_t iLength) {
106 ASSERT(pStr);
111 wch = static_cast<uint16_t>(*pStr);
114 *pStr = wch;
115 ++pStr;
121 wch = static_cast<uint16_t>(*pStr);
123 *pStr = wch;
124 ++pStr;
226 size_t CFX_SeekableStreamProxy::ReadString(wchar_t* pStr,
229 if (!pStr || iMaxLength == 0
    [all...]
string_data_template.h 50 static StringDataTemplate* Create(const CharType* pStr, size_t nLen) {
52 result->CopyContents(pStr, nLen);
73 void CopyContents(const CharType* pStr, size_t nLen) {
75 memcpy(m_String, pStr, nLen * sizeof(CharType));
79 void CopyContentsAt(size_t offset, const CharType* pStr, size_t nLen) {
81 memcpy(m_String + offset, pStr, nLen * sizeof(CharType));
widestring.cpp 63 for (const wchar_t* pStr = pFormat; *pStr != 0; pStr++) {
64 if (*pStr != '%' || *(pStr = pStr + 1) == '%') {
70 for (; *pStr != 0; pStr++) {
71 if (*pStr == '#') {
73 } else if (*pStr == '*')
    [all...]
cfx_seekablestreamproxy.h 32 size_t ReadString(wchar_t* pStr, size_t iMaxLength, bool* bEOS);
bytestring.cpp 149 ByteString::ByteString(const char* pStr, size_t nLen) {
151 m_pData.Reset(StringData::Create(pStr, nLen));
154 ByteString::ByteString(const uint8_t* pStr, size_t nLen) {
157 StringData::Create(reinterpret_cast<const char*>(pStr), nLen));
223 const ByteString& ByteString::operator=(const char* pStr) {
224 if (!pStr || !pStr[0])
227 AssignCopy(pStr, strlen(pStr));
248 const ByteString& ByteString::operator+=(const char* pStr) {
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
sfunc.c 101 OFF_T my_strtofft(const char *pStr)
108 for (;; pStr++) {
109 switch (*pStr) {
123 pStr++;
128 while (*pStr >= '0' && *pStr <= '9') {
129 value = (value * 10) + (*pStr++ - '0');
132 while ((*pStr >= '0' && *pStr <= '9') ||
133 (*pStr >= 'A' && *pStr <= 'F') |
    [all...]
sfunc.h 120 OFF_T my_strtofft(const char *pStr);
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 70 int32_t ParseTimeZone(const wchar_t* pStr, int32_t iLen, FX_TIMEZONE* tz) {
79 tz->tzHour = tz->tzHour * 10 + FXSYS_DecimalCharToInt(pStr[iStart++]);
81 if (iStart < iLen && pStr[iStart] == ':')
86 tz->tzMinute = tz->tzMinute * 10 + FXSYS_DecimalCharToInt(pStr[iStart++]);
88 if (pStr[0] == '-')
181 const wchar_t* pStr = wsNum.c_str();
184 if (pStr[ccf] == '\'') {
185 GetLiteralText(pStr, &ccf, iLenf);
187 !wcsncmp(pStr + ccf, wsDotSymbol.c_str(), iLenDot)) {
843 const wchar_t* pStr = wsFormatString.c_str()
    [all...]
  /external/icu/icu4c/source/common/
uniset_closure.cpp 223 const UnicodeString *pStr;
226 pStr = (const UnicodeString *) strings->elementAt(j);
227 (str = *pStr).toLower(root);
230 (str = *pStr).toTitle(bi, root);
233 (str = *pStr).toUpper(root);
235 (str = *pStr).foldCase();
  /external/swiftshader/third_party/PowerVR_SDK/Shell/
PVRShellImpl.h 110 @brief Set command-line options to pStr
111 @param[in] pStr Input string
113 void Set(const char *pStr);
117 @param[in] pStr Input string
119 void Prefix(const char *pStr);
  /external/pdfium/fxjs/
cjs_object.cpp 19 : pEngine->NewString(consts[i].pStr).As<v8::Value>());
cjs_object.h 23 const char* pStr;

Completed in 1138 milliseconds

1 2