Lines Matching refs:retVal
80 int count=0,retVal=0; in _strToWCS() local
166 retVal = uprv_mbstowcs(pIntTarget,(tempBuf+nulLen),remaining); in _strToWCS()
168 if(retVal==-1){ in _strToWCS()
171 }else if(retVal== remaining){/* should never occur */ in _strToWCS()
193 pIntTarget = pIntTarget + retVal+nulVal; in _strToWCS()
194 remaining -=(retVal+nulVal); in _strToWCS()
290 int32_t retVal =0, count =0 ; in _strFromWCS() local
318 retVal = uprv_wcstombs(pCSrc,src, cStackCap); in _strFromWCS()
320 if(retVal == -1){ in _strFromWCS()
323 }else if(retVal >= (cStackCap-1)){ in _strFromWCS()
330 pCSrc = pCSrc+retVal; in _strFromWCS()
369 retVal = uprv_wcstombs(pCSrc,pSrc,remaining); in _strFromWCS()
371 if(retVal==-1){ in _strFromWCS()
377 pCSrc += retVal+1 /* already null terminated */; in _strFromWCS()
419 retVal = uprv_wcstombs(pCSrc,pWStack,remaining); in _strFromWCS()
421 pCSrc += retVal; in _strFromWCS()