Searched refs:sep (Results 51 - 75 of 217) sorted by relevance

123456789

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_print.c71 char *sep; local
79 sep = " ";
81 fprintf(fd, "%sreduced-resolution image", sep);
82 sep = "/";
85 fprintf(fd, "%smulti-page document", sep);
86 sep = "/";
89 fprintf(fd, "%stransparency mask", sep);
230 sep = "";
234 fprintf(fd, "%sunspecified", sep);
237 fprintf(fd, "%sassoc-alpha", sep);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/intl/
H A Dl10nflist.c115 static void argz_stringify__ PARAMS ((char *argz, size_t len, int sep));
118 argz_stringify__ (argz, len, sep)
121 int sep;
129 *argz++ = sep;
133 # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep)
136 # define __argz_stringify(argz, len, sep) \
137 INTUSE(__argz_stringify) (argz, len, sep)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/util/
H A Dtable.pl36 $sep = "+" . ("-" x 76) . "+\n";
150 print $sep;
190 print $sep;
193 print $sep, "\n";
245 print $sep;
256 print $sep;
271 print $sep;
282 print $sep;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-sctp.c99 const char *sep; local
158 sep = "\n\t";
160 sep = " (";
179 printf("%s%d) [Bad chunk length %u]", sep, chunkCount+1, chunkLength);
192 printf("%s%d) ", sep, chunkCount+1);
400 sep = ", (";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexLua.cxx66 int sep = 1; local
67 while (sc.GetRelative(sep) == '=' && sep < 0xFF)
68 sep++;
69 if (sc.GetRelative(sep) == sc.ch)
70 return sep;
206 int sep = LongDelimCheck(sc); local
207 if (sep == 1 && sepCount == 1) { // [[-only allowed to nest
212 int sep = LongDelimCheck(sc); local
213 if (sep
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dl10nflist.c110 # define __argz_stringify(argz, len, sep) \
111 INTUSE(__argz_stringify) (argz, len, sep)
119 argz_stringify__ (char *argz, size_t len, int sep) argument
127 *argz++ = sep;
131 # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dhist.c586 const char *sep = symbol_conf.field_sep; local
611 sep ? "%.2f" : " %6.2f%%",
614 ret = snprintf(s, size, sep ? "%.2f" : " %6.2f%%",
618 sep ? "%.2f" : " %6.2f%%",
621 sep ? "%.2f" : " %6.2f%%",
626 sep ? "%.2f" : " %6.2f%%",
631 sep ? "%.2f" : " %6.2f%%",
637 ret = snprintf(s, size, sep ? "%lld" : "%12lld ", period);
640 if (sep)
641 ret += snprintf(s + ret, size - ret, "%c%lld", *sep, perio
729 const char *sep = symbol_conf.field_sep; local
[all...]
H A Dcolor.c96 int sep = 0; local
102 sep++;
105 if (sep++)
115 if (sep++)
H A Dsort.c115 char *sep = bf; local
118 sep = strchr(sep, *field_sep);
119 if (sep == NULL)
121 *sep = '.';
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dlibrtmp.c117 char *sep, *p = ctx->conn; local
125 sep = strchr(p, ' ');
126 if (sep)
127 p = sep + 1;
179 char *sep, *p = ctx->conn; local
185 sep = strchr(p, ' ');
186 if (sep)
187 *sep = '\0';
190 if (sep)
191 p = sep
[all...]
H A Dnetwork.c372 char *sep, *next = NULL; local
374 sep = start + strcspn(start, " ,");
375 if (*sep) {
376 next = sep + 1;
377 *sep = '\0';
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lua/source/src/
H A Dllex.c267 static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) { argument
278 if (skip_sep(ls) == sep) {
297 seminfo->ts = luaX_newstring(ls, luaZ_buffer(ls->buff) + (2 + sep),
298 luaZ_bufflen(ls->buff) - 2*(2 + sep));
416 int sep = skip_sep(ls); local
418 if (sep >= 0) {
419 read_long_string(ls, NULL, sep); /* skip long comment */
430 int sep = skip_sep(ls); local
431 if (sep >= 0) {
432 read_long_string(ls, seminfo, sep);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cifs/
H A Dcifs_dfs_ref.c130 char sep = ','; local
149 /* md_len = strlen(...) + 12 for 'sep+prefixpath='
162 if (strncmp(sb_mountdata, "sep=", 4) == 0) {
163 sep = sb_mountdata[4];
169 tkn_e = strchr(sb_mountdata + off, sep);
194 if (mountdata[strlen(mountdata) - 1] != sep)
195 strncat(mountdata, &sep, 1);
198 strncat(mountdata, &sep, 1);
212 strncat(mountdata, &sep, 1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dutil_str.c42 const char *sep,
57 if (!sep)
58 sep = " \t\n\r";
60 /* find the first non sep char, if left-trimming is requested */
62 while (*s && strchr_m(sep,*s))
72 for (quoted = False; len < bufsize && *s && (quoted || !strchr_m(sep,*s)); s++) {
92 BOOL next_token(const char **ptr, char *buff, const char *sep, size_t bufsize) argument
94 return next_token_internal(ptr, buff, sep, bufsize, True);
104 const char *sep,
107 return next_token_internal(ptr, buff, sep, bufsiz
40 next_token_internal(const char **ptr, char *buff, const char *sep, size_t bufsize, BOOL ltrim) argument
102 next_token_no_ltrim(const char **ptr, char *buff, const char *sep, size_t bufsize) argument
118 next_token_nr(const char **ptr,char *buff, const char *sep, size_t bufsize) argument
141 toktocliplist(int *ctok, const char *sep) argument
1767 str_list_make_internal(TALLOC_CTX *mem_ctx, const char *string, const char *sep) argument
1846 str_list_make_talloc(TALLOC_CTX *mem_ctx, const char *string, const char *sep) argument
1851 str_list_make(const char *string, const char *sep) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_conntrack.c569 const char *sep = " "; local
572 printf("%sINVALID", sep);
573 sep = ",";
576 printf("%sNEW", sep);
577 sep = ",";
580 printf("%sRELATED", sep);
581 sep = ",";
584 printf("%sESTABLISHED", sep);
585 sep = ",";
588 printf("%sUNTRACKED", sep);
604 const char *sep = " "; local
[all...]
H A Dlibxt_CT.c87 const char *sep = ""; local
93 printf("%s%s", sep, tbl[i].name);
94 sep = ",";
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/extensions/
H A Dlibxt_conntrack.c576 const char *sep = " "; local
579 printf("%sINVALID", sep);
580 sep = ",";
583 printf("%sNEW", sep);
584 sep = ",";
587 printf("%sRELATED", sep);
588 sep = ",";
591 printf("%sESTABLISHED", sep);
592 sep = ",";
595 printf("%sUNTRACKED", sep);
611 const char *sep = " "; local
[all...]
H A Dlibxt_CT.c87 const char *sep = ""; local
93 printf("%s%s", sep, tbl[i].name);
94 sep = ",";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/ad/
H A Dad_find.c143 bstring sep = bfromcstr("/"); local
163 path = bjoinInv(pathlist, sep);
171 bdestroy(sep);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/extensions/
H A Dlibipt_addrtype.c128 const char *sep = ""; local
133 printf("%s%s", sep, rtn_names[i]);
134 sep = ",";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Dplotframes154 my $sep = "";
157 print FH "$sep\"$fn\" title \"$type frames\" with impulses";
159 $sep = ", ";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/VisualStudio2005/wsdl2h/wsdl2h/
H A Dservice.h58 void generate(Types&, const char *sep, bool anonymous, bool remark, bool response);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/wsdl/
H A Dservice.h58 void generate(Types&, const char *sep, bool anonymous, bool remark, bool response);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/VisualStudio2005/wsdl2h/wsdl2h/
H A Dservice.h58 void generate(Types&, const char *sep, bool anonymous, bool remark, bool response);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/wsdl/
H A Dservice.h58 void generate(Types&, const char *sep, bool anonymous, bool remark, bool response);

Completed in 180 milliseconds

123456789