HomeSort by relevance Sort by last modified time
    Searched defs:optbuf (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm-options.c 105 char optbuf[100], optopt[100]; local
111 optbuf[0] = 0;
116 sprintf(optbuf, "/%s <%s>", options[i].opt,
121 sprintf(optbuf, "/%s", options[i].opt);
124 printf(" %-22s %s\n", optbuf, gettext(options[i].description));
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm-options.c 163 char optbuf[100], optopt[100]; local
172 optbuf[0] = 0;
177 sprintf(optbuf, "-%c <%s>", options[i].sopt,
180 shortopt_len = strlen(optbuf);
183 strcat(optbuf, ", ");
188 strcat(optbuf, optopt);
189 longopt_len = strlen(optbuf);
193 sprintf(optbuf, "-%c", options[i].sopt);
194 shortopt_len = strlen(optbuf);
197 strcat(optbuf, ", ");
    [all...]

Completed in 1657 milliseconds