Lines Matching defs:dst
449 char *dst = path;
456 *dst++ = ':'; /* relative paths begin with ':' */
470 SDL_memcpy(dst, src, len);
471 dst += len;
474 *dst++ = ':';
478 *dst++ = '\0';
644 int SDL_WriteLE16 (SDL_RWops *dst, Uint16 value)
647 return(SDL_RWwrite(dst, &value, (sizeof value), 1));
649 int SDL_WriteBE16 (SDL_RWops *dst, Uint16 value)
652 return(SDL_RWwrite(dst, &value, (sizeof value), 1));
654 int SDL_WriteLE32 (SDL_RWops *dst, Uint32 value)
657 return(SDL_RWwrite(dst, &value, (sizeof value), 1));
659 int SDL_WriteBE32 (SDL_RWops *dst, Uint32 value)
662 return(SDL_RWwrite(dst, &value, (sizeof value), 1));
664 int SDL_WriteLE64 (SDL_RWops *dst, Uint64 value)
667 return(SDL_RWwrite(dst, &value, (sizeof value), 1));
669 int SDL_WriteBE64 (SDL_RWops *dst, Uint64 value)
672 return(SDL_RWwrite(dst, &value, (sizeof value), 1));