HomeSort by: relevance | last modified time | path
    Searched defs:window (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/common/dist/zlib/examples/
zran.h 14 unsigned char window[32768]; // preceding 32K of uncompressed data member in struct:point
zran.h 14 unsigned char window[32768]; // preceding 32K of uncompressed data member in struct:point
gun.c 166 32K sliding window */
635 unsigned char *window; local in function:main
639 window = match; /* reuse LZW match buffer */
643 ret = inflateBackInit(&strm, 15, window);
gzappend.c 264 unsigned char *window; local in function:gzscan
281 window = malloc(DSIZE);
282 if (window == NULL) bye("out of memory", "");
305 /* set up output to next available section of sliding window */
307 strm->next_out = window + have;
316 /* update crc and sliding window pointer */
317 crc = crc32(crc, window + have, DSIZE - have - strm->avail_out);
361 /* if window wrapped, build dictionary from window by rotating */
363 rotate(window, DSIZE, have)
    [all...]
gun.c 166 32K sliding window */
635 unsigned char *window; local in function:main
639 window = match; /* reuse LZW match buffer */
643 ret = inflateBackInit(&strm, 15, window);
gzappend.c 264 unsigned char *window; local in function:gzscan
281 window = malloc(DSIZE);
282 if (window == NULL) bye("out of memory", "");
305 /* set up output to next available section of sliding window */
307 strm->next_out = window + have;
316 /* update crc and sliding window pointer */
317 crc = crc32(crc, window + have, DSIZE - have - strm->avail_out);
361 /* if window wrapped, build dictionary from window by rotating */
363 rotate(window, DSIZE, have)
    [all...]
  /src/common/dist/zlib/contrib/infback9/
inflate9.h 36 /* sliding window */
37 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
inflate9.h 36 /* sliding window */
37 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
infback9.c 17 window is a user-supplied window and output buffer that is 64K bytes.
19 int ZEXPORT inflateBack9Init_(z_stream FAR *strm, unsigned char FAR *window,
26 if (strm == Z_NULL || window == Z_NULL)
39 state->window = window;
169 /* Assure that some output space is available, by writing out the window
175 put = window; \
186 strm provides the memory allocation functions and window buffer on input,
192 filled the window with output, or when it completes with data in th
222 unsigned char FAR *window; \/* allocated sliding window, if needed *\/ local in function:inflateBack9
    [all...]
  /src/common/dist/zlib/
inffast.c 62 unsigned wsize; /* window size or zero if not using window */
63 unsigned whave; /* valid bytes in the window */
64 unsigned wnext; /* window write index */
65 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local in function:inflate_fast
74 /* window position, window bytes to copy */
92 window = state->window;
    [all...]
inffast.c 62 unsigned wsize; /* window size or zero if not using window */
63 unsigned whave; /* valid bytes in the window */
64 unsigned wnext; /* window write index */
65 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local in function:inflate_fast
74 /* window position, window bytes to copy */
92 window = state->window;
    [all...]
  /src/sys/arch/alpha/include/
sysarch.h 67 u_int window; member in struct:alpha_bus_get_window_args
sysarch.h 67 u_int window; member in struct:alpha_bus_get_window_args
  /src/sys/dev/marvell/
mvsata_mv.c 222 int window, target, attr, rv, i; local in function:mvsatahc_wininit
224 for (window = 0, i = 0;
225 tags[i] != MARVELL_TAG_UNDEFINED && window < MVSATAHC_NWINDOW;
239 MVSATAHC_WCR(window),
245 MVSATAHC_WBR(window), MVSATAHC_WBR_BASE(base));
246 window++;
248 for (; window < MVSATAHC_NWINDOW; window++)
250 MVSATAHC_WCR(window), 0);
mvsata_mv.c 222 int window, target, attr, rv, i; local in function:mvsatahc_wininit
224 for (window = 0, i = 0;
225 tags[i] != MARVELL_TAG_UNDEFINED && window < MVSATAHC_NWINDOW;
239 MVSATAHC_WCR(window),
245 MVSATAHC_WBR(window), MVSATAHC_WBR_BASE(base));
246 window++;
248 for (; window < MVSATAHC_NWINDOW; window++)
250 MVSATAHC_WCR(window), 0);
mvpex.c 240 int window; local in function:mvpex_init
256 for (window = 0; window < MVPEX_NWINDOW; window++)
257 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window), 0);
275 mvpex_wininit(struct mvpex_softc *sc, int window, int tbegin, int tend,
281 for (targetid = tbegin; targetid <= tend && window < MVPEX_NWINDOW;
292 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window),
298 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WB(window),
300 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WR(window), 0)
361 int target, attr, window, rv, i, j; local in function:mvpex_wininit
    [all...]
