Lines Matching refs:b2
205 UChar *b1 = b1Stack, *b2 = b2Stack;
336 b2Len = u_strToPunycode(b1,b1Len,b2,b2Capacity,caseFlags, status);
341 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
342 if(b2 == NULL){
349 b2Len = u_strToPunycode(b1,b1Len,b2,b2Len,caseFlags, status);
357 // toASCIILower(b2,b2Len);
366 //Step 6: copy the contents in b2 into dest
367 uprv_memcpy(dest+ACE_PREFIX_LENGTH, b2, b2Len * U_SIZEOF_UCHAR);
385 if(b2 != b2Stack){
386 uprv_free(b2);
410 UChar *b1 = b1Stack, *b2 = b2Stack, *b1Prime=NULL, *b3=b3Stack;
496 b2Len = u_strFromPunycode(b1Prime, b1PrimeLen, b2, b2Capacity, caseFlags,status);
501 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
502 if(b2==NULL){
509 b2Len = u_strFromPunycode(b1Prime, b1PrimeLen, b2, b2Len, caseFlags, status);
514 b3Len = uidna_toASCII(b2, b2Len, b3, b3Capacity, options, parseError, status);
527 b3Len = uidna_toASCII(b2,b2Len,b3,b3Len,options,parseError, status);
545 uprv_memmove(dest, b2, b2Len * U_SIZEOF_UCHAR);
585 if(b2 != b2Stack){
586 uprv_free(b2);
871 UChar *b1 = b1Stack, *b2 = b2Stack;
892 b2Len = uidna_IDNToASCII(s2,length2, b2,b2Capacity, options, &parseError, status);
895 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
896 if(b2==NULL){
903 b2Len = uidna_IDNToASCII(s2, length2, b2, b2Len, options, &parseError, status);
907 result = compareCaseInsensitiveASCII(b1,b1Len,b2,b2Len);
914 if(b2 != b2Stack){
915 uprv_free(b2);