Home | History | Annotate | Download | only in common

Lines Matching refs:b1

117     UStringPrepKey *b1 = (UStringPrepKey *)p1.pointer;
120 name1.pointer = b1->name;
122 path1.pointer = b1->path;
681 UChar *b1 = b1Stack, *b2 = b2Stack;
696 b1Len = usprep_map(profile, src, srcLength, b1, b1Capacity, options, parseError, status);
701 b1 = (UChar*) uprv_malloc(b1Len * U_SIZEOF_UCHAR);
702 if(b1==NULL){
709 b1Len = usprep_map(profile, src, srcLength, b1, b1Len, options, parseError, status);
715 b2Len = usprep_normalize(b1,b1Len, b2,b2Capacity,status);
728 b2Len = usprep_normalize(b1,b1Len, b2,b2Len,status);
733 b2 = b1;
762 uprv_syntaxError(b1, b2Index-U16_LENGTH(ch), b2Len, parseError);
804 if(b1!=b1Stack){
805 uprv_free(b1);
806 b1=NULL;
809 if(b2!=b1Stack && b2!=b2Stack && b2!=b1 /* b1 should not be freed twice */){