dest              124 include/lolevel.h extern char *_strcpy(char *dest, const char *src);
dest              125 include/lolevel.h extern char *_strncpy(char *dest, const char *src, long n);
dest              126 include/lolevel.h extern char *_strcat(char *dest, const char *app);
dest              154 include/lolevel.h extern void *_memcpy(void *dest, const void *src, long n);
dest               15 include/std/string.h extern char *strcpy(char *dest, const char *src);
dest               16 include/std/string.h extern char *strncpy(char *dest, const char *src, long n);
dest               17 include/std/string.h extern char *strcat(char *dest, const char *app);
dest               22 include/std/string.h extern void *memcpy(void *dest, const void *src, long n);
dest                3 lib/armutil/callfunc_test.c int test_callfunc4(char *dest, int n_args, int a1, int a2)
dest                5 lib/armutil/callfunc_test.c 	sprintf(dest,"%d %d %d",n_args, a1, a2);
dest                9 lib/armutil/callfunc_test.c int test_callfunc5(char *dest, int n_args, int a1, int a2, int a3)
dest               11 lib/armutil/callfunc_test.c 	sprintf(dest,"%d %d %d %d",n_args, a1, a2, a3);
dest               15 lib/armutil/callfunc_test.c int test_callfunc8(char *dest, int n_args, int a1, int a2, int a3, int a4, int a5, int a6)
dest               17 lib/armutil/callfunc_test.c 	sprintf(dest,"%d %d %d %d %d %d %d",n_args, a1, a2, a3, a4, a5, a6);
dest               21 lib/armutil/callfunc_test.c int test_callfunc8v(char *dest, int n_args, int a1, int a2, int a3, int a4, int a5, int a6,...)
dest               23 lib/armutil/callfunc_test.c 	sprintf(dest,"%d %d %d %d %d %d %d",n_args, a1, a2, a3, a4, a5, a6);
dest               27 lib/armutil/callfunc_test.c int test_callfunc_va(char *dest, int n_args, ...)
dest               29 lib/armutil/callfunc_test.c 	char *p=dest;
dest              156 lib/font/rbf_font.c int font_read(int fd, unsigned char *dest, int len)
dest              172 lib/font/rbf_font.c             memcpy(dest, ubuffer, to_read);
dest              175 lib/font/rbf_font.c             dest += to_read;
dest               80 lib/lua/lcode.c static void fixjump (FuncState *fs, int pc, int dest) {
dest               82 lib/lua/lcode.c   int offset = dest-(pc+1);
dest               83 lib/lua/lcode.c   lua_assert(dest != NO_JUMP);
dest              346 lib/lua/ldebug.c           int dest = pc+1+b;
dest              347 lib/lua/ldebug.c           check(0 <= dest && dest < pt->sizecode);
dest              348 lib/lua/ldebug.c           if (dest > 0) {
dest              354 lib/lua/ldebug.c             for (j = 0; j < dest; j++) {
dest              355 lib/lua/ldebug.c               Instruction d = pt->code[dest-1-j];
dest              417 lib/lua/ldebug.c         int dest = pc+1+b;
dest              419 lib/lua/ldebug.c         if (reg != NO_REG && pc < dest && dest <= lastpc)
dest              442 lib/ubasic/tokenizer.c tokenizer_string(char *dest, int len)
dest              458 lib/ubasic/tokenizer.c   memcpy(dest, ptr + 1, string_len);
dest              459 lib/ubasic/tokenizer.c   dest[string_len] = 0;
dest              463 lib/ubasic/tokenizer.c tokenizer_label(char *dest, int len)
dest              481 lib/ubasic/tokenizer.c   memcpy(dest, ptr + 1, string_len);
dest              482 lib/ubasic/tokenizer.c   dest[string_len] = 0;
dest              255 lib/ubasic/tokenizer.h void tokenizer_string(char *dest, int len);
dest              256 lib/ubasic/tokenizer.h void tokenizer_label(char *dest, int len);
dest              683 modules/file_shelter.c int restore(const char *dest, int test)
dest              690 modules/file_shelter.c     if (!test && strlen(dest)>2) mkdir_if_not_exist(dest);
dest              700 modules/file_shelter.c             if (strlen(dest)+1+strlen(lastdir) > 255) {
dest              708 modules/file_shelter.c             sprintf(buf,"%s/%s",dest,lastdir);
dest              721 modules/file_shelter.c             if (strlen(dest)+1+fh->nlen-2 > 255) {
dest              749 modules/file_shelter.c             sprintf(buf,"%s/%s",dest,fn);
dest              421 modules/raw_merge.c     char dest[100];
dest              441 modules/raw_merge.c     strcpy(dest, namebuf);
dest              442 modules/raw_merge.c     char *n = strrchr(dest, '/');
dest              443 modules/raw_merge.c     if (n == 0) n = dest;
dest              447 modules/raw_merge.c     strcpy(dest + strlen(dest) - 4, (destDNG && conf.raw_dng_ext) ? ".DNG" : img_exts[conf.sub_batch_ext]);
dest              450 modules/raw_merge.c     if (strcmp(namebuf, dest) == 0)
dest              463 modules/raw_merge.c         fcraw = fopen(dest,"wb");
dest              553 modules/raw_merge.c                     gui_browser_progress_show(dest, j*100/camera_sensor.raw_rows);
dest              867 platform/generic/wrappers.c char *strcpy(char *dest, const char *src) {
dest              868 platform/generic/wrappers.c     return _strcpy(dest, src);
dest              871 platform/generic/wrappers.c char *strncpy(char *dest, const char *src, long n) {
dest              872 platform/generic/wrappers.c     return _strncpy(dest, src, n);
dest              875 platform/generic/wrappers.c char *strcat(char *dest, const char *app) {
dest              876 platform/generic/wrappers.c     return _strcat(dest, app);
dest             1091 platform/generic/wrappers.c void *memcpy(void *dest, const void *src, long n) {
dest             1092 platform/generic/wrappers.c     return _memcpy(dest, src, n);
dest              145 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall char * strcpy(char *dest, const char *src);
dest              146 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall char * strncpy(char *dest, const char *src, int n);
dest              147 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall char * strcat(char *dest, const char *app);
dest              175 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall void * memcpy(void *dest, const void *src, int n);
dest               22 tools/packfi2/compress.c int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
dest               23 tools/packfi2/compress.c     Bytef *dest;
dest               38 tools/packfi2/compress.c     stream.next_out = dest;
dest               62 tools/packfi2/compress.c int ZEXPORT compress (dest, destLen, source, sourceLen)
dest               63 tools/packfi2/compress.c     Bytef *dest;
dest               68 tools/packfi2/compress.c     return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
dest              894 tools/packfi2/deflate.c int ZEXPORT deflateCopy (dest, source)
dest              895 tools/packfi2/deflate.c     z_streamp dest;
dest              906 tools/packfi2/deflate.c     if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
dest              912 tools/packfi2/deflate.c     zmemcpy(dest, source, sizeof(z_stream));
dest              914 tools/packfi2/deflate.c     ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
dest              916 tools/packfi2/deflate.c     dest->state = (struct internal_state FAR *) ds;
dest              918 tools/packfi2/deflate.c     ds->strm = dest;
dest              920 tools/packfi2/deflate.c     ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
dest              921 tools/packfi2/deflate.c     ds->prev   = (Posf *)  ZALLOC(dest, ds->w_size, sizeof(Pos));
dest              922 tools/packfi2/deflate.c     ds->head   = (Posf *)  ZALLOC(dest, ds->hash_size, sizeof(Pos));
dest              923 tools/packfi2/deflate.c     overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
dest              928 tools/packfi2/deflate.c         deflateEnd (dest);
dest              577 tools/packfi2/zlib.h ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
dest              773 tools/packfi2/zlib.h ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
dest             1009 tools/packfi2/zlib.h ZEXTERN int ZEXPORT compress OF((Bytef *dest,   uLongf *destLen,
dest             1024 tools/packfi2/zlib.h ZEXTERN int ZEXPORT compress2 OF((Bytef *dest,   uLongf *destLen,
dest             1047 tools/packfi2/zlib.h ZEXTERN int ZEXPORT uncompress OF((Bytef *dest,   uLongf *destLen,
dest              149 tools/packfi2/zutil.c void zmemcpy(dest, source, len)
dest              150 tools/packfi2/zutil.c     Bytef* dest;
dest              156 tools/packfi2/zutil.c         *dest++ = *source++; /* ??? to be unrolled */
dest              173 tools/packfi2/zutil.c void zmemzero(dest, len)
dest              174 tools/packfi2/zutil.c     Bytef* dest;
dest              179 tools/packfi2/zutil.c         *dest++ = 0;  /* ??? to be unrolled */
dest              228 tools/packfi2/zutil.h #    define zmemzero(dest, len) _fmemset(dest, 0, len)
dest              232 tools/packfi2/zutil.h #    define zmemzero(dest, len) memset(dest, 0, len)
dest              235 tools/packfi2/zutil.h    extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
dest              237 tools/packfi2/zutil.h    extern void zmemzero OF((Bytef* dest, uInt len));
dest               41 tools/yuvconvert.c void yuv_to_rgb(uint8_t **dest, uint8_t y, int8_t u, int8_t v)
dest               43 tools/yuvconvert.c 	*((*dest)++) = clip(((y<<12) +          v*5743 + 2048)>>12);
dest               44 tools/yuvconvert.c 	*((*dest)++) = clip(((y<<12) - u*1411 - v*2925 + 2048)>>12);
dest               45 tools/yuvconvert.c 	*((*dest)++) = clip(((y<<12) + u*7258          + 2048)>>12);