Home | History | Annotate | Download | only in normperf

Lines Matching defs:srcLen

74 void NormalizerPerformanceTest::normalizeInput(ULine* dest,const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
91 UChar* NormalizerPerformanceTest::normalizeInput(int32_t& len, const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
155 int32_t srcLen = 0;
156 const UChar* src = getBuffer(srcLen,status);
165 NFDBuffer = normalizeInput(NFDBufferLen,src,srcLen,UNORM_NFD, options);
166 NFCBuffer = normalizeInput(NFCBufferLen,src,srcLen,UNORM_NFC, options);