Searched refs:window (Results 1 - 10 of 10) sorted by relevance

/darwin-on-arm/xnu/xnu/xnu-doc/
H A DAppDelegate.h13 @property (assign) IBOutlet NSWindow *window; variable
/darwin-on-arm/xnu/libkern/zlib/
H A Dinflate.h114 /* sliding window */
115 unsigned wbits; /* log base 2 of requested window size */
116 unsigned wsize; /* window size or zero if not using window */
117 unsigned whave; /* valid bytes in the window */
118 unsigned write; /* window write index */
119 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
H A Ddeflate.c38 * sliding window trailing behind the input currently being processed).
212 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
217 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
239 /* To do: ignore strm->next_in if we use it as window */
299 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
316 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
326 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
368 zmemcpy(s->window, dictionary, length);
376 s->ins_h = s->window[0];
377 UPDATE_HASH(s, s->ins_h, s->window[
[all...]
H A Dinffast.c116 unsigned wsize; /* window size or zero if not using window */
117 unsigned whave; /* valid bytes in the window */
118 unsigned write; /* window write index */
119 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
128 /* window position, window bytes to copy */
146 window = state->window;
[all...]
H A Dinflate.c38 * creation of window when not needed, minimize use of window when it is
59 * - Fix bug in reuse of allocated window after inflateReset()
72 * - Rearrange window copies in inflate_fast() for speed and simplification
73 * - Unroll last copy for window match in inflate_fast()
74 * - Use local copies of window variables in inflate_fast() for speed
81 * programs like gzip and unzip -- uses window as output buffer to avoid
82 * window copying
94 * - Changed type of window in inflateBackInit() to unsigned char *
212 state->window
[all...]
H A Dinfback.c52 windowBits is in the range 8..15, and window is a user-supplied
53 window and output buffer that is 2**windowBits bytes.
55 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
58 unsigned char FAR *window;
67 if (strm == Z_NULL || window == Z_NULL ||
86 state->window = window;
227 /* Assure that some output space is available, by writing out the window
233 put = state->window; \
244 strm provides the memory allocation functions and window buffe
[all...]
H A Ddeflate.h117 /* A Pos is an index in the character window. We use short instead of int to
136 uInt w_size; /* LZ77 window size (32K by default) */
140 Bytef *window; member in struct:internal_state
141 /* Sliding window. Input bytes are read into the second half of the window,
146 * the window size to 64K, which is quite useful on MSDOS.
147 * To do: use the user input buffer as sliding window.
151 /* Actual size of window: 2*wSize, except when the user input buffer
152 * is directly used as sliding window.
158 * An index in this array is thus a window inde
[all...]
/darwin-on-arm/xnu/libkern/libkern/
H A Dzlib.h523 The windowBits parameter is the base two logarithm of the window size
530 determines the window size. deflate() will then generate raw deflate data
586 discarded, for example if the dictionary is larger than the window size in
589 current implementation of deflate will use at most the window size minus
730 The windowBits parameter is the base two logarithm of the maximum window
735 deflateInit2() was not used. If a compressed stream with a larger window
737 Z_DATA_ERROR instead of trying to allocate a larger window.
740 determines the window size. inflate() will then process raw deflate data,
886 unsigned char FAR *window));
892 logarithm of the window siz
[all...]
/darwin-on-arm/xnu/libkern/zlib/intel/
H A DinffastS.s57 #define window -56(%ebp) // window = state->window;
106 movl 52(%edx), %eax // state->window
107 movl %eax, window // window = state->window;
389 movl window, %esi // from=window-OFF
566 movl window,
[all...]
/darwin-on-arm/xnu/osfmk/i386/
H A Dcopyio.c49 * - the window size is determined by the amount of virtual space
52 * the user's directory entry corresponding to the window's
54 * to the window slot in the kernel's address space
57 * - there is a gdt entry set up to anchor the kernel window on
62 * relative to the beginning of the window being used to map
65 * - the window caches must be invalidated if the pmap changes out
91 * - a window for mapping single physical pages is provided for copypv
92 * - this window is maintained across context switches and has the
244 * for the new window
325 * a window boundar
594 copy_window_fault(thread_t thread, vm_map_t map, int window) argument
[all...]

Completed in 34 milliseconds