Home | History | Annotate | Download | only in common

Lines Matching refs:b2

118     UStringPrepKey *b2 = (UStringPrepKey *)p2.pointer;
121 name2.pointer = b2->name;
123 path2.pointer = b2->path;
682 UChar *b1 = b1Stack, *b2 = b2Stack;
716 b2Len = usprep_normalize(b1,b1Len, b2,b2Capacity,status);
721 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
722 if(b2==NULL){
729 b2Len = usprep_normalize(b1,b1Len, b2,b2Len,status);
734 b2 = b1;
753 U16_NEXT(b2, b2Index, b2Len, ch);
786 uprv_syntaxError(b2,(rtlPos>ltrPos) ? rtlPos : ltrPos, b2Len, parseError);
796 uprv_syntaxError(b2, rtlPos, b2Len, parseError);
801 uprv_memmove(dest,b2, b2Len*U_SIZEOF_UCHAR);
810 if(b2!=b1Stack && b2!=b2Stack && b2!=b1 /* b1 should not be freed twice */){
811 uprv_free(b2);
812 b2=NULL;