mvpex.c 240 int window; local in function:mvpex_init
256 for (window = 0; window < MVPEX_NWINDOW; window++)
257 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window), 0);
275 mvpex_wininit(struct mvpex_softc *sc, int window, int tbegin, int tend,
281 for (targetid = tbegin; targetid <= tend && window < MVPEX_NWINDOW;
292 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window),
298 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WB(window),
300 bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WR(window), 0)
361 int target, attr, window, rv, i, j; local in function:mvpex_wininit
    [all...]
  /src/usr.bin/vndcompress/
offtab.c 156 /* Don't bother if blkno is already in the window. */
192 /* Don't bother if [start, end) does not cover our window. */
278 * window is the whole offset table.
379 /* Initialize window of all ones. */
383 /* Write the window to every position in the table. */
409 /* Write out the first window with the first offset. */
438 * Write the window unless we just did that and were
439 * interrupted before we could move the window.
473 * window.
478 /* If it's already in our window, we're good to go. *
489 uint64_t *window; local in function:offtab_prepare_put
    [all...]
offtab.c 156 /* Don't bother if blkno is already in the window. */
192 /* Don't bother if [start, end) does not cover our window. */
278 * window is the whole offset table.
379 /* Initialize window of all ones. */
383 /* Write the window to every position in the table. */
409 /* Write out the first window with the first offset. */
438 * Write the window unless we just did that and were
439 * interrupted before we could move the window.
473 * window.
478 /* If it's already in our window, we're good to go. *
489 uint64_t *window; local in function:offtab_prepare_put
    [all...]
  /src/sys/arch/arm/marvell/
mvsoc_space.c 431 int window; local in function:mvsoc_bs_map
433 window = mvsoc_target(tag, NULL, NULL, &base, NULL);
434 if (window == -1)
436 if (window < nremap) {
437 remap = read_mlmbreg(MVSOC_MLMB_WRLR(window)) &
440 (read_mlmbreg(MVSOC_MLMB_WRHR(window)) << 16) << 16;
pci_machdep.c 435 * Configure the flash Window to handle Configuration space
452 int window, target, attr, base, size, s; local in function:mvpex_mbus_conf_read
457 window = mvsoc_target(pex_pcicfg_tag,
459 if (window >= nwindow) {
468 if (window == 0 || window == 1) {
469 remapl = read_mlmbreg(MVSOC_MLMB_WRLR(window));
470 remaph = read_mlmbreg(MVSOC_MLMB_WRHR(window));
490 write_mlmbreg(MVSOC_MLMB_WCR(window),
492 write_mlmbreg(MVSOC_MLMB_WBR(window), pcicfg_addr)
    [all...]
mvsoc_space.c 431 int window; local in function:mvsoc_bs_map
433 window = mvsoc_target(tag, NULL, NULL, &base, NULL);
434 if (window == -1)
436 if (window < nremap) {
437 remap = read_mlmbreg(MVSOC_MLMB_WRLR(window)) &
440 (read_mlmbreg(MVSOC_MLMB_WRHR(window)) << 16) << 16;
pci_machdep.c 435 * Configure the flash Window to handle Configuration space
452 int window, target, attr, base, size, s; local in function:mvpex_mbus_conf_read
457 window = mvsoc_target(pex_pcicfg_tag,
459 if (window >= nwindow) {
468 if (window == 0 || window == 1) {
469 remapl = read_mlmbreg(MVSOC_MLMB_WRLR(window));
470 remaph = read_mlmbreg(MVSOC_MLMB_WRHR(window));
490 write_mlmbreg(MVSOC_MLMB_WCR(window),
492 write_mlmbreg(MVSOC_MLMB_WBR(window), pcicfg_addr)
    [all...]
  /src/sys/arch/evbarm/marvell/
marvell_machdep.c 140 int window; local in function:marvell_fixup_mbus_pex
142 /* Reset PCI-Express space to window register. */
143 window = mvsoc_target(memtag, &target, &attr, NULL, NULL);
144 write_mlmbreg(MVSOC_MLMB_WCR(window),
149 write_mlmbreg(MVSOC_MLMB_WBR(window),
152 if (window < nremap) {
153 write_mlmbreg(MVSOC_MLMB_WRLR(window),
155 write_mlmbreg(MVSOC_MLMB_WRHR(window), 0);
158 window = mvsoc_target(iotag, &target, &attr, NULL, NULL);
159 write_mlmbreg(MVSOC_MLMB_WCR(window),
    [all...]
  /src/sys/arch/x68k/dev/
bmd.c 144 int window; local in function:bmd_match
162 /* Check window addr */
167 window = 0xef0000;
169 window = 0xee0000;
170 if (badaddr((void *)IIOV(window)))

Completed in 32 milliseconds

1 2 3