Searched refs:need (Results 76 - 100 of 296) sorted by relevance

1234567891011>>

/freebsd-13-stable/crypto/heimdal/appl/rcp/
H A Drcp.c522 size_t need; local
524 need = strlen(targ) + strlen(cp) + 250;
525 if (need > cursize) {
526 if (!(namebuf = malloc(need)))
529 snprintf(namebuf, need, "%s%s%s", targ,
/freebsd-13-stable/contrib/bmake/mk/
H A Ddpadd.mk76 # have no need of anything else.
161 # the DPADD paths will be to the obj tree so we need to subst anyway.
219 # need to allow direct -I to avoid cicular dependencies
247 # Now for the bits we actually need
313 # We don't want to assume that we need to .PATH every element of
H A Dmeta.autodep.mk123 # they probably need to be paid attention to
222 # we need a mutex. Obviously, this is best avoided.
224 # you either need to mutex, or ensure only one machine builds at a time!
238 # but we need to behave as if we did.
247 # if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set
H A Ddirdeps.mk94 # # We need to stop that TARGET_SPEC affecting any submakes
107 # # as we may need it to find Makefile.depend*
162 # do some setup we only need once
206 # In order to stay sane, we need to ensure that all the build_dirs
209 # so we need to construct a set of modifiers to fill in the gaps.
278 # we need to parse DEP_MACHINE may or may not contain more info
494 # we need the .meta file to ensure we update if
544 # on rare occasions, there can be a need for extra help
557 # we need to build this guy's dependencies for host as well.
569 # we need t
[all...]
H A Dautodep.mk54 # we also need to handle makefiles where the .d's from __depsrcs
79 # just in case these need to be different
H A Ddirdeps-targets.mk47 # they need to be stripped when looking for target dirs
50 # some .TARGETS need filtering
H A Djava.mk61 # We need to do something to force __c's parent to be made.
H A Doptions.mk27 # We set ${OPTION_PREFIX:UMK_}* which is then all we need care about.
/freebsd-13-stable/share/mk/
H A Dmeta.autodep.mk124 # they probably need to be paid attention to
223 # we need a mutex. Obviously, this is best avoided.
225 # you either need to mutex, or ensure only one machine builds at a time!
239 # but we need to behave as if we did.
248 # if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set
H A Ddirdeps.mk95 # # We need to stop that TARGET_SPEC affecting any submakes
108 # # as we may need it to find Makefile.depend*
163 # do some setup we only need once
207 # In order to stay sane, we need to ensure that all the build_dirs
210 # so we need to construct a set of modifiers to fill in the gaps.
294 # we need to parse DEP_MACHINE may or may not contain more info
508 # we need the .meta file to ensure we update if
558 # on rare occasions, there can be a need for extra help
571 # we need to build this guy's dependencies for host as well.
583 # we need t
[all...]
H A Ddirdeps-targets.mk47 # they need to be stripped when looking for target dirs
50 # some .TARGETS need filtering
/freebsd-13-stable/crypto/openssh/
H A Dpacket.c309 free(ssh); /* XXX need ssh_free_session_state? */
727 /* XXX remove need for separate compression buffer */
1412 size_t need; local
1427 need = state->packlen + 4;
1428 if (sshbuf_len(state->input) < need)
1433 (r = sshbuf_consume(state->input, need)) != 0 ||
1449 u_int padlen, need; local
1528 need = state->packlen;
1534 need = 4 + state->packlen - block_size;
1536 DBG(debug("partial packet: block %d, need
[all...]
/freebsd-13-stable/sbin/dump/
H A Dtape.c407 * Each of the N workers should have requests that need to
882 int got, need = count; local
884 while ((got = (*func)(fd, buf, need)) > 0 && (need -= got) > 0)
886 return (got < 0 ? got : count - need);
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddirective-for-escape.mk11 # string into words, the quotes don't need to be balances, as of 2020-12-31.
16 # the loop since it would not need only the escaping for the :U variable
/freebsd-13-stable/contrib/dialog/
H A Dchecklist.c273 /* we need at least two states */
347 int need = (int) (0.25 * use_width); local
348 if (name_width > need) {
351 name_width = (want > need) ? want : need;
H A Dinputstr.c201 * If the given string has not changed, we do not need to update the index.
202 * If we need to update the index, allocate enough memory for it.
207 unsigned need; local
216 need = (i_len + 1);
218 cache->list = dlg_malloc(int, need);
220 cache->list = dlg_realloc(int, need, cache->list);
H A Dmenubox.c476 int need = (int) (0.30 * use_width); local
477 if (name_width > need) {
481 name_width = (want > need) ? want : need;
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dcaptoinfo.c138 size_t need = have + strlen(s) + 2; local
139 if (need > my_length) {
140 my_string = (char *) _nc_doalloc(my_string, my_length = (need + need));
H A Dlib_tparm.c128 get_space(size_t need) argument
130 need += TPS(out_used);
131 if (need > TPS(out_size)) {
132 TPS(out_size) = need * 2;
333 * Analyze the string to see how many parameters we need from the varargs list,
H A Dwrite_entry.c157 size_t need = strlen(suffix); local
158 if (have > need && strcmp(dst + (int) (have - need), suffix)) {
159 if (have + need <= limit) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProcess.inc248 // We need to save the error, if one occurs, because our subsequent call to
432 // from /dev/urandom than we need.
/freebsd-13-stable/contrib/unbound/validator/
H A Dval_neg.c270 * @param need: how many bytes are needed.
272 static void neg_make_space(struct val_neg_cache* neg, size_t need) argument
275 while(neg->last && neg->max < neg->use + need) {
496 /* need to delete other allocations in this routine!*/
642 /* need to delete other allocations in this routine!*/
733 * the one we need.
880 size_t i, need; local
906 need = calc_data_need(rep) +
909 neg_make_space(neg, need);
971 size_t i, need; local
[all...]
/freebsd-13-stable/contrib/wpa/hs20/client/
H A DAndroid.mk13 # the older versions in external/icu4c don't, and we need to add those
/freebsd-13-stable/lib/libc/mips/gen/
H A Dldexp.S167 bge t8, zero, 1f # does result need to be rounded?
187 bge t8, zero, 1f # does result need to be rounded?
/freebsd-13-stable/lib/libsecureboot/
H A Dlocal.trust.mk107 # you need to provide t*.pem or t*.asc files for each trust anchor

Completed in 303 milliseconds

1234567891011>>