Lines Matching refs:b2
118 UStringPrepKey *b2 = (UStringPrepKey *)p2.pointer;
121 name2.pointer = b2->name;
123 path2.pointer = b2->path;
685 UChar *b1 = b1Stack, *b2 = b2Stack;
719 b2Len = usprep_normalize(b1,b1Len, b2,b2Capacity,status);
724 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
725 if(b2==NULL){
732 b2Len = usprep_normalize(b1,b1Len, b2,b2Len,status);
737 b2 = b1;
756 U16_NEXT(b2, b2Index, b2Len, ch);
789 uprv_syntaxError(b2,(rtlPos>ltrPos) ? rtlPos : ltrPos, b2Len, parseError);
799 uprv_syntaxError(b2, rtlPos, b2Len, parseError);
804 uprv_memmove(dest,b2, b2Len*U_SIZEOF_UCHAR);
813 if(b2!=b1Stack && b2!=b2Stack && b2!=b1 /* b1 should not be freed twice */){
814 uprv_free(b2);
815 b2=NULL;