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

1234567891011>>

/freebsd-13-stable/lib/librpcsvc/
H A Drstat.c59 long have; local
63 (xdrproc_t)xdr_long, (char *) &have) != 0)
66 return (have);
/freebsd-13-stable/contrib/dialog/samples/
H A Drun_test.sh8 have=
16 have=$prog
21 if [ -z "$have" ]
27 DIALOG=$have
/freebsd-13-stable/sys/contrib/zlib/
H A Dgzread.c24 local int gz_load(state, buf, len, have)
28 unsigned *have;
33 *have = 0;
35 get = len - *have;
38 ret = read(state->fd, buf + *have, get);
41 *have += (unsigned)ret;
42 } while (*have < len);
85 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
155 state->x.have = 0;
165 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.c102 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
481 have = strm->avail_in; \
492 strm->avail_in = have; \
508 if (have == 0) goto inf_leave; \
509 have--; \
583 would all have to actually be part of the saved state in case NEEDBITS()
629 unsigned have, left; /* available input and output */ local
652 in = have;
759 if (copy > have) copy = have;
[all...]
H A Dgzwrite.c81 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; local
128 have = strm->avail_out;
135 have -= strm->avail_out;
136 } while (have);
207 unsigned have, copy; local
211 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
213 copy = state->size - have;
216 memcpy(state->in + have, buf, copy);
311 unsigned have; local
338 have
[all...]
H A Dgzlib.c81 state->x.have = 0; /* no output data available */
84 state->past = 0; /* have not read past end yet */
403 ret = LSEEK(state->fd, offset - state->x.have, SEEK_CUR);
406 state->x.have = 0;
429 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
430 (unsigned)offset : state->x.have;
431 state->x.have -= n;
594 /* if fatal, set state->x.have to 0 so that the gzgetc() macro fails */
596 state->x.have
[all...]
H A Dinflate.h117 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/
H A Dgzread.c32 local int gz_load(state, buf, len, have)
36 unsigned *have;
41 *have = 0;
43 get = len - *have;
46 ret = read(state.state->fd, buf + *have, get);
49 *have += (unsigned)ret;
50 } while (*have < len);
93 /* Look for gzip header, set up for inflate or copy. state.state->x.have must be 0.
164 state.state->x.have = 0;
174 state.state->x.have
[all...]
H A Dgzcompatibility.h33 unsigned have; member in struct:gzFile_s
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c131 unsigned have; /* bytes written by deflate() call */ local
165 have = size + EXCESS - def.avail_out;
166 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
175 size - have, size);
218 have = size - def.avail_out;
219 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
231 size - have, size, def.total_in);
H A Dfitblk.c143 unsigned have; /* bytes written by deflate() call */ local
182 have = size + EXCESS - def.avail_out;
183 /* if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
192 size - have, size);
239 have = size - def.avail_out;
240 /* if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
252 size - have, size, def.total_in);
/freebsd-13-stable/contrib/ncurses/ncurses/trace/
H A Dtrace_buf.c109 size_t have = strlen(buffer); local
110 size_t need = strlen(value) + have;
114 _nc_STRCPY(buffer + have, value, need);
/freebsd-13-stable/usr.bin/units/
H A Dunits.c96 static void showanswer(struct unittype * have, struct unittype * want);
658 showanswer(struct unittype * have, struct unittype * want) argument
663 if (compareunits(have, want)) {
669 showunit(have);
678 else if (have->offset != want->offset) {
681 if (have->quantity) {
684 (have->factor + have->offset-want->offset)/want->factor);
691 have->factor / want->factor,
692 (have
757 struct unittype have, want; local
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dhashed_db.c201 * FIXME: the FreeBSD cap_mkdb program assumes the database could have
291 char *have = (char *) data->data; local
294 if (*have++ == 2) {
300 *buffer = have;
314 char *have = (char *) data->data; local
316 if (*have++ == 0) {
318 && IS_TIC_MAGIC(have)) {
326 *buffer = have;
/freebsd-13-stable/crypto/heimdal/
H A DMakefile.am45 cf/have-pragma-weak.m4 \
46 cf/have-types.m4 \
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Denvfirst.mk11 # Try to override the variable; this does not have any effect.
17 # Try to append to the variable; this also doesn't have any effect.
H A Ddirective-ifdef.mk9 # It looks redundant to have a call to defined() in an .ifdef, but it's
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dutil.h40 # error JEMALLOC_INTERNAL_UNREACHABLE should have been defined by configure
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_instr.c88 int have = (int) n3 + i; local
91 if (have > n || (int) need <= 0) {
/freebsd-13-stable/share/mk/
H A Dbsd.port.subdir.mk15 .else # fmake doesn't have :tA
H A Dbsd.port.mk15 .else # fmake doesn't have :tA
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A Dinttypes.h18 #error MSVC does not have inttypes.h prior to Visual Studio 2013
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DTemplateBase.cpp93 // If the value is large, we have to get additional memory from the ASTContext
119 llvm_unreachable("Should not have a NULL template argument");
/freebsd-13-stable/contrib/ncurses/misc/
H A Drun_tic.in144 If you have ncurses 4.2 applications, you should read the INSTALL
164 If you have ncurses 4.2 applications, you should read the INSTALL
190 # installer will have to double-check.

Completed in 125 milliseconds

1234567891011>>