Home | History | Annotate | Download | only in common

Lines Matching refs:b2

117     UStringPrepKey *b2 = (UStringPrepKey *)p2.pointer;
120 name2.pointer = b2->name;
122 path2.pointer = b2->path;
722 UChar *b1 = b1Stack, *b2 = b2Stack;
756 b2Len = usprep_normalize(b1,b1Len, b2,b2Capacity,status);
761 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
762 if(b2==NULL){
769 b2Len = usprep_normalize(b1,b1Len, b2,b2Len,status);
774 b2 = b1;
793 U16_NEXT(b2, b2Index, b2Len, ch);
826 uprv_syntaxError(b2,(rtlPos>ltrPos) ? rtlPos : ltrPos, b2Len, parseError);
836 uprv_syntaxError(b2, rtlPos, b2Len, parseError);
841 uprv_memmove(dest,b2, b2Len*U_SIZEOF_UCHAR);
850 if(b2!=b1Stack && b2!=b2Stack && b2!=b1 /* b1 should not be freed twice */){
851 uprv_free(b2);
852 b2=NULL;