Searched refs:window (Results 1 - 25 of 2479) sorted by last modified time

1234567891011>>

/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivity.java81 Window window = getWindow();
82 window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
/external/zlib/src/as400/
H A Dzlib.inc312 D windowBits 10I 0 value log2(window size)
352 D windowBits 10I 0 value log2(window size)
394 D window 65535 options(*varsize) Buffer
/external/zlib/src/contrib/amd64/
H A Damd64-match.S24 #define window r10 define
78 printf("#define dsWindow (%3u)(%%rdi)\n",(int)(((char*)&(s->window))-((char*)s)));
191 /* register Bytef *scan = s->window + s->strstart; */
193 mov dsWindow, %window
195 lea (%limit, %window), %scan
217 /* Store the sum of s->window + best_len in %windowbestlen locally, and in memory. */
219 lea (%window, %bestlen), %windowbestlen
238 * match = s->window + cur_match;
258 cmpw %scanstartw, (%window, %curmatch)
270 lea (%curmatch, %window),
[all...]
/external/zlib/src/contrib/asm686/
H A Dmatch.S37 #define window 4 /* local copy of s->window */ define
38 #define windowbestlen 8 /* s->window + bestlen */
148 /* register Bytef *scan = s->window + s->strstart; */
151 movl %esi, window(%esp)
179 /* Store the sum of s->window + best_len in %esi locally, and in %esi. */
202 * match = s->window + cur_match;
217 * %esi = windowbestlen - i.e., (window + bestlen)
231 movl window(%esp), %eax
245 movl window(
[all...]
/external/zlib/src/contrib/infback9/
H A Dinfback9.c17 window is a user-supplied window and output buffer that is 64K bytes.
19 int ZEXPORT inflateBack9Init_(strm, window, version, stream_size)
21 unsigned char FAR *window;
30 if (strm == Z_NULL || window == Z_NULL)
43 state->window = window;
174 /* Assure that some output space is available, by writing out the window
180 put = window; \
191 strm provides the memory allocation functions and window buffe
232 unsigned char FAR *window; /* allocated sliding window, if needed */ local
[all...]
H A Dinfback9.h14 * 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), \
H A Dinflate9.h36 /* sliding window */
37 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c86 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */ member in struct:inffast_ar
91 /* 92 48 */ unsigned wsize; /* window size */
92 /* 96 52 */ unsigned write; /* window write index */
117 ar.window = state->window;
311 " cmpq %%rdi, 40(%%rsp)\n" /* if out == beg, outside window */
368 " movq 56(%%rsp), %%rsi\n" /* from = window */
389 " addq 56(%%rsp), %%rsi\n" /* from += window */
400 " movq 56(%%rsp), %%rsi\n" /* from = window */
[all...]
H A Dinffast.S155 #define window_state 44 /* state->window */
174 #define window 56 /* unsigned char* */ define
274 * window = state->window;
307 movl %edx, window(%esp)
713 * from = window;
722 movl window(%esp), from_r /* from = window */
778 * from = window;
807 movl window(
[all...]
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm72 ;window equ rsp + xx - LocalVarsSize ; local copy of s->window ; stored in r10
73 ;windowbestlen equ rsp + xx - LocalVarsSize ; s->window + bestlen , use r10+r11
103 ; window r10
144 COMM window:BYTE:010040H
156 window_ad equ OFFSET window
270 ;;; register Bytef *scan = s->window + s->strstart;
300 ;;; Store the sum of s->window + best_len in esi locally, and in esi.
363 ;;; match = s->window + cur_match;
378 ;;; esi = windowbestlen - i.e., (window
[all...]
H A Dinffas8664.c91 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */ member in struct:inffast_ar
96 /* 92 48 */ unsigned wsize; /* window size */
97 /* 96 52 */ unsigned write; /* window write index */
134 ar.window = state->window;
H A Dinffasx64.asm221 cmp [rsp+40], rdi ; /* if out == beg, outside window */
278 mov rsi, [rsp+56] ; /* from = window */
299 add rsi, [rsp+56] ; /* from += window */
310 mov rsi, [rsp+56] ; /* from = window */
323 mov rsi, [rsp+56] ; /* rsi = window */
/external/zlib/src/contrib/masmx86/
H A Dinffas32.asm139 window_state equ (40+4+zlib1222sup) ;/* state->window */
H A Dmatch686.asm54 window equ dword ptr [esp+NbStack-40] define
122 window equ esp + 4 ; local copy of s->window define
123 windowbestlen equ esp + 8 ; s->window + bestlen
251 ;;; register Bytef *scan = s->window + s->strstart;
254 mov [window], esi
282 ;;; Store the sum of s->window + best_len in esi locally, and in esi.
305 ;;; match = s->window + cur_match;
320 ;;; esi = windowbestlen - i.e., (window + bestlen)
334 mov eax, [window]
[all...]
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas137 windowBits: Integer; window: PChar): Integer;
170 windowBits: Integer; window: PChar;
250 windowBits: Integer; window: PChar): Integer;
252 Result := inflateBackInit_(strm, windowBits, window,
/external/zlib/src/
H A Ddeflate.c11 * sliding window trailing behind the input currently being processed).
182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
209 /* To do: ignore strm->next_in if we use it as window */
276 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
297 s->high_water = 0; /* nothing written to s->window yet */
305 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
346 /* if dictionary would fill window, just replace the history */
358 /* insert dictionary into window an
[all...]
H A Ddeflate.h93 /* A Pos is an index in the character window. We use short instead of int to
112 uInt w_size; /* LZ77 window size (32K by default) */
116 Bytef *window; member in struct:internal_state
117 /* Sliding window. Input bytes are read into the second half of the window,
122 * the window size to 64K, which is quite useful on MSDOS.
123 * To do: use the user input buffer as sliding window.
127 /* Actual size of window: 2*wSize, except when the user input buffer
128 * is directly used as sliding window.
134 * An index in this array is thus a window inde
[all...]
H A Dinfback.c25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
31 unsigned char FAR *window;
40 if (strm == Z_NULL || window == Z_NULL ||
66 state->window = window;
207 /* Assure that some output space is available, by writing out the window
213 put = state->window; \
224 strm provides the memory allocation functions and window buffe
[all...]
H A Dinffast.c80 unsigned wsize; /* window size or zero if not using window */
81 unsigned whave; /* valid bytes in the window */
82 unsigned wnext; /* window write index */
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
92 /* window position, window bytes to copy */
110 window = state->window;
[all...]
H A Dinflate.c11 * creation of window when not needed, minimize use of window when it is
32 * - Fix bug in reuse of allocated window after inflateReset()
45 * - Rearrange window copies in inflate_fast() for speed and simplification
46 * - Unroll last copy for window match in inflate_fast()
47 * - Use local copies of window variables in inflate_fast() for speed
54 * programs like gzip and unzip -- uses window as output buffer to avoid
55 * window copying
67 * - Changed type of window in inflateBackInit() to unsigned char *
166 /* set number of window bit
[all...]
H A Dinflate.h91 /* sliding window */
92 unsigned wbits; /* log base 2 of requested window size */
93 unsigned wsize; /* window size or zero if not using window */
94 unsigned whave; /* valid bytes in the window */
95 unsigned wnext; /* window write index */
96 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
H A Dzlib.h460 call. Z_FINISH also informs inflate to not maintain a sliding window if the
463 enough output space is provided, then a sliding window will be allocated and
472 memory for a sliding window when Z_FINISH is used.
541 The windowBits parameter is the base two logarithm of the window size
548 determines the window size. deflate() will then generate raw deflate data
611 discarded, for example if the dictionary is larger than the window size
614 addition, the current implementation of deflate will use at most the window
777 The windowBits parameter is the base two logarithm of the maximum window
782 deflateInit2() was not used. If a compressed stream with a larger window
784 Z_DATA_ERROR instead of trying to allocate a larger window
[all...]
/external/zlib/src/examples/
H A Dgun.c166 32K sliding window */
635 unsigned char *window; local
639 window = match; /* reuse LZW match buffer */
643 ret = inflateBackInit(&strm, 15, window);
H A Dgzappend.c264 unsigned char *window; local
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, DSIZ
[all...]
H A Dzran.c63 #define WINSIZE 32768U /* sliding window size */
71 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */ member in struct:point
93 off_t in, off_t out, unsigned left, unsigned char *window)
127 memcpy(next->window, window + WINSIZE - left, left);
129 memcpy(next->window + left, window, WINSIZE - left);
152 unsigned char window[WINSIZE]; local
164 /* inflate the input, maintain a sliding window, and build an index -- this
185 /* reset sliding window i
92 addpoint(struct access *index, int bits, off_t in, off_t out, unsigned left, unsigned char *window) argument
[all...]

Completed in 2070 milliseconds

1234567891011>>