HomeSort by: relevance | last modified time | path
    Searched defs:missing (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/contrib/
check-params-in-docs.py 5 # Find missing and extra parameters in documentation compared to
90 missing = params_set - texi_set variable
91 if len(missing):
92 print('Missing:')
93 for m in missing:
  /src/external/gpl3/gcc.old/dist/contrib/
check-params-in-docs.py 3 # Find missing and extra parameters in documentation compared to
83 missing = params_set - texi_set variable
84 if len(missing):
85 print('Missing:')
86 for m in missing:
  /src/external/gpl3/binutils/dist/bfd/
cpu-m68k.c 176 find the one with the smallest number of missing features. */
181 unsigned extra = 99, missing = 99; local
200 if (this_missing < missing)
202 missing = this_missing;
  /src/external/gpl3/binutils.old/dist/bfd/
cpu-m68k.c 176 find the one with the smallest number of missing features. */
181 unsigned extra = 99, missing = 99; local
200 if (this_missing < missing)
202 missing = this_missing;
  /src/external/gpl3/gdb.old/dist/bfd/
cpu-m68k.c 176 find the one with the smallest number of missing features. */
181 unsigned extra = 99, missing = 99; local
200 if (this_missing < missing)
202 missing = this_missing;
  /src/external/gpl3/gdb/dist/bfd/
cpu-m68k.c 176 find the one with the smallest number of missing features. */
181 unsigned extra = 99, missing = 99; local
200 if (this_missing < missing)
202 missing = this_missing;
  /src/external/bsd/jemalloc/dist/test/unit/
ckh.c 28 const char *missing = "A string not in the hash table."; local
70 expect_true(ckh_search(&ckh, missing, NULL, NULL),
arena_reset.c 64 bool missing = emap_full_alloc_ctx_try_lookup(tsdn, &arena_emap_global, local
66 if (missing) {
  /src/external/bsd/jemalloc.old/dist/test/unit/
ckh.c 28 const char *missing = "A string not in the hash table."; local
70 assert_true(ckh_search(&ckh, missing, NULL, NULL),
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_config.c 241 boolean_t missing = B_FALSE; local
243 error = zpool_refresh_stats(zhp, &missing);
245 if (error != 0 || missing)
265 zpool_refresh_stats(zpool_handle_t *zhp, boolean_t *missing)
272 *missing = B_FALSE;
299 *missing = B_TRUE;
  /src/usr.sbin/makefs/
walk.c 68 static size_t missing = 0; variable
436 * will be changed to those found in specfile, and missing
472 if (missing)
473 errx(EXIT_FAILURE, "Add %zu missing entries in `%s'",
474 missing, specfile);
516 warnx("missing specfile entry for %s/%s",
518 missing++;
  /src/external/bsd/am-utils/dist/conf/autofs/
autofs_linux.h 79 struct autofs_packet_missing missing; member in union:autofs_packet_union
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
arena_inlines_b.h 194 bool missing = emap_full_alloc_ctx_try_lookup(tsdn, &arena_emap_global, local
196 if (missing) {
  /src/external/bsd/jemalloc/include/jemalloc/internal/
arena_inlines_b.h 194 bool missing = emap_full_alloc_ctx_try_lookup(tsdn, &arena_emap_global, local
196 if (missing) {
  /src/external/bsd/unbound/dist/iterator/
iter_delegpt.c 248 delegpt_count_ns(struct delegpt* dp, size_t* numns, size_t* missing)
252 *missing = 0;
256 (*missing)++;
284 size_t missing=0, numns=0, numaddr=0, numres=0, numavail=0; local
292 delegpt_count_ns(dp, &numns, &missing);
294 log_info("DelegationPoint<%s>: %u names (%u missing), "
296 buf, (unsigned)numns, (unsigned)missing,
iterator.c 247 log_err("out of memory adding missing");
1039 * missing targets. */
1903 * These are subordinate queries for missing delegation point target addresses,
1957 * queries for missing delegation point target addresses.
1991 * which may be zero if there were no missing targets.
2001 int missing; local
2005 missing = (int)delegpt_count_missing_targets(iq->dp, NULL);
2008 /* Generate target requests. Basically, any missing targets
2011 if(maxtargets < 0 || maxtargets > missing)
2012 toget = missing;
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
ops.cc 466 std::stack<path> missing; local
475 missing.push(std::move(pp));
476 pp = missing.top().parent_path();
482 if (ec || missing.empty())
488 const path& top = missing.top();
492 missing.pop();
494 while (!missing.empty());
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
fs_ops.cc 515 std::stack<path> missing; local
529 missing.push(std::move(pp));
530 if (missing.size() > 1000) // sanity check
535 pp = missing.top().parent_path();
558 __glibcxx_assert(!missing.empty());
563 const path& top = missing.top();
567 missing.pop();
569 while (!missing.empty());
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
ops.cc 451 std::stack<path> missing; local
460 missing.push(std::move(pp));
461 pp = missing.top().parent_path();
467 if (ec || missing.empty())
473 const path& top = missing.top();
477 missing.pop();
479 while (!missing.empty());
std-ops.cc 656 std::stack<path> missing; local
670 missing.push(std::move(pp));
671 if (missing.size() > 1000) // sanity check
676 pp = missing.top().parent_path();
702 const path& top = missing.top();
706 missing.pop();
708 while (!missing.empty());
  /src/external/gpl3/gdb.old/dist/gdb/nat/
linux-btrace.c 310 int missing; local
315 missing = (begin - start);
316 start = (end - missing);
318 /* If the entire sample is missing, we're done. */
319 if (missing == sizeof (sample))
330 memcpy (stack, start, missing);
331 memcpy (stack + missing, begin, sizeof (sample) - missing);
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-btrace.c 310 int missing; local
315 missing = (begin - start);
316 start = (end - missing);
318 /* If the entire sample is missing, we're done. */
319 if (missing == sizeof (sample))
330 memcpy (stack, start, missing);
331 memcpy (stack + missing, begin, sizeof (sample) - missing);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
fs_ops.cc 515 std::stack<path> missing; local
529 missing.push(std::move(pp));
530 if (missing.size() > 1000) // sanity check
535 pp = missing.top().parent_path();
558 __glibcxx_assert(!missing.empty());
563 const path& top = missing.top();
567 missing.pop();
569 while (!missing.empty());
  /src/sys/dev/ata/
wd.c 1310 uint32_t count, missing, skip; local
1318 missing = wd->sc_bscount;
1338 missing--;
1355 missing--;
1361 dbsi.dbsi_left = missing;
  /src/usr.bin/config/
sem.c 1224 * is missing but other devices which also provide the
2244 char missing[1000], extra[1000], nodefault[1000]; local
2259 mp = missing;
2301 cfgerror("%s: must specify %s", name, missing);

Completed in 29 milliseconds

1 2