Lines Matching refs:bufp
384 char *bufp = string;
385 while ( *bufp ) {
386 *bufp = SDL_toupper((unsigned char) *bufp);
387 ++bufp;
396 char *bufp = string;
397 while ( *bufp ) {
398 *bufp = SDL_tolower((unsigned char) *bufp);
399 ++bufp;
421 const char *bufp = string + SDL_strlen(string) - 1;
422 while ( bufp >= string ) {
423 if ( *bufp == c ) {
424 return (char *)bufp;
426 --bufp;
459 char *bufp = string;
462 *bufp++ = '-';
467 *bufp++ = ntoa_table[value % radix];
471 *bufp++ = '0';
473 *bufp = '\0';
489 char *bufp = string;
493 *bufp++ = ntoa_table[value % radix];
497 *bufp++ = '0';
499 *bufp = '\0';
557 char *bufp = string;
560 *bufp++ = '-';
565 *bufp++ = ntoa_table[value % radix];
569 *bufp++ = '0';
571 *bufp = '\0';
587 char *bufp = string;
591 *bufp++ = ntoa_table[value % radix];
595 *bufp++ = '0';
597 *bufp = '\0';