Searched refs:needed (Results 1 - 25 of 270) sorted by relevance

1234567891011

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/eh/
H A Dtable.C3 void needed();
15 void needed() function
30 needed();
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mips/
H A Drm7000.s5 mthi $8 # No delay needed
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20010724-1.x1 # This test is only needed on IRIX 6
H A D20030222-1.x3 # right # on the SPU. An extra shift-left-4-byte is needed.
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20010724-1.x1 # This test is only needed on IRIX 6
/netbsd-6-1-5-RELEASE/usr.bin/ldd/
H A Dldd.c290 const Needed_Entry *needed; local
292 for (needed = obj->needed; needed != NULL; needed = needed->next) {
293 const char *libname = obj->strtab + needed->name;
295 if (needed->obj != NULL) {
296 if (!needed->obj->printed) {
297 fmtprint(libname, needed
[all...]
H A Dldd_elfxx.c145 while (obj->needed != NULL) {
146 const Needed_Entry *needed = obj->needed; local
147 obj->needed = needed->next;
148 xfree(__UNCONST(needed));
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dgetdelim.c87 size_t needed = 2 * (cur_len + 1) + 1; /* Be generous. */ local
90 if (needed < cur_len)
96 new_lineptr = (char *) realloc (*lineptr, needed);
104 *n = needed;
/netbsd-6-1-5-RELEASE/sys/arch/xen/include/xen-public/io/
H A Dprotocols.h38 # error arch fixup needed here
/netbsd-6-1-5-RELEASE/libexec/ld.elf_so/
H A Dload.c198 _rtld_load_by_name(const char *name, Obj_Entry *obj, Needed_Entry **needed, argument
264 (*needed)->obj = o;
268 ne->name = (*needed)->name;
270 ne->next = (*needed)->next;
271 (*needed)->next = ne;
272 *needed = ne;
282 return ((*needed)->obj = _rtld_load_library(name, obj, flags)) != NULL;
287 * Given a shared object, traverse its list of needed objects, and load
298 Needed_Entry *needed; local
300 for (needed
[all...]
H A Dsymver.c89 const Needed_Entry *needed; local
96 for (needed = obj->needed; needed != NULL; needed = needed->next) {
97 dbg(("needed: name: %s, str: %s", name,
98 &obj->strtab[needed->name]));
99 if (strcmp(name, &obj->strtab[needed->name]) == 0 ||
100 (needed
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dscreen.c175 u_int needed, available, oldy, i; local
193 needed = oldy - sy;
198 if (available > needed)
199 available = needed;
202 needed -= available;
213 gd->hsize += needed;
214 else if (needed > 0 && available > 0) {
215 if (available > needed)
216 available = needed;
219 s->cy -= needed;
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/win32/
H A Dentropy.c89 unsigned int needed; local
96 needed = desired;
101 * If needed is 0, it means we are being asked to "fill to whatever
112 * (DIGEST_SIZE * 8 < needed < POOLBITS - entropy).
118 if (needed == 0) {
125 needed = THRESHOLD_BITS * 4;
127 needed = ISC_MAX(needed, THRESHOLD_BITS);
128 needed = ISC_MIN(needed, RND_POOLBIT
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/win32/
H A Dentropy.c89 unsigned int needed; local
96 needed = desired;
101 * If needed is 0, it means we are being asked to "fill to whatever
112 * (DIGEST_SIZE * 8 < needed < POOLBITS - entropy).
118 if (needed == 0) {
125 needed = THRESHOLD_BITS * 4;
127 needed = ISC_MAX(needed, THRESHOLD_BITS);
128 needed = ISC_MIN(needed, RND_POOLBIT
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-cris/
H A Dweakref1.d8 # with a DSO was needed as a catalyst to get to the faulty code; nothing
9 # in the DSO was needed. We just check that we don't get the bfd
H A Dundef1.d9 # symbol; no --export-dynamic is supposed to be needed.
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-run/
H A Drequirements.cpp154 check_memory_sysctl(const int64_t needed, const char* sysctl_variable) argument
164 if (available < needed) {
165 return "Not enough memory; needed " + atf::text::to_string(needed) +
173 check_memory_darwin(const int64_t needed) argument
175 return check_memory_sysctl(needed, "hw.usermem");
180 check_memory_netbsd(const int64_t needed) argument
182 return check_memory_sysctl(needed, "hw.usermem64");
190 check_memory_unknown(const int64_t needed ATF_DEFS_ATTRIBUTE_UNUSED)
200 const int64_t needed local
[all...]
/netbsd-6-1-5-RELEASE/dist/ipf/ipsend/
H A D44arp.c72 size_t needed; local
92 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
97 if ((buf = malloc(needed)) == NULL)
102 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1)
107 lim = buf + needed;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/m32r/
H A Dfslotx.s3 # This is needed for example with bl because the subroutine will return
H A Dfslot.s3 # This is needed for example with bl because the subroutine will return
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Droaming_common.c198 size_t available, needed; local
204 needed = write_bytes - *offset;
206 (unsigned long)needed, (unsigned long long)*offset);
207 if (needed > available)
209 if (out_last < needed) {
210 int chunkend = needed - out_last;
215 atomicio(vwrite, fd, out_buf + (out_last - needed), needed);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/unix/
H A Dentropy.c255 unsigned int needed; local
261 needed = desired;
266 * If needed is 0, it means we are being asked to "fill to whatever
277 * (DIGEST_SIZE * 8 < needed < POOLBITS - entropy).
283 if (needed == 0) {
290 needed = THRESHOLD_BITS * 4;
292 needed = ISC_MAX(needed, THRESHOLD_BITS);
293 needed = ISC_MIN(needed, RND_POOLBIT
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/unix/
H A Dentropy.c255 unsigned int needed; local
261 needed = desired;
266 * If needed is 0, it means we are being asked to "fill to whatever
277 * (DIGEST_SIZE * 8 < needed < POOLBITS - entropy).
283 if (needed == 0) {
290 needed = THRESHOLD_BITS * 4;
292 needed = ISC_MAX(needed, THRESHOLD_BITS);
293 needed = ISC_MIN(needed, RND_POOLBIT
[all...]
/netbsd-6-1-5-RELEASE/dist/dhcp/dst/
H A Dprandom.c100 * needed : how many bytes of output are needed
106 unsigned needed, filled, bytes; member in struct:work
313 * if more data is needed at the end time is added to the data.
362 if (gettimeofday(&tv, NULL)) /* only do this if needed */
449 unsigned needed, avail, dig, cnt = size; local
467 for (n = 0; n < cnt; n += needed) {
469 needed = hash->block - hash->digested;
470 dig = (avail < needed) ? avail : needed;
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/net/
H A Dgetifaddrs.c70 size_t needed; local
94 if (sysctl(mib, __arraycount(mib), NULL, &needed, NULL, 0) < 0)
96 if ((buf = malloc(needed)) == NULL)
98 if (sysctl(mib, __arraycount(mib), buf, &needed, NULL, 0) < 0) {
103 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
183 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {

Completed in 185 milliseconds

1234567891011