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

/external/chromium/net/tools/flip_server/
H A Dring_buffer.cc58 int wsize; local
59 GetWritablePtr(&wptr, &wsize);
63 while (wsize && bytes_remaining) {
64 if (wsize > bytes_remaining) {
65 wsize = bytes_remaining;
67 memcpy(wptr, bytes + bytes_written, wsize);
68 bytes_written += wsize;
69 bytes_remaining -= wsize;
70 AdvanceWritablePtr(wsize);
71 GetWritablePtr(&wptr, &wsize);
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.h89 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
196 from += wsize - op;
206 from += wsize + write - op;
H A Dinfback.c56 state->wsize = 1U << windowBits;
205 left = state->wsize; \
278 left = state->wsize;
468 if (state->whave < state->wsize)
469 state->whave = state->wsize - left;
470 inflate_fast(strm, state->wsize);
560 if (state->offset > state->wsize - (state->whave < state->wsize ?
571 copy = state->wsize - state->offset;
592 if (left < state->wsize) {
[all...]
H A Dinflate.c118 state->wsize = 0;
310 Update the window with the last wsize (normally 32K) bytes written before
341 if (state->wsize == 0) {
342 state->wsize = 1U << state->wbits;
347 /* copy state->wsize or less output bytes into the circular window */
349 if (copy >= state->wsize) {
350 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
352 state->whave = state->wsize;
355 dist = state->wsize
[all...]
H A Ddeflate.c1272 uInt wsize = s->w_size; local
1280 more = wsize;
1293 if (s->strstart >= wsize+MAX_DIST(s)) {
1295 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1296 s->match_start -= wsize;
1297 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1298 s->block_start -= (long) wsize;
1311 *p = (Pos)(m >= wsize ? m-wsize
[all...]
/external/zlib/
H A Dinflate.h93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
H A Dinfback.c56 state->wsize = 1U << windowBits;
205 left = state->wsize; \
278 left = state->wsize;
477 if (state->whave < state->wsize)
478 state->whave = state->wsize - left;
479 inflate_fast(strm, state->wsize);
569 if (state->offset > state->wsize - (state->whave < state->wsize ?
580 copy = state->wsize - state->offset;
601 if (left < state->wsize) {
[all...]
H A Dinflate.c118 state->wsize = 0;
345 Update the window with the last wsize (normally 32K) bytes written before
376 if (state->wsize == 0) {
377 state->wsize = 1U << state->wbits;
382 /* copy state->wsize or less output bytes into the circular window */
384 if (copy >= state->wsize) {
385 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
387 state->whave = state->wsize;
390 dist = state->wsize
[all...]
H A Ddeflate.c1311 uInt wsize = s->w_size; local
1319 more = wsize;
1332 if (s->strstart >= wsize+MAX_DIST(s)) {
1334 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1335 s->match_start -= wsize;
1336 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1337 s->block_start -= (long) wsize;
1349 *p = (Pos)(m >= wsize ? m-wsize
[all...]
/external/openssl/crypto/ec/
H A Dec_mult.c359 size_t *wsize = NULL; /* individual window sizes */ local
444 wsize = OPENSSL_malloc(totalnum * sizeof wsize[0]);
449 if (!wsize || !wNAF_len || !wNAF || !val_sub)
465 wsize[i] = EC_window_bits_for_scalar_size(bits);
466 num_val += (size_t)1 << (wsize[i] - 1);
468 wNAF[i] = compute_wNAF((i < num ? scalars[i] : scalar), wsize[i], &wNAF_len[i]);
500 wsize[num] = pre_comp->w;
501 tmp_wNAF = compute_wNAF(scalar, wsize[num], &tmp_len);
605 for (j = 0; j < ((size_t)1 << (wsize[
[all...]
/external/zlib/contrib/masmx64/
H A Dinffas8664.c91 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */
96 /* 92 48 */ unsigned wsize; /* window size */ member in struct:inffast_ar
132 ar.wsize = state->wsize;
H A Dinffasx64.asm268 mov eax, [rsp+92] ; /* eax = wsize, prepare for dist cmp */
272 jb L_invalid_distance_too_far ; /* if (dist > wsize) */
280 add rsi, rax ; /* from += wsize - nbytes */
298 mov esi, [rsp+92] ; /* from = wsize */
/external/qemu/distrib/sdl-1.2.12/src/video/xbios/
H A DSDL_xbios_centscreen.h63 unsigned short wsize; /* screen width (mm) */ member in struct:__anon8368
/external/zlib/contrib/inflate86/
H A Dinffas86.c86 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */
91 /* 92 48 */ unsigned wsize; /* window size */ member in struct:inffast_ar
115 ar.wsize = state->wsize;
358 " movl 92(%%rsp), %%eax\n" /* eax = wsize, prepare for dist cmp */
362 " jb .L_invalid_distance_too_far\n" /* if (dist > wsize) */
370 " addq %%rax, %%rsi\n" /* from += wsize - nbytes */
388 " movl 92(%%rsp), %%esi\n" /* from = wsize */
687 " movl 48(%%esp), %%eax\n" /* eax = wsize */
692 " jb .L_invalid_distance_too_far\n" /* if (dist > wsize) */
[all...]
H A Dinffast.S153 #define wsize_state 32 /* state->wsize */
175 #define wsize 52 /* unsigned int */ define
272 /* wsize = state->wsize;
305 movl %eax, wsize(%esp)
710 * if (dist > wsize) {
716 * from += wsize - nbytes;
720 movl wsize(%esp), %eax /* prepare for dist compare */
725 jb .L_invalid_distance_too_far /* if (dist > wsize) */
732 addl %eax, from_r /* from += wsize
[all...]
/external/ipsec-tools/src/libipsec/
H A Dpfkey.c1360 p = pfkey_setsadbsa(p, ep, sa_parms->spi, sa_parms->wsize,
2224 pfkey_setsadbsa(caddr_t buf, caddr_t lim, u_int32_t spi, u_int wsize, argument
2240 p->sadb_sa_replay = wsize;
2511 struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize,
2523 psaa.wsize = wsize;
2545 struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize,
2559 psaa.wsize = wsize;
2586 struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize,
2510 pfkey_send_update(int so, u_int satype, u_int mode, struct sockaddr *src, struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize, caddr_t keymat, u_int e_type, u_int e_keylen, u_int a_type, u_int a_keylen, u_int flags, u_int32_t l_alloc, u_int64_t l_bytes, u_int64_t l_addtime, u_int64_t l_usetime, u_int32_t seq) argument
2544 pfkey_send_update_nat(int so, u_int satype, u_int mode, struct sockaddr *src, struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize, caddr_t keymat, u_int e_type, u_int e_keylen, u_int a_type, u_int a_keylen, u_int flags, u_int32_t l_alloc, u_int64_t l_bytes, u_int64_t l_addtime, u_int64_t l_usetime, u_int32_t seq, u_int8_t l_natt_type, u_int16_t l_natt_sport, u_int16_t l_natt_dport, struct sockaddr *l_natt_oa, u_int16_t l_natt_frag) argument
2585 pfkey_send_add(int so, u_int satype, u_int mode, struct sockaddr *src, struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize, caddr_t keymat, u_int e_type, u_int e_keylen, u_int a_type, u_int a_keylen, u_int flags, u_int32_t l_alloc, u_int64_t l_bytes, u_int64_t l_addtime, u_int64_t l_usetime, u_int32_t seq) argument
2619 pfkey_send_add_nat(int so, u_int satype, u_int mode, struct sockaddr *src, struct sockaddr *dst, u_int32_t spi, u_int32_t reqid, u_int wsize, caddr_t keymat, u_int e_type, u_int e_keylen, u_int a_type, u_int a_keylen, u_int flags, u_int32_t l_alloc, u_int64_t l_bytes, u_int64_t l_addtime, u_int64_t l_usetime, u_int32_t seq, u_int8_t l_natt_type, u_int16_t l_natt_sport, u_int16_t l_natt_dport, struct sockaddr *l_natt_oa, u_int16_t l_natt_frag) argument
[all...]
H A Dlibpfkey.h80 u_int wsize; member in struct:pfkey_send_sa_args
H A Dkey_debug.c756 printf(" secreplay{ count=%u wsize=%u seq=%u lastseq=%u",
757 rpl->count, rpl->wsize, rpl->seq, rpl->lastseq);
766 for (len = 0; len < rpl->wsize; len++) {
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
H A DSDL_sysevents.c98 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, BYTE *keystate, LPWSTR wchars, int wsize, UINT flags);
914 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, PBYTE keystate, LPWSTR wchars, int wsize, UINT flags) argument
919 return MultiByteToWideChar(codepage, 0, chars, 1, wchars, wsize);
/external/ipsec-tools/src/racoon/
H A Dbackupsa.c76 * src dst satype spi mode reqid wsize \
153 sa_args->mode, sa_args->reqid, sa_args->wsize, sa_args->e_type,
272 GETNEXTNUM(sa_args.wsize, strtoul);
H A Dpfkey.c1117 sa_args.wsize = 4;
1147 sa_args.wsize = 0;
1229 sa_args.wsize = 4;
1402 sa_args.wsize = 4;
1432 sa_args.wsize = 0;
/external/zlib/contrib/masmx86/
H A Dinffas32.asm142 wsize_state equ (32+zlib1222sup) ;/* state->wsize */
/external/strace/
H A Dsystem.c431 a.wsize, a.rsize, a.timeo, a.retrans);

Completed in 3667 milliseconds