Home
last modified time | relevance | path

Searched refs:newstr (Results 126 – 150 of 2651) sorted by relevance

12345678910>>...107

/dports/lang/gcc48/gcc-4.8.5/libiberty/
H A Dconcat.c155 char *newstr; in concat() local
160 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in concat()
166 vconcat_copy (newstr, first, args); in concat()
169 return newstr; in concat()
193 char *newstr; in reconcat() local
199 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in reconcat()
206 vconcat_copy (newstr, first, args); in reconcat()
211 return newstr; in reconcat()
/dports/devel/avr-gdb/gdb-7.3.1/libiberty/
H A Dconcat.c155 char *newstr; in concat() local
160 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in concat()
166 vconcat_copy (newstr, first, args); in concat()
169 return newstr; in concat()
193 char *newstr; in reconcat() local
199 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in reconcat()
206 vconcat_copy (newstr, first, args); in reconcat()
211 return newstr; in reconcat()
/dports/devel/gdb761/gdb-7.6.1/libiberty/
H A Dconcat.c155 char *newstr; in concat() local
160 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in concat()
166 vconcat_copy (newstr, first, args); in concat()
169 return newstr; in concat()
193 char *newstr; in reconcat() local
199 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in reconcat()
206 vconcat_copy (newstr, first, args); in reconcat()
211 return newstr; in reconcat()
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/gcc-4.1-20060728/libiberty/
H A Dconcat.c154 char *newstr; in concat() local
159 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in concat()
165 vconcat_copy (newstr, first, args); in concat()
168 return newstr; in concat()
191 char *newstr; in reconcat() local
197 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in reconcat()
204 vconcat_copy (newstr, first, args); in reconcat()
209 return newstr; in reconcat()
/dports/devel/djgpp-binutils/binutils-2.17/libiberty/
H A Dconcat.c154 char *newstr; in concat() local
159 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in concat()
165 vconcat_copy (newstr, first, args); in concat()
168 return newstr; in concat()
191 char *newstr; in reconcat() local
197 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in reconcat()
204 vconcat_copy (newstr, first, args); in reconcat()
209 return newstr; in reconcat()
/dports/devel/mingw32-gcc/gcc-4.8.1/libiberty/
H A Dconcat.c155 char *newstr; in concat() local
160 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in concat()
166 vconcat_copy (newstr, first, args); in concat()
169 return newstr; in concat()
193 char *newstr; in reconcat() local
199 newstr = XNEWVEC (char, vconcat_length (first, args) + 1); in reconcat()
206 vconcat_copy (newstr, first, args); in reconcat()
211 return newstr; in reconcat()
/dports/graphics/aseprite/aseprite-1.2.9/third_party/curl/lib/
H A Dstrdup.c30 char *newstr; in curlx_strdup() local
40 newstr = malloc((len+1)*sizeof(char)); in curlx_strdup()
41 if(!newstr) in curlx_strdup()
44 memcpy(newstr,str,(len+1)*sizeof(char)); in curlx_strdup()
46 return newstr; in curlx_strdup()
H A Dbase64.c85 unsigned char *newstr; in Curl_base64_decode() local
107 newstr = malloc(rawlen+4); in Curl_base64_decode()
108 if(!newstr) in Curl_base64_decode()
111 *outptr = newstr; in Curl_base64_decode()
116 decodeQuantum(newstr, src); in Curl_base64_decode()
117 newstr += 3; src += 4; in Curl_base64_decode()
125 newstr[i] = lastQuantum[i]; in Curl_base64_decode()
127 newstr[i] = '\0'; /* zero terminate */ in Curl_base64_decode()
/dports/audio/lewton/lewton-0.10.2/cargo-crates/curl-sys-0.4.25/curl/src/
H A Dtool_strdup.c28 char *newstr; in strdup() local
38 newstr = malloc((len + 1)*sizeof(char)); in strdup()
39 if(!newstr) in strdup()
42 memcpy(newstr, str, (len + 1)*sizeof(char)); in strdup()
44 return newstr; in strdup()
/dports/net/proby/proby-1.0.2/cargo-crates/curl-sys-0.4.34+curl-7.71.1/curl/src/
H A Dtool_strdup.c28 char *newstr; in strdup() local
38 newstr = malloc((len + 1)*sizeof(char)); in strdup()
39 if(!newstr) in strdup()
42 memcpy(newstr, str, (len + 1)*sizeof(char)); in strdup()
44 return newstr; in strdup()
/dports/games/warmux/warmux-11.04/build/symbian/lib/curl/lib/
H A Dstrdup.c31 char *newstr; in curlx_strdup() local
41 newstr = malloc((len+1)*sizeof(char)); in curlx_strdup()
42 if(!newstr) in curlx_strdup()
45 memcpy(newstr,str,(len+1)*sizeof(char)); in curlx_strdup()
47 return newstr; in curlx_strdup()
H A Dbase64.c89 unsigned char *newstr; in Curl_base64_decode() local
111 newstr = malloc(rawlen+4); in Curl_base64_decode()
112 if(!newstr) in Curl_base64_decode()
115 *outptr = newstr; in Curl_base64_decode()
120 decodeQuantum(newstr, src); in Curl_base64_decode()
121 newstr += 3; src += 4; in Curl_base64_decode()
129 newstr[i] = lastQuantum[i]; in Curl_base64_decode()
131 newstr[i] = 0; /* zero terminate */ in Curl_base64_decode()
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/curl/src/
H A Dtool_strdup.c28 char *newstr; in strdup() local
38 newstr = malloc((len + 1)*sizeof(char)); in strdup()
39 if(!newstr) in strdup()
42 memcpy(newstr, str, (len + 1)*sizeof(char)); in strdup()
44 return newstr; in strdup()
/dports/sysutils/chgrep/chgrep-1.2.4/src/
H A Dchgrep.c53 char *newstr; variable
72 newstr = malloc(MAXLINE); in main()
75 newstr[i] = 0; in main()
154 newstr[0] = 0; in main()
156 strcpy(newstr, argv[optind+1]); in main()
163 Copy_ch_file2("stdin", "stdout", oldstr2, newstr); in main()
165 Copy_ch_file("stdin", "stdout", &re_old, newstr); in main()
214 if (Copy_ch_file2(tmpfile, argv[opttmp], oldstr2, newstr)) in main()
217 if (Copy_ch_file(tmpfile, argv[opttmp], &re_old, newstr)) in main()
/dports/lang/mosml/mosml-ver-2.10.1/src/mosmllib/
H A DString.sml32 in copyall 0 strs; newstr end;
46 blit_ sep 0 newstr to seplen;
47 blit_ v1 0 newstr (to+seplen) len1;
51 blit_ s1 0 newstr 0 s1len;
53 newstr
59 let val newstr = mkstring_ 1 value
60 in update_ newstr 0 c; newstr end;
67 in (init cs 0; newstr) end;
73 in blit_ s i newstr 0 n; newstr end;
84 val newstr = mkstring_ stop value
[all …]
/dports/devel/icmake/icmake-9b958b05ac462adf6cde394875964a8127599514/icmake/exec/builtin/
H A Dbresize.c16 char *newstr = rss_realloc(NULL, newLen + 1); /* room for new chars */ in b_resize() local
17 memset(newstr, ' ', newLen); /* initially blanks */ in b_resize()
18 newstr[newLen] = 0; in b_resize()
20 memcpy(newstr, str, oldLen < newLen ? oldLen : newLen); in b_resize()
22 stringcons_swallowCharPtr(eb_releaseReg(), newstr); in b_resize()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/binutils/libiberty/
H A Dconcat.c158 char *newstr; in concat() local
163 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in concat()
169 vconcat_copy (newstr, first, args); in concat()
172 return newstr; in concat()
195 char *newstr; in reconcat() local
201 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in reconcat()
208 vconcat_copy (newstr, first, args); in reconcat()
213 return newstr; in reconcat()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libiberty/
H A Dconcat.c158 char *newstr; in concat() local
163 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in concat()
169 vconcat_copy (newstr, first, args); in concat()
172 return newstr; in concat()
195 char *newstr; in reconcat() local
201 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in reconcat()
208 vconcat_copy (newstr, first, args); in reconcat()
213 return newstr; in reconcat()
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/binutils-2.16.1/libiberty/
H A Dconcat.c158 char *newstr; in concat() local
163 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in concat()
169 vconcat_copy (newstr, first, args); in concat()
172 return newstr; in concat()
195 char *newstr; in reconcat() local
201 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in reconcat()
208 vconcat_copy (newstr, first, args); in reconcat()
213 return newstr; in reconcat()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libiberty/
H A Dconcat.c158 char *newstr; in concat() local
163 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in concat()
169 vconcat_copy (newstr, first, args); in concat()
172 return newstr; in concat()
195 char *newstr; in reconcat() local
201 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in reconcat()
208 vconcat_copy (newstr, first, args); in reconcat()
213 return newstr; in reconcat()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/binutils/libiberty/
H A Dconcat.c158 char *newstr; in concat() local
163 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in concat()
169 vconcat_copy (newstr, first, args); in concat()
172 return newstr; in concat()
195 char *newstr; in reconcat() local
201 newstr = (char *) xmalloc (vconcat_length (first, args) + 1); in reconcat()
208 vconcat_copy (newstr, first, args); in reconcat()
213 return newstr; in reconcat()
/dports/devel/radare2/radare2-5.1.1/libr/parse/p/
H A Dparse_m68k_pseudo.c26 static int replace(int argc, const char *argv[], char *newstr) { in replace() argument
71 if (newstr != NULL) { in replace()
76 strcpy (newstr+k, w); in replace()
80 newstr[k] = ops[i].str[j]; in replace()
83 newstr[k]='\0'; in replace()
90 if (newstr != NULL) { in replace()
91 newstr[0] = '\0'; in replace()
93 strcat (newstr, argv[i]); in replace()
94 strcat (newstr, (i == 0 || i== argc - 1)?" ":", "); in replace()
H A Dparse_sh_pseudo.c13 static int replace(int argc, const char *argv[], char *newstr) { in replace() argument
129 if (newstr != NULL) { in replace()
134 strcpy (newstr + k, w); in replace()
138 newstr[k] = ops[i].str[j]; in replace()
141 newstr[k] = '\0'; in replace()
148 if (newstr != NULL) { in replace()
149 newstr[0] = '\0'; in replace()
151 strcat (newstr, argv[i]); in replace()
152 strcat (newstr, (i == 0 || i == argc - 1) ? " ":", "); in replace()
H A Dparse_att2intel.c13 static int replace(int argc, const char *argv[], char *newstr) { in replace() argument
40 if (newstr != NULL) { in replace()
45 strcpy (newstr + k, w); in replace()
49 newstr[k] = ops[i].str[j]; in replace()
52 newstr[k]='\0'; in replace()
59 if (newstr != NULL) { in replace()
60 newstr[0] = '\0'; in replace()
62 strcat (newstr, argv[i]); in replace()
63 strcat (newstr, (i == 0 || i== argc - 1)?" ":","); in replace()
/dports/emulators/dolphin-emu/dolphin-3152428/Externals/curl/lib/
H A Dstrdup.c37 char *newstr; in curlx_strdup() local
47 newstr = malloc((len+1)*sizeof(char)); in curlx_strdup()
48 if(!newstr) in curlx_strdup()
51 memcpy(newstr, str, (len+1)*sizeof(char)); in curlx_strdup()
53 return newstr; in curlx_strdup()

12345678910>>...107