HomeSort by relevance Sort by last modified time
    Searched full:templen (Results 1 - 9 of 9) sorted by null

  /external/icu4c/test/intltest/
pptest.cpp 192 const int tempLen = 20;
201 //char fmtText[tempLen];
205 int tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ?
206 tempLen : (tempLen - pos.getEndIndex());
tfsmalls.cpp 97 const int32_t tempLen = 20;
98 char temp[tempLen];
103 //char fmtText[tempLen];
106 for (int32_t j=0; j<tempLen; j++) temp[j] = '='; // clear with spaces
107 int32_t tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ?
108 tempLen : (tempLen - pos.getEndIndex());
idnaref.cpp 748 int32_t tempLen = (reqLength + b1Len );
750 if( tempLen< destCapacity){
754 reqLength = tempLen;
797 int32_t tempLen = (reqLength + b1Len );
799 if( tempLen< destCapacity){
803 reqLength = tempLen;
902 int32_t tempLen = (reqLength + b1Len );
904 if( tempLen< destCapacity){
908 reqLength = tempLen;
954 int32_t tempLen = (reqLength + b1Len )
    [all...]
  /external/icu4c/i18n/unicode/
fieldpos.h 75 * const int tempLen = 20;
76 * char temp[tempLen];
81 * char fmtText[tempLen];
83 * for (int j=0; j<tempLen; j++) temp[j] = ' '; // clear with spaces
84 * temp[__min(tempLen, tempLen-pos.getEndIndex())] = '\0';
  /libcore/luni/src/main/java/java/math/
Conversion.java 85 int tempLen = numberLength;
93 resDigit = Division.divideArrayByInt(temp, temp, tempLen,
104 for (i = tempLen - 1; (i > 0) && (temp[i] == 0); i--) {
107 tempLen = i + 1;
108 if ((tempLen == 1) && (temp[0] == 0)) { // the quotient is 0
203 int tempLen = numberLength;
204 System.arraycopy(digits, 0, temp, 0, tempLen);
210 for (int i1 = tempLen - 1; i1 >= 0; i1--) {
226 int j = tempLen - 1;
232 tempLen = j + 1
    [all...]
  /external/quake/quake/src/QW/client/
cmd.c 113 int templen; local
116 templen = cmd_text.cursize;
117 if (templen)
119 temp = Z_Malloc (templen);
120 Q_memcpy (temp, cmd_text.data, templen);
130 if (templen)
132 SZ_Write (&cmd_text, temp, templen);
  /external/quake/quake/src/WinQuake/
cmd.cpp 114 int templen; local
117 templen = cmd_text.cursize;
118 if (templen)
120 temp = (char*) Z_Malloc (templen);
121 Q_memcpy (temp, cmd_text.data, templen);
131 if (templen)
133 SZ_Write (&cmd_text, temp, templen);
  /external/libnfc-nxp/src/
phFriNfc_MifareStdMap.c     [all...]
  /external/icu4c/test/cintltst/
cmsccoll.c 552 uint32_t tempLen;
608 tempLen = firstLen;
610 chLen = tempLen;
612 tempLen = firstEx;
614 exLen = tempLen;
    [all...]

Completed in 2987 milliseconds