Searched refs:have (Results 26 - 50 of 290) sorted by relevance

1234567891011>>

/freebsd-13-stable/share/mk/
H A Dsrc.lua.mk19 # but parts of the src build that use it may have certain expectations that
36 # Otherwise, consumers will have to settle for a PATH search and PATH being
H A Ddirdeps-targets.mk22 # The basic idea is that we have a list of directories in
100 # we have a list of valid TARGET_SPECS; use it
103 # do we have a list of valid tuple members for at least
145 # so we may have a static cache
H A Dmeta.autodep.mk99 # if it isn't supposed to be touched by us the Makefile should have
123 # if we have any non-libs in DPADD,
139 # if we don't have OBJS, then .depend isn't useful
238 # If we have META_XTRAS we most likely did not create them
248 # if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set
270 # we might have .../ in MAKESYSPATH
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Dmd4-internal.c113 size_t have, need; local
115 /* Check how many bytes we already have and how many more we need. */
116 have = (size_t)((ctx->count >> 3) & (MD4_BLOCK_LENGTH - 1));
117 need = MD4_BLOCK_LENGTH - have;
123 if (have != 0) {
124 os_memcpy(ctx->buffer + have, input, need);
128 have = 0;
141 os_memcpy(ctx->buffer + have, input, len);
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dmd5.c71 size_t have, need; local
73 /* Check how many bytes we already have and how many more we need. */
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
75 need = MD5_BLOCK_LENGTH - have;
81 if (have != 0) {
82 memcpy(ctx->buffer + have, input, need);
86 have = 0;
99 memcpy(ctx->buffer + have, input, len);
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dread_entry.c176 int have = (limit - *offset); local
178 if (have > 0) {
179 if ((int) want > have)
180 want = (unsigned) have;
259 unsigned want, have; local
327 if ((have = (unsigned) Read(ptr->term_names, want)) != want) {
328 memset(ptr->term_names + have, 0, (size_t) (want - have));
333 if (have > MAX_NAME_SIZE)
334 offset = (int) (have
790 char *have = (char *) data.data; local
[all...]
H A Dwrite_entry.c156 size_t have = strlen(dst); local
158 if (have > need && strcmp(dst + (int) (have - need), suffix)) {
159 if (have + need <= limit) {
266 * e.g., with NFS, because the filesystem may have a different time
542 size_t have = (limit - *offset); local
545 if (have > 0) {
546 if (want > have)
547 want = have;
905 * have t
[all...]
/freebsd-13-stable/sys/contrib/zlib/test/
H A Dinfcover.c264 if (val > 255) { /* have two digits */
288 unsigned have; local
311 in = h2b(hex, &have); assert(in != NULL);
312 if (step == 0 || step > have)
313 step = have;
315 have -= step;
338 have += strm.avail_in;
339 strm.avail_in = step > have ? have : step;
340 have
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_color.c147 * vidattr - so we have to assume that sp may be null.
523 int have = sp->_pair_alloc; local
525 if (have == 0)
526 have = 1;
527 while (have <= want)
528 have *= 2;
529 if (have > sp->_pair_limit)
530 have = sp->_pair_limit;
533 sp->_color_pairs = TYPE_CALLOC(colorpair_t, have);
534 } else if (have > s
[all...]
H A Dnew_pair.c106 size_t have = sizeof(bigbuf); local
108 _nc_STRCPY(p, tag, have);
112 if ((size_t) (p - bigbuf) + 50 > have)
114 _nc_SPRINTF(p, _nc_SLIMIT(have - (p - bigbuf))
241 * If we reallocate the color-pair array, we have to adjust the fast-index.
266 * Check if all of the slots have been used. If not, find one and
/freebsd-13-stable/contrib/bmake/mk/
H A Ddirdeps-targets.mk21 # The basic idea is that we have a list of directories in
100 # we have a list of valid TARGET_SPECS; use it
103 # do we have a list of valid tuple members for at least
145 # so we may have a static cache
H A Dmeta.autodep.mk98 # if it isn't supposed to be touched by us the Makefile should have
122 # if we have any non-libs in DPADD,
138 # if we don't have OBJS, then .depend isn't useful
237 # If we have META_XTRAS we most likely did not create them
247 # if we have 1000's of .o.meta, ${PICO}.meta etc we need only look at one set
269 # we might have .../ in MAKESYSPATH
H A Ddirdeps-options.mk31 # Thus a directory, that is affected by an option FOO would have
46 # This should have been set by Makefile.depend.options
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dforloop.mk53 { echo "Oops that should have failed!"; exit 1; } || echo OK
H A Dvarmisc.mk67 @echo We have ${${.TARGET:T}.only}
141 # .export directive. Later changes to the variable have no effect.
201 @echo $@: we have: ${FLAGS}
204 @echo $@: we have: ${FLAGS}
H A Ddirective-export-impl.mk35 # :!...! modifier, Cmd_Exec calls Var_ReexportVars to have all relevant
39 # evaluated, the referenced variables could have changed, therefore the
H A Ddirective-for.mk62 . warning After the .for loop, var must still have its original value.
65 . warning After the .for loop, var2 must still have its original value.
77 . warning After the .for loop, var must still have its original value.
80 . warning After the .for loop, var2 must still have its original value.
120 # taking quotes into account. This made it possible to have variable values
122 # variable values have been replaced with expressions of the form ${:U...},
H A Dmoderrs.mk7 # in case we have to change it ;-)
57 # In ParseModifierPart, braces and parentheses don't have to be balanced.
89 # as part of a variable modifier, where it would have been interpreted
100 # and the above would have produced an "Unknown modifier '!'".
133 # The sub-modifier for the :S and :C modifiers would have to be chosen
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.func_access.ksh47 /* We have no reliable way to test msgsize */
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/
H A Dgzlib.c81 state.state->x.have = 0; /* no output data available */
84 state.state->past = 0; /* have not read past end yet */
403 ret = LSEEK(state.state->fd, offset - state.state->x.have, SEEK_CUR);
406 state.state->x.have = 0;
429 n = GT_OFF(state.state->x.have) || (z_off64_t)state.state->x.have > offset ?
430 (unsigned)offset : state.state->x.have;
431 state.state->x.have -= n;
594 /* if fatal, set state.state->x.have to 0 so that the gzgetc() macro fails */
596 state.state->x.have
[all...]
H A Dgzwrite.c83 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; local
130 have = strm->avail_out;
137 have -= strm->avail_out;
138 } while (have);
209 z_size_t have, copy; local
213 have = (unsigned)((state.state->strm.next_in + state.state->strm.avail_in) -
215 copy = state.state->size - have;
218 memcpy(state.state->in + have, buf, copy);
314 unsigned have; local
341 have
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DDynamicLibrary.inc84 // FIXME: Currently disabled when using Clang, as we don't always have our
107 // Under glibc we have a weird situation. The stderr/out/in symbols are both
/freebsd-13-stable/crypto/openssl/
H A DNOTES.PERL17 differ, and you may have to check that you do get the core modules
26 You MUST have at least Perl version 5.10.0 installed. This minimum
60 the first to have all the features we're using.
71 To avoid unnecessary initial hurdles, we have bundled a copy of the
/freebsd-13-stable/contrib/cortex-strings/src/arm/
H A Dmemchr.S90 @ At this point, we are aligned, we know we have at least 8 bytes to work with
101 eor r5,r5, r1 @ Get it so that r5,r6 have 00's where the bytes match the target
112 and r2,r2,#7 @ Leave the count remaining as the number after the double words have been done
132 60: @ We're here because the fast path found a hit - now we have to track down exactly which word it was
/freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql100 /* The number of rows in the NODES table that have a 'checksum' column
122 path is known to have text or property changes relative to its
124 have been discovered and recorded here.)
127 including if the "changelist" or any of the conflict columns have a
175 We would have to scan all conflict skels before cleaning up the
295 never have a WORKING node the parent_relpath will never be null,
331 have full information. In the 'WORKING' tree it's an added or
332 copied node for which we have full information.
343 we do not have full information. Only the name is guaranteed;
344 we may not have al
[all...]

Completed in 133 milliseconds

1234567891011>>