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

123456789

/freebsd-10.0-release/lib/librpcsvc/
H A Drstat.c59 long have; local
63 (xdrproc_t)xdr_long, (char *) &have) != 0)
66 return (have);
/freebsd-10.0-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-10.0-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");
459 // FIXME: We shouldn't ever have to worry about missing
474 // the pattern, and we have the pattern's type, but we are forced to copy
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/gnu/usr.bin/grep/tests/
H A Dwarning.sh16 Make sure you have the word grep in the subject.
/freebsd-10.0-release/sys/dev/sym/
H A DREADME.sym71 I may have to provide additional documentation to people
/freebsd-10.0-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-10.0-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-10.0-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-10.0-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-10.0-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-10.0-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
/freebsd-10.0-release/usr.sbin/cron/doc/
H A DINSTALL26 You don't have to create the /var/cron or /var/cron/tabs directories, since
28 run if they don't exist. You do need to have a /var, though -- just "mkdir
29 /var" if you don't have one, or you can "mkdir /usr/var; ln -s /usr/var /var"
30 if you expect your /var to have a lot of stuff in it.
33 change the Makefile. These will have to be created by hand, but if you are
34 a long-time Usenet user you probably have them already. /usr/local/man is
35 where I keep my man pages, but I have the source for `man' and you probably
36 do not. Therefore you may have to put the man pages into /usr/man/manl,
52 Note that if I can get you to "su and say" something just by asking, you have
66 command is issued; changing the source files later will have n
[all...]
/freebsd-10.0-release/contrib/ncurses/misc/
H A Drun_tic.in109 If you have ncurses 4.2 applications, you should read the INSTALL
128 If you have ncurses 4.2 applications, you should read the INSTALL
153 # installer will have to double-check.
/freebsd-10.0-release/contrib/wpa/src/crypto/
H A Dmd4-internal.c110 size_t have, need; local
112 /* Check how many bytes we already have and how many more we need. */
113 have = (size_t)((ctx->count >> 3) & (MD4_BLOCK_LENGTH - 1));
114 need = MD4_BLOCK_LENGTH - have;
120 if (have != 0) {
121 os_memcpy(ctx->buffer + have, input, need);
125 have = 0;
138 os_memcpy(ctx->buffer + have, input, len);
/freebsd-10.0-release/lib/libz/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...]

Completed in 186 milliseconds

123456789