Searched refs:have (Results 1 - 25 of 231) sorted by relevance

12345678910

/freebsd-9.3-release/lib/librpcsvc/
H A Drstat.c59 long have; local
63 (xdrproc_t)xdr_long, (char *) &have) != 0)
66 return (have);
/freebsd-9.3-release/lib/libz/
H A Dgzread.c23 local int gz_load(state, buf, len, have)
27 unsigned *have;
31 *have = 0;
33 ret = read(state->fd, buf + *have, len - *have);
36 *have += ret;
37 } while (*have < len);
80 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
152 state->x.have = 0;
162 state->x.have
[all...]
H A Dinfback.c133 have = strm->avail_in; \
144 strm->avail_in = have; \
160 if (have == 0) { \
161 have = in(in_desc, &next); \
162 if (have == 0) { \
175 have--; \
260 unsigned have, left; /* available input and output */ local
283 have = next != Z_NULL ? strm->avail_in : 0;
345 if (copy > have) copy = have;
[all...]
H A Dinflate.c101 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
464 have = strm->avail_in; \
475 strm->avail_in = have; \
491 if (have == 0) goto inf_leave; \
492 have--; \
566 would all have to actually be part of the saved state in case NEEDBITS()
612 unsigned have, left; /* available input and output */ local
635 in = have;
736 if (copy > have) copy = have;
[all...]
H A Dgzwrite.c78 unsigned have; local
103 have = (unsigned)(strm->next_out - state->x.next);
104 if (have && ((got = write(state->fd, state->x.next, have)) < 0 ||
105 (unsigned)got != have)) {
117 have = strm->avail_out;
124 have -= strm->avail_out;
125 } while (have);
213 unsigned have, copy; local
217 have
252 unsigned have; local
[all...]
H A Dinflate.h114 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
H A Dgzlib.c81 state->x.have = 0; /* no output data available */
84 state->past = 0; /* have not read past end yet */
399 ret = LSEEK(state->fd, offset - state->x.have, SEEK_CUR);
402 state->x.have = 0;
425 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
426 (unsigned)offset : state->x.have;
427 state->x.have -= n;
590 /* if fatal, set state->x.have to 0 so that the gzgetc() macro fails */
592 state->x.have
[all...]
/freebsd-9.3-release/crypto/heimdal/tests/can/
H A Dcheck-can.in41 ../db/have-db || exit 77
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DTemplateBase.cpp63 // If the value is large, we have to get additional memory from the ASTContext
90 llvm_unreachable("Should not have a NULL template argument");
131 llvm_unreachable("Should not have a NULL template argument");
/freebsd-9.3-release/contrib/ncurses/ncurses/trace/
H A Dtrace_buf.c106 size_t have = strlen(buffer); local
108 buffer = _nc_trace_alloc(bufnum, 1 + have + strlen(value));
110 (void) strcpy(buffer + have, value);
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dhashed_db.c119 * FIXME: the FreeBSD cap_mkdb program assumes the database could have
209 char *have = (char *) data->data; local
212 if (*have++ == 2) {
218 *buffer = have;
232 char *have = (char *) data->data; local
234 if (*have++ == 0) {
236 && IS_TIC_MAGIC(have)) {
244 *buffer = have;
H A Dread_entry.c98 int have = (limit - *offset); local
100 if (have > 0) {
101 if ((int) want > have)
102 want = have;
128 unsigned want, have; local
176 if ((have = Read(ptr->term_names, want)) != want) {
177 memset(ptr->term_names + have, 0, want - have);
182 if (have > MAX_NAME_SIZE)
183 offset = (have
467 char *have = (char *) data.data; local
[all...]
/freebsd-9.3-release/contrib/file/
H A DREADME71 src/asctime_r.c - replacement for OS's that don't have it.
73 src/asprintf.c - replacement for OS's that don't have it.
75 src/asctime_r.c - replacement for OS's that don't have it.
76 src/asprintf.c - replacement for OS's that don't have it.
80 src/ctime_r.c - replacement for OS's that don't have it.
86 src/fmtcheck.c - replacement for OS's that don't have it.
89 src/getline.c - replacement for OS's that don't have it.
90 src/getopt_long.c - replacement for OS's that don't have it.
95 src/pread.c - replacement for OS's that don't have it.
100 src/mygetopt.h - replacement for OS's that don't have i
[all...]
/freebsd-9.3-release/usr.bin/units/
H A Dunits.c93 void showanswer(struct unittype * have, struct unittype * want);
636 showanswer(struct unittype * have, struct unittype * want) argument
638 if (compareunits(have, want)) {
640 showunit(have);
643 else if (have->offset != want->offset) {
647 if (have->quantity)
649 (have->factor + have->offset-want->offset)/want->factor);
652 have->factor / want->factor,
653 (have
676 struct unittype have, want; local
[all...]
/freebsd-9.3-release/gnu/usr.bin/grep/tests/
H A Dwarning.sh16 Make sure you have the word grep in the subject.
/freebsd-9.3-release/sys/dev/sym/
H A DREADME.sym71 I may have to provide additional documentation to people
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.c107 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
415 have = strm->avail_in; \
426 strm->avail_in = have; \
442 if (have == 0) goto inf_leave; \
443 have--; \
522 would all have to actually be part of the saved state in case NEEDBITS()
568 unsigned have, left; /* available input and output */ local
591 in = have;
694 if (copy > have) copy = have;
[all...]
H A Dinflate.h112 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
/freebsd-9.3-release/crypto/heimdal/tests/java/
H A Dcheck-kinit.in42 ../db/have-db || exit 77
43 sh ${srcdir}/have-java.sh || exit 77
/freebsd-9.3-release/sys/i386/xbox/
H A Dxbox.c39 #error You must have a I686_CPU in your kernel if you want to make an XBOX-compatible kernel
64 * Some XBOX loaders, such as Cromwell, have a flaw which cause the
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Ddst_parse.c183 isc_boolean_t have[RSA_NTAGS]; local
191 have[i] = ISC_FALSE;
199 have[i] = ISC_TRUE;
206 if (have[TAG_RSA_ENGINE & mask])
207 ok = have[TAG_RSA_MODULUS & mask] &&
208 have[TAG_RSA_PUBLICEXPONENT & mask] &&
209 have[TAG_RSA_LABEL & mask];
211 ok = have[TAG_RSA_MODULUS & mask] &&
212 have[TAG_RSA_PUBLICEXPONENT & mask] &&
213 have[TAG_RSA_PRIVATEEXPONEN
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dmaint-tool18 # You should have received a copy of the GNU Library General Public
56 $have{$f} = 1;
61 $have{$f} = 1;
67 $have{$a} = 0;
70 for $f (sort keys %have) {
71 next unless $have{$f};
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dmaint-tool18 # You should have received a copy of the GNU Library General Public
56 $have{$f} = 1;
61 $have{$f} = 1;
67 $have{$a} = 0;
70 for $f (sort keys %have) {
71 next unless $have{$f};
/freebsd-9.3-release/sys/dev/isp/
H A DHardware.txt25 have a software impact.
39 2100 boards (not on this list) have a bug in the ROM that causes a
64 (cost: I have no idea... certainly less than a switch)
90 This also is a fine switch, but you have to use a browser
173 Cost: I have no idea.
183 Cost: I have no idea.
187 I have used lots of different Seagate and a few IBM drives and
188 typically have had few problems with them. These are the bare
196 All FC-AL disk drives are dual ported (i.e., have separte 'A' and
200 world. The JMR boxes have i
[all...]
/freebsd-9.3-release/contrib/one-true-awk/
H A DREADME59 If your system does not have yacc or bison (the GNU
60 equivalent), you must compile the pieces manually. We have
62 case you overwrite them. We have also included a copy of
65 NOTE: This version uses ANSI C, as you should also. We have

Completed in 137 milliseconds

12345678910