Home
last modified time | relevance | path

Searched refs:tempLen (Results 1 – 9 of 9) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dpptest.cpp192 const int tempLen = 20; in TestFieldPosition_example() local
205 int tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ? in TestFieldPosition_example()
206 tempLen : (tempLen - pos.getEndIndex()); in TestFieldPosition_example()
Dtfsmalls.cpp97 const int32_t tempLen = 20; in test_FieldPosition_example() local
98 char temp[tempLen]; in test_FieldPosition_example()
106 for (int32_t j=0; j<tempLen; j++) temp[j] = '='; // clear with spaces in test_FieldPosition_example()
107 int32_t tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ? in test_FieldPosition_example()
108 tempLen : (tempLen - pos.getEndIndex()); in test_FieldPosition_example()
Didnaref.cpp750 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII() local
752 if( tempLen< destCapacity){ in idnaref_IDNToASCII()
756 reqLength = tempLen; in idnaref_IDNToASCII()
799 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII() local
801 if( tempLen< destCapacity){ in idnaref_IDNToASCII()
805 reqLength = tempLen; in idnaref_IDNToASCII()
904 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode() local
906 if( tempLen< destCapacity){ in idnaref_IDNToUnicode()
910 reqLength = tempLen; in idnaref_IDNToUnicode()
956 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode() local
[all …]
/external/chromium_org/third_party/icu/source/test/intltest/
Dpptest.cpp192 const int tempLen = 20; in TestFieldPosition_example() local
205 int tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ? in TestFieldPosition_example()
206 tempLen : (tempLen - pos.getEndIndex()); in TestFieldPosition_example()
Dtfsmalls.cpp97 const int32_t tempLen = 20; in test_FieldPosition_example() local
98 char temp[tempLen]; in test_FieldPosition_example()
106 for (int32_t j=0; j<tempLen; j++) temp[j] = '='; // clear with spaces in test_FieldPosition_example()
107 int32_t tempOffset = (tempLen <= (tempLen - pos.getEndIndex())) ? in test_FieldPosition_example()
108 tempLen : (tempLen - pos.getEndIndex()); in test_FieldPosition_example()
Didnaref.cpp750 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII() local
752 if( tempLen< destCapacity){ in idnaref_IDNToASCII()
756 reqLength = tempLen; in idnaref_IDNToASCII()
799 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII() local
801 if( tempLen< destCapacity){ in idnaref_IDNToASCII()
805 reqLength = tempLen; in idnaref_IDNToASCII()
904 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode() local
906 if( tempLen< destCapacity){ in idnaref_IDNToUnicode()
910 reqLength = tempLen; in idnaref_IDNToUnicode()
956 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode() local
[all …]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
DRTPencode.cc1541 int16_t tempLen; in NetEQTest_encode() local
1552 tempLen = frameLen; in NetEQTest_encode()
1557 while (tempLen >= 10*sampleRate/1000) { in NetEQTest_encode()
1558 if ((tempLen % 30*sampleRate/1000) == 0) { // tempLen is multiple of 30ms in NetEQTest_encode()
1561 tempLen -= 30*sampleRate/1000; in NetEQTest_encode()
1563 else if (tempLen >= 20*sampleRate/1000) { // tempLen >= 20ms in NetEQTest_encode()
1566 tempLen -= 20*sampleRate/1000; in NetEQTest_encode()
1571 tempLen -= 10*sampleRate/1000; in NetEQTest_encode()
1585 encoded,&tempLen,first_cng); in NetEQTest_encode()
1586 encoded += tempLen; in NetEQTest_encode()
[all …]
/external/chromium_org/third_party/icu/source/test/cintltst/
Dcmsccoll.c553 uint32_t tempLen; in testCollator() local
610 tempLen = firstLen; in testCollator()
612 chLen = tempLen; in testCollator()
614 tempLen = firstEx; in testCollator()
616 exLen = tempLen; in testCollator()
/external/chromium_org/net/third_party/nss/ssl/
Dssl3con.c2446 unsigned int tempLen; in ssl3_ComputeRecordMAC() local
2462 hashObj->end(write_mac_context, temp, &tempLen, sizeof temp); in ssl3_ComputeRecordMAC()
2475 hashObj->update(write_mac_context, temp, tempLen); in ssl3_ComputeRecordMAC()