Searched defs:src2Length (Results 1 - 1 of 1) sorted by relevance

/external/icu4c/i18n/
H A Ducol.cpp4207 * @param src2Length the length of the second sort key, including the zero byte at the end;
4212 * @return the length of the merged sort key, src1Length+src2Length-1;
4220 const uint8_t *src2, int32_t src2Length,
4227 src2==NULL || src2Length<-2 || src2Length==0 || (src2Length>0 && src2[src2Length-1]!=0) ||
4241 if(src2Length<0) {
4242 src2Length=(int32_t)uprv_strlen((const char *)src2)+1;
4245 destLength=src1Length+src2Length
4219 ucol_mergeSortkeys(const uint8_t *src1, int32_t src1Length, const uint8_t *src2, int32_t src2Length, uint8_t *dest, int32_t destCapacity) argument
[all...]

Completed in 960 milliseconds