Searched refs:needed (Results 51 - 75 of 133) sorted by relevance

123456

/freebsd-10.0-release/contrib/xz/src/xz/
H A Dlist.c271 // show also how much memory would have been needed.
273 uint64_t needed = lzma_memusage(&strm); local
274 if (UINT64_MAX - needed < memused)
275 needed = UINT64_MAX;
277 needed += memused;
279 message_mem_needed(V_ERROR, needed);
313 // needed so that we can print which Check is used in each
320 // needed to show the offsets of the Streams correctly.
829 printf(_(" Memory needed: %s MiB\n"), uint64_to_str(
998 printf(_(" Memory needed
[all...]
/freebsd-10.0-release/sbin/ipfw/
H A Dnat.c76 size_t needed; local
94 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
96 buf = safe_calloc(1, needed);
97 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1)
99 lim = buf + needed;
/freebsd-10.0-release/usr.sbin/ppp/
H A Diface.c95 size_t needed, namelen; local
119 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) {
125 if ((buf = (char *)malloc(needed)) == NULL) {
130 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) {
138 end = buf + needed;
/freebsd-10.0-release/contrib/sendmail/cf/cf/
H A Dsubmit.cf1313 R$+ $: $>AddDomain $1 add local domain if needed
1331 R$+ $: $>AddDomain $1 add local domain if needed
1338 R$+ $: $>AddDomain $1 add local domain if needed
/freebsd-10.0-release/lib/libc/gen/
H A Dgetgrent.c1477 int i, needed; local
1482 case nss_lt_name: needed = 1; break;
1483 case nss_lt_id: needed = 2; break;
1484 default: needed = 2; break;
1487 for (p = line, i = 0; i < needed && p < eol; p++)
1490 if (i < needed)
/freebsd-10.0-release/usr.sbin/ndp/
H A Dndp.c563 size_t needed; local
594 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
596 if (needed > 0) {
597 if ((buf = malloc(needed)) == NULL)
599 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
601 lim = buf + needed;
/freebsd-10.0-release/contrib/binutils/ld/scripttempl/
H A Dnw.sc123 /* These are needed for ELF backends which have not yet been
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DPathV2.inc409 // From here on, DO NOT modify model. It may be needed if the randomly chosen
/freebsd-10.0-release/sbin/routed/
H A Dtable.c56 int need_flash = 1; /* flash update needed
1044 size_t needed; local
1067 if ((needed = sysctl_buf_size) != 0) {
1068 if (sysctl(mib, 6, sysctl_buf,&needed, 0, 0) >= 0)
1073 needed = 0;
1075 if (sysctl(mib, 6, 0, &needed, 0, 0) < 0)
1081 needed += 50*(sizeof(*rtm)+5*sizeof(struct sockaddr));
1082 sysctl_buf = rtmalloc(sysctl_buf_size = needed,
1086 lim = sysctl_buf + needed;
1902 * unless it is needed b
[all...]
/freebsd-10.0-release/secure/lib/libcrypto/
H A DMakefile.asm3 # perfect by any means, but does what is needed.
/freebsd-10.0-release/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_resource.c79 #ifdef needed
167 #ifdef needed
/freebsd-10.0-release/usr.sbin/cron/doc/
H A DINSTALL82 (or whatever); no '&' is needed since the daemon forks itself and the
/freebsd-10.0-release/contrib/ntp/sntp/
H A Dsntp-opts.def100 Note that the times produced by this are the corrections needed, and
163 that the times produced by this are the corrections needed, and not the error
/freebsd-10.0-release/libexec/rtld-elf/
H A Drtld.h226 Needed_Entry *needed; /* Shared objects needed by this one (%) */ member in struct:Struct_Obj_Entry
/freebsd-10.0-release/sys/kern/
H A Dkern_ktrace.c571 * When a process forks, enable tracing in the new process if needed.
781 ktrcapfail(type, needed, held)
783 const cap_rights_t *needed;
795 if (needed != NULL)
796 kcf->cap_needed = *needed;
/freebsd-10.0-release/sbin/natd/
H A Dnatd.c892 size_t needed; local
909 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
911 if ((buf = malloc(needed)) == NULL)
913 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1 && errno != ENOMEM)
915 lim = buf + needed;
/freebsd-10.0-release/contrib/bsnmp/snmp_mibII/
H A DmibII.c1243 size_t needed; local
1259 &needed)) == NULL)
1263 while (next < buf + needed) {
1302 size_t needed; local
1313 if ((buf = mib_fetch_rtab(AF_INET, NET_RT_FLAGS, 0, &needed)) == NULL) {
1319 while (next < buf + needed) {
/freebsd-10.0-release/contrib/bmake/mk/
H A Down.mk202 # apply the :T:R first, so the more specific :T can override if needed
/freebsd-10.0-release/contrib/bmake/mk/sys/
H A DHP-UX.mk24 # +b<path> is needed to stop the binaries from insisting on having
/freebsd-10.0-release/share/examples/drivers/
H A Dmake_pseudo_driver.sh188 * Often this isn't needed as once the open() is performed,
370 * Definitions needed to access the ${1} device (ioctls etc)
/freebsd-10.0-release/share/mk/
H A Dbsd.dep.mk24 # DPSRCS List of source files which are needed for generating
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dregengine.inc193 break; /* no further info needed */
206 break; /* no further info needed */
/freebsd-10.0-release/sys/dev/cxgbe/
H A Dadapter.h380 #define FL_RUNNING_LOW(fl) (fl->cap - fl->needed <= fl->lowat)
381 #define FL_NOT_RUNNING_LOW(fl) (fl->cap - fl->needed >= 2 * fl->lowat)
402 uint32_t needed; /* # of buffers needed to fill up fl. */ member in struct:sge_fl
410 /* txq: SGE egress queue + what's needed for Ethernet NIC */
/freebsd-10.0-release/contrib/binutils/libiberty/
H A DMakefile.in108 all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
385 # needed-list is used by libstdc++. NEEDED is the list of functions
391 needed-list: Makefile
392 rm -f needed-list; touch needed-list; \
396 *$$f*) echo $$g >> needed-list ;; \
448 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
475 # if needed. This prevents problems with parallel builds.
484 # if needed
[all...]
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A DMakefile.in108 all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
368 # needed-list is used by libstdc++. NEEDED is the list of functions
374 needed-list: Makefile
375 rm -f needed-list; touch needed-list; \
379 *$$f*) echo $$g >> needed-list ;; \
431 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
458 # if needed. This prevents problems with parallel builds.
467 # if needed
[all...]

Completed in 199 milliseconds

123456