/src/common/dist/zlib/contrib/infback9/ |
infback9.h | 14 * window must be provided. Also if int's are 16 bits, then a zero for 28 unsigned char FAR *window, 31 #define inflateBack9Init(strm, window) \ 32 inflateBack9Init_((strm), (window), \
|
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/sys/external/isc/libsodium/dist/test/default/ |
pre.js.inc | 18 window.dispatchEvent(event);
|
/src/tests/lib/libcurses/tests/ |
wtimeout | 4 include window
|
/src/common/dist/zlib/examples/ |
zran.h | 14 unsigned char window[32768]; // preceding 32K of uncompressed data member in struct:point
|
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/sys/dev/marvell/ |
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...] |
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);
|
ehci_mv.c | 366 int window, target, attr, rv, i; local in function:mvusb_wininit 368 for (window = 0, i = 0; 369 tags[i] != MARVELL_TAG_UNDEFINED && window < MARVELL_USB_NWINDOW; 383 MARVELL_USB_WCR(window), 389 MARVELL_USB_WBR(window), MARVELL_USB_WBR_BASE(base)); 390 window++; 392 for (; window < MARVELL_USB_NWINDOW; window++) 394 MARVELL_USB_WCR(window), 0);
|
/src/sys/arch/arm/marvell/ |
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;
|
/src/sys/arch/evbarm/armadaxp/ |
armadaxp_machdep.c | 206 /* Find first disabled window */ 213 /* If there is no free window, return erroneous value */ 221 int memtag = 0, iotag = 0, window, i; local in function:reset_axp_pcie_win 244 /* Reset PCI-Express space to window register. */ 245 window = mvsoc_target(memtag, &target, &attr, NULL, NULL); 247 /* Find free window if we've got spurious one */ 248 if (window >= nwindow) { 249 window = axp_pcie_free_win(); 251 if (window < 0) { 256 write_mlmbreg(MVSOC_MLMB_WCR(window), [all...] |
/src/sys/dev/pcmcia/ |
pcmciachip.h | 66 /* memory space window mapping */ 78 /* I/O space window mapping */ 109 #define pcmcia_chip_mem_unmap(tag, handle, window) \ 110 ((*(tag)->mem_unmap)((handle), (window))) 124 #define pcmcia_chip_io_unmap(tag, handle, window) \ 125 ((*(tag)->io_unmap)((handle), (window)))
|
/src/common/dist/zlib/ |
deflate.c | 13 * sliding window trailing behind the input currently being processed). 158 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \ 163 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \ 180 * Slide the hash table when sliding the window down (could be avoided with 32 244 * Fill the window when the lookahead becomes insufficient. 255 unsigned more; /* Amount of free space at the end of the window. */ 276 /* If the window is almost full and there is insufficient lookahead, 281 zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more); 305 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more) [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...] |
inflate.c | 13 * creation of window when not needed, minimize use of window when it is 34 * - Fix bug in reuse of allocated window after inflateReset() 47 * - Rearrange window copies in inflate_fast() for speed and simplification 48 * - Unroll last copy for window match in inflate_fast() 49 * - Use local copies of window variables in inflate_fast() for speed 56 * programs like gzip and unzip -- uses window as output buffer to avoid 57 * window copying 69 * - Changed type of window in inflateBackInit() to unsigned char * 166 /* set number of window bits, free window if different * 1451 unsigned char FAR *window; local in function:inflateCopy [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/mmeye/dev/ |
mmeyepcmcia.c | 148 * used by io/mem window mapping functions. These can actually overlap 757 DPRINTF(("mmeyepcmcia_chip_mem_map window %d bus %lx+%lx+%lx at card addr " 775 mmeyepcmcia_chip_mem_unmap(pcmcia_chipset_handle_t pch, int window) 779 if (window >= MMEYEPCMCIA_WINS) 780 panic("mmeyepcmcia_chip_mem_unmap: window out of range"); 782 h->memalloc &= ~(1 << window); 784 bus_space_unmap(h->mem[window].memt, h->mem[window].memh, 785 h->mem[window].size); 871 DPRINTF(("mmeyepcmcia_chip_io_map window %d %s port %lx+%lx\n" [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/ |
k3-am64.dtsi | 69 <0x00 0x01000000 0x00 0x01000000 0x00 0x02330400>, /* First peripheral window */ 72 <0x00 0x0f000000 0x00 0x0f000000 0x00 0x00c44200>, /* Second peripheral window */ 73 <0x00 0x20000000 0x00 0x20000000 0x00 0x0a008000>, /* Third peripheral window */ 98 ranges = <0x00 0x04000000 0x00 0x04000000 0x00 0x01ff1400>; /* Peripheral window */
|
/src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/ |
randombytes.c | 97 var window_ = 'object' === typeof window ? window : self;
|
/src/sys/arch/hpcsh/dev/hd64465/ |
hd64465pcmcia.c | 553 int window = card_addr / ch->ch_memsize; local in function:hd64465pcmcia_chip_mem_map 554 KASSERT(window < MEMWIN_16M_MAX); 556 cookie->wc_tag = ch->ch_cmemt[window]; 557 ofs = card_addr - window * ch->ch_memsize; 562 /* XXX bogus. check window per common memory access. */ 563 hd64465pcmcia_memory_window16_switch(ch->ch_channel, window); 565 cookie->wc_window = window; 582 hd64465pcmcia_chip_mem_unmap(pcmcia_chipset_handle_t pch, int window) 584 struct hd64465pcmcia_window_cookie *cookie = (void *)window; 655 hd64465pcmcia_chip_io_unmap(pcmcia_chipset_handle_t pch, int window) [all...] |
/src/lib/libarch/alpha/ |
alpha_bus_window.c | 68 window_args.window = i;
|
/src/lib/libpanel/ |
Makefile | 30 SRCS+= window.c
|
/src/sys/arch/alpha/include/ |
sysarch.h | 67 u_int window; member in struct:alpha_bus_get_window_args
|