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

1234567

/freebsd-11-stable/contrib/gcc/
H A Dcgraphunit.c35 (There is one exception needed for implementing GCC extern inline function.)
67 of functions or variables that are known to be needed at given stage
81 callgraph and varpool nodes referenced by the as needed.
104 and variables found to be needed output to the assembly file. Via
129 it is still needed for some legacy code that rely on particular ordering
136 decision on whether function is needed is made more conservative so
137 uninlininable static functions are needed too. During the call-graph
188 /* Determine if function DECL is needed. That is, visible to something
218 /* If we decided it was needed before, but at the time we didn't have
219 the body of the function available, then it's still needed
[all...]
H A Dcalls.c91 /* Place that this stack area has been saved, if needed. */
877 ??? This may not be needed anymore.
902 ARGS_SO_FAR holds state needed by the target to know where to place
1225 /* Precompute parameters as needed for a function call.
1807 as specified by LEFT_P. Return true if some action was needed. */
2310 /* Precompute any arguments as needed. */
2376 int needed = adjusted_args_size.constant;
2382 if (needed > current_function_outgoing_args_size)
2383 current_function_outgoing_args_size = needed;
2407 needed
2375 int needed = adjusted_args_size.constant; local
3295 int needed; local
[all...]
/freebsd-11-stable/share/mk/
H A Dmeta.subdir.mk65 # clean up if needed
H A Dbsd.dep.mk25 # DPSRCS List of source files which are needed for generating
86 # Skip reading .depend when not needed to speed up tree-walks and simple
212 # If using filemon then _EXTRADEPEND is skipped since it is not needed.
H A Dbsd.opts.mk44 # unfortunately needed to support statically linking the entire
H A Dbsd.test.mk61 # variable as needed.
H A Dbsd.init.mk39 # optimize targets that are only needed when building something, such as
/freebsd-11-stable/contrib/ntp/
H A DMakefile.am104 This target is needed by sntp/Makefile.am on decrepit \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProgram.inc78 // Lets attach the extension manually. That is needed for files
/freebsd-11-stable/contrib/amd/amd/
H A Dreaddir.c654 size_t needed = needroom3(); local
665 if (count < needed) {
666 dlog("%s: not enough room %u < %zu", __func__, count, needed);
810 size_t needed = needroom3(); local
821 if (count < needed) {
822 dlog("%s: not enough room %u < %zu", __func__, count, needed);
/freebsd-11-stable/usr.sbin/ndp/
H A Dndp.c561 size_t needed; local
592 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
594 if (needed > 0) {
595 if ((buf = malloc(needed)) == NULL)
597 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
599 lim = buf + needed;
/freebsd-11-stable/sbin/route/
H A Droute.c445 size_t needed; local
464 if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0)
466 if ((buf = malloc(needed)) == NULL)
468 if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0) {
477 lim = buf + needed;
1412 size_t needed; local
1424 if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0)
1426 if ((buf = malloc(needed)) == NULL)
1428 if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0) {
1437 lim = buf + needed;
[all...]
/freebsd-11-stable/sbin/bsdlabel/
H A Dbsdlabel.c1129 u_long base_offset, needed, total_size, total_percent, current_offset; local
1327 needed = 0;
1334 needed += pp->p_size;
1346 needed += pp->p_size;
1352 if (current_offset - base_offset <= needed) {
1357 needed, base_offset, current_offset);
1362 base_offset - needed;
/freebsd-11-stable/sbin/routed/
H A Dif.c661 size_t needed; local
693 if ((needed = sysctl_buf_size) != 0) {
694 if (sysctl(mib, 6, sysctl_buf,&needed, 0, 0) >= 0)
700 needed = 0;
702 if (sysctl(mib, 6, 0, &needed, 0, 0) < 0)
704 sysctl_buf = rtmalloc(sysctl_buf_size = needed,
709 ifam_lim = (char *)sysctl_buf + needed;
1140 /* turn on router discovery and RIP If needed */
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-11-stable/contrib/binutils/bfd/
H A Dsunos.c631 /* The list of dynamic objects needed by dynamic objects included in
633 struct bfd_link_needed_list *needed;
697 ret->needed = NULL;
723 /* Create the dynamic sections needed if we are linking against a
733 bfd_boolean needed)
799 if ((needed && ! sunos_hash_table (info)->dynamic_sections_needed)
880 needed if there really is a dynamic object in the link, so they
917 /* Record information about any other objects needed by this one. */
924 struct bfd_link_needed_list *needed, **pp;
943 needed
632 struct bfd_link_needed_list *needed; member in struct:sunos_link_hash_table
730 sunos_create_dynamic_sections(bfd *abfd, struct bfd_link_info *info, bfd_boolean needed) argument
923 struct bfd_link_needed_list *needed, **pp; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_subr.c620 int needed, rval; local
647 if ((needed = vsnprintf(NULL, 0, format, ap2)) < 0) {
655 if (needed == 0) {
666 if (needed + 1 < avail)
689 dtp->dt_buffered_offs += needed;
/freebsd-11-stable/contrib/xz/src/xz/
H A Dlist.c312 // show also how much memory would have been needed.
314 uint64_t needed = lzma_memusage(&strm); local
315 if (UINT64_MAX - needed < memused)
316 needed = UINT64_MAX;
318 needed += memused;
320 message_mem_needed(V_ERROR, needed);
354 // needed so that we can print which Check is used in each
361 // needed to show the offsets of the Streams correctly.
903 printf(_(" Memory needed: %s MiB\n"), uint64_to_str(
1078 printf(_(" Memory needed
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Diface.c94 size_t needed, namelen; local
118 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) {
124 if ((buf = (char *)malloc(needed)) == NULL) {
129 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) {
137 end = buf + needed;
/freebsd-11-stable/sbin/ipfw/
H A Dnat.c84 size_t needed; local
102 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
104 buf = safe_calloc(1, needed);
105 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1)
107 lim = buf + needed;
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DAddressSpace.hpp163 /// Used by findUnwindSections() to return info about needed sections.
434 DWORD needed;
436 if (!EnumProcessModules(process, mods, sizeof(mods), &needed)) {
443 for (unsigned i = 0; i < (needed / sizeof(HMODULE)); i++) {
/freebsd-11-stable/contrib/gcc/doc/
H A Dmakefile.texi47 that additional tools may be required beyond what is normally needed to
114 they're no longer needed. This saves disk space.
129 appropriate flags. This is rarely needed.
/freebsd-11-stable/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-11-stable/contrib/gcc/config/i386/
H A Dcygwin.asm1 /* stuff needed for libgcc on win32.
/freebsd-11-stable/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_resource.c79 #ifdef needed
167 #ifdef needed

Completed in 175 milliseconds

1234567