• Home
  • Raw
  • Download

Lines Matching +full:start +full:- +full:up

22  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
91 wchar_t start; member
135 __le16 *anchor = ucs1; /* save a pointer to start of ucs1 */ in UniStrcat()
138 ucs1--; /* Return to the null */ in UniStrcat()
176 return (int) *ucs1 - (int) *ucs2; in UniStrcmp()
185 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy()
230 ucs1--; /* point to null terminator of s1 */ in UniStrncat()
231 while (n-- && (*ucs1 = *ucs2)) { /* copy s2 after s1 */ in UniStrncat()
247 while ((*ucs1 == *ucs2) && *ucs1 && --n) { in UniStrncmp()
251 return (int) *ucs1 - (int) *ucs2; in UniStrncmp()
255 * UniStrncmp_le: Compare length limited string - native to little-endian
262 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) { in UniStrncmp_le()
266 return (int) *ucs1 - (int) __le16_to_cpu(*ucs2); in UniStrncmp_le()
277 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy()
281 while (n--) /* Pad with nulls */ in UniStrncpy()
287 * UniStrncpy_le: Copy length limited string with pad to little-endian
294 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_le()
298 while (n--) /* Pad with nulls */ in UniStrncpy_le()
348 while (rp->start) { in UniToupper()
349 if (uc < rp->start) /* Before start of range */ in UniToupper()
351 if (uc <= rp->end) /* In range */ in UniToupper()
352 return uc + rp->table[uc - rp->start]; in UniToupper()
365 register __le16 *up; in UniStrupr() local
367 up = upin; in UniStrupr()
368 while (*up) { /* For all characters */ in UniStrupr()
369 *up = cpu_to_le16(UniToupper(le16_to_cpu(*up))); in UniStrupr()
370 up++; in UniStrupr()
390 while (rp->start) { in UniTolower()
391 if (uc < rp->start) /* Before start of range */ in UniTolower()
393 if (uc <= rp->end) /* In range */ in UniTolower()
394 return uc + rp->table[uc - rp->start]; in UniTolower()
407 register wchar_t *up; in UniStrlwr() local
409 up = upin; in UniStrlwr()
410 while (*up) { /* For all characters */ in UniStrlwr()
411 *up = UniTolower(*up); in UniStrlwr()
412 up++; in UniStrlwr()