Home
last modified time | relevance | path

Searched refs:optbuf (Results 1 – 25 of 170) sorted by relevance

1234567

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm-options.c163 char optbuf[100], optopt[100]; in help_msg() local
172 optbuf[0] = 0; in help_msg()
180 shortopt_len = strlen(optbuf); in help_msg()
183 strcat(optbuf, ", "); in help_msg()
188 strcat(optbuf, optopt); in help_msg()
189 longopt_len = strlen(optbuf); in help_msg()
197 strcat(optbuf, ", "); in help_msg()
200 strcat(optbuf, optopt); in help_msg()
201 longopt_len = strlen(optbuf); in help_msg()
207 optbuf[shortopt_len] = '\0'; in help_msg()
[all …]
/dports/devel/yasm/yasm-1.3.0/frontends/yasm/
H A Dyasm-options.c163 char optbuf[100], optopt[100]; in help_msg() local
172 optbuf[0] = 0; in help_msg()
180 shortopt_len = strlen(optbuf); in help_msg()
183 strcat(optbuf, ", "); in help_msg()
188 strcat(optbuf, optopt); in help_msg()
189 longopt_len = strlen(optbuf); in help_msg()
197 strcat(optbuf, ", "); in help_msg()
200 strcat(optbuf, optopt); in help_msg()
201 longopt_len = strlen(optbuf); in help_msg()
207 optbuf[shortopt_len] = '\0'; in help_msg()
[all …]
/dports/games/icebreaker/icebreaker-1.9.8/
H A Dthemes.c148 char optbuf[21]; in settheme() local
237 if (!strcmp(optbuf,"background")) in settheme()
242 else if (!strcmp(optbuf,"normaltext")) in settheme()
247 else if (!strcmp(optbuf,"boardfillmin")) in settheme()
257 else if (!strcmp(optbuf,"boardfillmax")) in settheme()
266 else if (!strcmp(optbuf,"gridline")) in settheme()
276 else if (!strcmp(optbuf,"line1")) in settheme()
281 else if (!strcmp(optbuf,"line2")) in settheme()
333 if (!strcmp(optbuf,"spritebitmap")) in settheme()
355 else if (!strcmp(optbuf,"soundouch")) in settheme()
[all …]
/dports/games/bzflag-server/bzflag-2.4.22/src/bzflag/
H A DEffectsMenu.cxx148 std::vector<std::string> optbuf; in EffectsMenu() local
156 optbuf = EFFECTS.getSpawnEffectTypes(); in EffectsMenu()
157 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
179 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
189 optbuf = EFFECTS.getShotEffectTypes(); in EffectsMenu()
190 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
222 optbuf = EFFECTS.getLandEffectTypes(); in EffectsMenu()
223 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
234 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
254 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
[all …]
/dports/games/bzflag/bzflag-2.4.22/src/bzflag/
H A DEffectsMenu.cxx148 std::vector<std::string> optbuf; in EffectsMenu() local
156 optbuf = EFFECTS.getSpawnEffectTypes(); in EffectsMenu()
157 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
179 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
189 optbuf = EFFECTS.getShotEffectTypes(); in EffectsMenu()
190 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
222 optbuf = EFFECTS.getLandEffectTypes(); in EffectsMenu()
223 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
234 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
254 options->assign(optbuf.begin(), optbuf.end()); in EffectsMenu()
[all …]
/dports/games/xnethack/xNetHack-xnh6.1/src/
H A Dmdlib.c100 char optbuf[BUFSZ]; variable
673 opttext[idxopttext] = strdup(optbuf); in build_options()
687 opttext[idxopttext] = strdup(optbuf); in build_options()
691 opttext[idxopttext] = strdup(optbuf); in build_options()
694 optbuf[0] = '\0'; in build_options()
709 opttext[idxopttext] = strdup(optbuf); in build_options()
712 optbuf[0] = '\0'; in build_options()
714 opttext[idxopttext] = strdup(optbuf); in build_options()
719 opttext[idxopttext] = strdup(optbuf); in build_options()
722 optbuf[0] = '\0'; in build_options()
[all …]
/dports/mail/qsf/qsf-1.2.7/src/main/
H A Dhelp.c96 char *optbuf; in display_help() local
124 optbuf = malloc(sz); in display_help()
125 if (optbuf == NULL) { in display_help()
139 snprintf(optbuf, sz, "%s%s%s%s%s", /* RATS: ignore (checked) */ in display_help()
141 sprintf(optbuf, "%s%s%s%s%s", /* RATS: ignore (checked) */ in display_help()
153 printf(" %-*s ", col1max - 2, optbuf); in display_help()
/dports/net/ndisc6/ndisc6-1.0.5/src/
H A Dtcptraceroute.c135 char optbuf[3 * len + argc], *buf = optbuf; in main() local
146 assert (optbuf + sizeof (optbuf) > buf); in main()
216 assert (optbuf + sizeof (optbuf) >= buf); in main()
/dports/misc/vifm/vifm-0.11/src/compat/
H A Dmntent.c64 char *opt, *optbuf; in hasmntopt() local
66 optbuf = strdup(mnt->mnt_opts); in hasmntopt()
67 for(opt = optbuf; (opt = strtok(opt, " ")) != NULL; opt = NULL) in hasmntopt()
71 opt = opt - optbuf + mnt->mnt_opts; in hasmntopt()
72 free(optbuf); in hasmntopt()
76 free(optbuf); in hasmntopt()
/dports/misc/rump/buildrump.sh-b914579/src/lib/libutil/
H A Dgetmntopts.c59 char *optbuf; member
117 free(mp->optbuf); in freemntopts()
140 if ((mp->optbuf = strdup(options)) == NULL) { in getmntopts()
146 free(mp->optbuf); in getmntopts()
154 for (opt = mp->optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) { in getmntopts()
187 free(mp->optbuf); in getmntopts()
/dports/multimedia/mpv/mpv-0.34.1/common/
H A Dencode_lavc.c480 char optbuf[32]; in encode_lavc_printoptions() local
507 snprintf(optbuf, sizeof(optbuf), "%s=<flags>", opt->name); in encode_lavc_printoptions()
510 snprintf(optbuf, sizeof(optbuf), "%s=<int>", opt->name); in encode_lavc_printoptions()
513 snprintf(optbuf, sizeof(optbuf), "%s=<int64>", opt->name); in encode_lavc_printoptions()
516 snprintf(optbuf, sizeof(optbuf), "%s=<double>", opt->name); in encode_lavc_printoptions()
519 snprintf(optbuf, sizeof(optbuf), "%s=<float>", opt->name); in encode_lavc_printoptions()
522 snprintf(optbuf, sizeof(optbuf), "%s=<string>", opt->name); in encode_lavc_printoptions()
528 snprintf(optbuf, sizeof(optbuf), "%s=<binary>", opt->name); in encode_lavc_printoptions()
531 snprintf(optbuf, sizeof(optbuf), " [+-]%s", opt->name); in encode_lavc_printoptions()
534 snprintf(optbuf, sizeof(optbuf), "%s", opt->name); in encode_lavc_printoptions()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/yasm/source/patched-yasm/frontends/tasm/
H A Dtasm-options.c105 char optbuf[100]; in help_msg() local
111 optbuf[0] = 0; in help_msg()
115 sprintf(optbuf, "/%s <%s>", options[i].opt, in help_msg()
120 sprintf(optbuf, "/%s", options[i].opt); in help_msg()
123 printf(" %-22s %s\n", optbuf, gettext(options[i].description)); in help_msg()
/dports/devel/yasm/yasm-1.3.0/frontends/tasm/
H A Dtasm-options.c105 char optbuf[100]; in help_msg() local
111 optbuf[0] = 0; in help_msg()
115 sprintf(optbuf, "/%s <%s>", options[i].opt, in help_msg()
120 sprintf(optbuf, "/%s", options[i].opt); in help_msg()
123 printf(" %-22s %s\n", optbuf, gettext(options[i].description)); in help_msg()
/dports/net-mgmt/tcpreplay/tcpreplay-4.3.4/src/fragroute/
H A Diputil.c16 inet_add_option_6(void *buf, size_t len, int proto, const void *optbuf, size_t optlen);
20 int proto, const void *optbuf, size_t optlen) in inet_add_option() argument
23 return ip_add_option(buf, len, proto, optbuf, optlen); in inet_add_option()
25 return inet_add_option_6(buf, len, proto, optbuf, optlen); in inet_add_option()
36 inet_add_option_6(void *buf, size_t len, int proto, const void *optbuf, size_t optlen) in inet_add_option_6() argument
77 memmove(p, optbuf, optlen); in inet_add_option_6()
/dports/sysutils/pv/pv-1.6.20/src/main/
H A Dhelp.c107 char *optbuf; in display_help() local
137 optbuf = malloc((size_t) (col1max + 16)); in display_help()
138 if (NULL == optbuf) { in display_help()
162 (void) snprintf(optbuf, (size_t) (col1max + 15), in display_help()
165 sprintf(optbuf, "%s%s%s%s%s", optlist[i].optshort, in display_help()
175 printf(" %-*s ", (int) (col1max - 2), optbuf); in display_help()
/dports/japanese/rogue_s/rogue_s/
H A Dplay.c394 char optbuf[BUFSIZ]; local
452 j = input_line(i, pos[i], cbuf[i], optbuf, ch);
455 strcpy(cbuf[i], optbuf);
499 optbuf[0] = 0;
501 strcat(optbuf, ",");
504 strcat(optbuf, "no");
505 strcat(optbuf, envopt[i].name);
507 strcat(optbuf, envopt[i].name);
508 strcat(optbuf, ":");
509 strcat(optbuf, cbuf[i]);
[all …]
/dports/mail/jmba/jmba-0.5.5/src/main/
H A Dhelp.c74 char *optbuf; in display_help() local
100 optbuf = malloc(col1max + 16); in display_help()
101 if (optbuf == NULL) { in display_help()
115 snprintf(optbuf, col1max + 14, "%s%s%s%s%s", in display_help()
126 printf(" %-*s ", col1max - 2, optbuf); in display_help()
/dports/mail/mailutils/mailutils-3.13/libmailutils/opt/
H A Dhelp.c447 struct mu_option **optbuf = po->po_optv; in option_summary() local
450 option_tab = optbuf; in option_summary()
458 if (MU_OPTION_IS_VALID_SHORT_OPTION (optbuf[i]) && in option_summary()
459 !(optbuf[i]->opt_flags & MU_OPTION_HIDDEN) && in option_summary()
460 !optbuf[i]->opt_arg) in option_summary()
477 if (MU_OPTION_IS_VALID_SHORT_OPTION (optbuf[i]) && in option_summary()
478 !(optbuf[i]->opt_flags & MU_OPTION_HIDDEN) && in option_summary()
479 optbuf[i]->opt_arg) in option_summary()
489 struct mu_option *opt = optbuf[idxbuf[i]]; in option_summary()
503 !(optbuf[i]->opt_flags & MU_OPTION_HIDDEN)) in option_summary()
[all …]
/dports/multimedia/transcode/transcode-1.1.7/src/
H A Dcmdline.c81 char optbuf[MAX_LINELEN+1]; in print_option_help() local
86 snprintf(optbuf, sizeof(optbuf), "--%s%s%s", in print_option_help()
94 optwidth, optbuf); in print_option_help()
95 if (strlen(optbuf) > optwidth) { in print_option_help()
/dports/math/combblas/CombBLAS_beta_16_2/include/CombBLAS/
H A DBFSFriends.h184 void LocalSpMV(const SpParMat<IT,bool,UDER> & A, int rowneighs, OptBuf<int32_t, VT > & optbuf, int3… in LocalSpMV() argument
190 if(optbuf.totmax > 0) // graph500 optimization enabled in LocalSpMV()
196 …VT, VT> > (*(A.spSeq), indacc, numacc, (int32_t) accnz, optbuf.inds, optbuf.nums, sendcnt, optbuf.… in LocalSpMV()
206 accnz, optbuf.inds, optbuf.nums, sendcnt, optbuf.dspls, rowneighs); in LocalSpMV()
328 … (const SpParMat<IT,bool,UDER> & A, const FullyDistSpVec<IT,VT> & x, OptBuf<int32_t, VT > & optbuf) in SpMV() argument
331 optbuf.MarkEmpty(); in SpMV()
358 LocalSpMV(A, rowneighs, optbuf, indacc, numacc, sendcnt, accnz); // indacc/numacc deallocated in SpMV()
377 if(optbuf.totmax > 0 ) // graph500 optimization enabled in SpMV()
379 …MPI_Alltoallv(optbuf.inds, sendcnt, optbuf.dspls, MPIType<int32_t>(), recvindbuf, recvcnt, rdispls… in SpMV()
380 …MPI_Alltoallv(optbuf.nums, sendcnt, optbuf.dspls, MPIType<VT>(), recvnumbuf, recvcnt, rdispls, MPI… in SpMV()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dplot_neteq_delay.m59 s.optbuf=s.optbuf(ix);
93 s.optbuf(start_ix:end_ix)=s.optbuf(start_ix:end_ix)/s.fs(k)*1000;
113 if any(s.optbuf~=0)
114 peak_ix=find(s.optbuf(cng_ix)<0); % peak mode is labeled with negative values
115 no_peak_ix=find(s.optbuf(cng_ix)>0); %setdiff(1:length(cng_ix),peak_ix);
117 s.arrival(cng_ix(peak_ix))+abs(s.optbuf(cng_ix(peak_ix)))-send_t(cng_ix(peak_ix)),...
120 … s.arrival(cng_ix(no_peak_ix))+abs(s.optbuf(cng_ix(no_peak_ix)))-send_t(cng_ix(no_peak_ix)),...
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dplot_neteq_delay.m59 s.optbuf=s.optbuf(ix);
93 s.optbuf(start_ix:end_ix)=s.optbuf(start_ix:end_ix)/s.fs(k)*1000;
113 if any(s.optbuf~=0)
114 peak_ix=find(s.optbuf(cng_ix)<0); % peak mode is labeled with negative values
115 no_peak_ix=find(s.optbuf(cng_ix)>0); %setdiff(1:length(cng_ix),peak_ix);
117 s.arrival(cng_ix(peak_ix))+abs(s.optbuf(cng_ix(peak_ix)))-send_t(cng_ix(peak_ix)),...
120 … s.arrival(cng_ix(no_peak_ix))+abs(s.optbuf(cng_ix(no_peak_ix)))-send_t(cng_ix(no_peak_ix)),...
/dports/multimedia/mswebrtc/mswebrtc-1.1.1/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dplot_neteq_delay.m59 s.optbuf=s.optbuf(ix);
93 s.optbuf(start_ix:end_ix)=s.optbuf(start_ix:end_ix)/s.fs(k)*1000;
113 if any(s.optbuf~=0)
114 peak_ix=find(s.optbuf(cng_ix)<0); % peak mode is labeled with negative values
115 no_peak_ix=find(s.optbuf(cng_ix)>0); %setdiff(1:length(cng_ix),peak_ix);
117 s.arrival(cng_ix(peak_ix))+abs(s.optbuf(cng_ix(peak_ix)))-send_t(cng_ix(peak_ix)),...
120 … s.arrival(cng_ix(no_peak_ix))+abs(s.optbuf(cng_ix(no_peak_ix)))-send_t(cng_ix(no_peak_ix)),...
/dports/devel/tcllib/tcllib-1.20/apps/
H A Dtcldocstrip190 set optbuf {}
213 lappend stitchbuf $optbuf $opt
214 set optbuf {}
244 lappend optbuf $o ""
252 lappend optbuf $opt $val
261 lappend optbuf $opt $val
270 lappend optbuf $opt $val
/dports/devel/tcllibc/tcllib-1.20/apps/
H A Dtcldocstrip190 set optbuf {}
213 lappend stitchbuf $optbuf $opt
214 set optbuf {}
244 lappend optbuf $o ""
252 lappend optbuf $opt $val
261 lappend optbuf $opt $val
270 lappend optbuf $opt $val

1234567