Home | History | Annotate | Download | only in normperf

Lines Matching refs:reqLen

75     int32_t reqLen = 0;
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
82 dest->name = new UChar[reqLen+1];
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
84 dest->len=reqLen;
92 int32_t reqLen = 0;
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
100 dest = new UChar[reqLen+1];
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
102 len=reqLen;