• Home
  • Raw
  • Download

Lines Matching refs:b2Len

208     int32_t b1Len=0, b2Len,   in _internal_toASCII()  local
338 b2Len = u_strToPunycode(b1,b1Len,b2,b2Capacity,caseFlags, status); in _internal_toASCII()
343 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR); in _internal_toASCII()
351 b2Len = u_strToPunycode(b1,b1Len,b2,b2Len,caseFlags, status); in _internal_toASCII()
360 reqLength = b2Len+ACE_PREFIX_LENGTH; in _internal_toASCII()
369 u_memcpy(dest+ACE_PREFIX_LENGTH, b2, b2Len); in _internal_toASCII()
413 int32_t b1Len = 0, b2Len, b1PrimeLen, b3Len, in _internal_toUnicode() local
497 b2Len = u_strFromPunycode(b1Prime, b1PrimeLen, b2, b2Capacity, caseFlags,status); in _internal_toUnicode()
502 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR); in _internal_toUnicode()
510 b2Len = u_strFromPunycode(b1Prime, b1PrimeLen, b2, b2Len, caseFlags, status); in _internal_toUnicode()
515 b3Len = uidna_toASCII(b2, b2Len, b3, b3Capacity, options, parseError, status); in _internal_toUnicode()
528 b3Len = uidna_toASCII(b2,b2Len,b3,b3Len,options,parseError, status); in _internal_toUnicode()
544 reqLength = b2Len; in _internal_toUnicode()
545 if(b2Len <= destCapacity) { in _internal_toUnicode()
546 u_memmove(dest, b2, b2Len); in _internal_toUnicode()
873 int32_t b1Len, b2Len, b1Capacity = MAX_IDN_BUFFER_SIZE, b2Capacity = MAX_IDN_BUFFER_SIZE; in uidna_compare() local
893 b2Len = uidna_IDNToASCII(s2,length2, b2,b2Capacity, options, &parseError, status); in uidna_compare()
896 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR); in uidna_compare()
904 b2Len = uidna_IDNToASCII(s2, length2, b2, b2Len, options, &parseError, status); in uidna_compare()
908 result = compareCaseInsensitiveASCII(b1,b1Len,b2,b2Len); in uidna_compare()