Lines Matching refs:buffer
211 int UNIXgetSortKey(const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity) {
216 return (strxfrm((char *)buffer, compUTF8A, buffCapacity)+1);
240 int WingetSortKey(const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity) {
243 return LCMapStringW(gWinLCID, LCMAP_SORTKEY | SORT_STRINGSORT, compA, compALen, (unsigned short *)buffer, buffCapacity);
282 int ICUgetSortKey(const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity) {
283 return ucol_getSortKey(gCol, string, len, buffer, buffCapacity);
846 char buffer[1024];
851 while(fgets(buffer, 1024, stdin)) {
852 if(buffer[0] != '/' && buffer[1] != '/') {
853 rLen = u_unescape(buffer, rules, maxRuleLen);