/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | slide_hash_neon.h | 13 const ush w_size) in neon_slide_hash_update() 25 const uint16x8_t v = vdupq_n_u16(w_size); in neon_slide_hash_update() 45 const unsigned short w_size, in neon_slide_hash() 59 neon_slide_hash_update(head, hash_size, w_size); in neon_slide_hash() 61 neon_slide_hash_update(prev, w_size, w_size); in neon_slide_hash() 11 neon_slide_hash_update(Posf *hash, const uInt hash_size, const ush w_size) neon_slide_hash_update() argument 44 neon_slide_hash(Posf *head, Posf *prev, const unsigned short w_size, const uInt hash_size) neon_slide_hash() argument
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
H A D | slide_hash_neon.h | 13 const ush w_size) in neon_slide_hash_update() 25 const uint16x8_t v = vdupq_n_u16(w_size); in neon_slide_hash_update() 45 const unsigned short w_size, in neon_slide_hash() 59 neon_slide_hash_update(head, hash_size, w_size); in neon_slide_hash() 61 neon_slide_hash_update(prev, w_size, w_size); in neon_slide_hash() 11 neon_slide_hash_update(Posf *hash, const uInt hash_size, const ush w_size) neon_slide_hash_update() argument 44 neon_slide_hash(Posf *head, Posf *prev, const unsigned short w_size, const uInt hash_size) neon_slide_hash() argument
|
/third_party/node/deps/zlib/ |
H A D | slide_hash_simd.h | 72 Posf *head, Posf *prev, const uInt w_size, const uInt hash_size) { in slide_hash_simd() 83 Assert(w_size == (ush)w_size, "Prev table size error"); in slide_hash_simd() 92 Assert(!((w_size * sizeof(prev[0])) & (32 - 1)), in slide_hash_simd() 96 * Duplicate (ush)w_size in each uint16_t component of a 128-bit vector. in slide_hash_simd() 98 const z_vec128i_u16x8_t vec_wsize = Z_SLIDE_INIT_SIMD(w_size); in slide_hash_simd() 101 * Slide {head,prev} hash chain values: subtracts (ush)w_size from every in slide_hash_simd() 107 Z_SLIDE_HASH_SIMD(prev, w_size, vec_wsize); in slide_hash_simd() 71 slide_hash_simd( Posf *head, Posf *prev, const uInt w_size, const uInt hash_size) slide_hash_simd() argument
|
H A D | deflate.c | 178 slide_hash_simd(s->head, s->prev, s->w_size, s->hash_size); in slide_hash() 184 uInt wsize = s->w_size; in slide_hash() 252 uInt wsize = s->w_size; in fill_window() 462 s->w_size = 1 << s->w_bits; in deflateInit2_() 463 s->w_mask = s->w_size - 1; in deflateInit2_() 480 s->w_size + window_padding, in deflateInit2_() 484 zmemzero(s->window, (s->w_size + window_padding) * (2 * sizeof(Byte))); in deflateInit2_() 485 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); in deflateInit2_() 489 zmemzero(s->prev, s->w_size * sizeof(Pos)); in deflateInit2_() 613 if (dictLength >= s->w_size) { in deflateSetDictionary() [all...] |
H A D | deflate.h | 119 uInt w_size; /* LZ77 window size (32K by default) */ member 120 uInt w_bits; /* log2(w_size) (8..16) */ 121 uInt w_mask; /* w_size - 1 */ 298 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | deflate.c | 199 return neon_slide_hash(s->head, s->prev, s->w_size, s->hash_size); 203 uInt wsize = s->w_size; 314 s->w_size = 1 << s->w_bits; 315 s->w_mask = s->w_size - 1; 327 s->w_size + window_padding, 331 zmemzero(s->window, (s->w_size + window_padding) * (2 * sizeof(Byte))); 332 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 336 zmemzero(s->prev, s->w_size * sizeof(Pos)); 455 if (dictLength >= s->w_size) { 462 dictionary += dictLength - s->w_size; /* us [all...] |
H A D | fill_window_sse.c | 36 const __m128i xmm_wsize = _mm_set1_epi16(s->w_size); in fill_window_sse() 41 uInt wsize = s->w_size; in fill_window_sse()
|
H A D | deflate.h | 115 uInt w_size; /* LZ77 window size (32K by default) */ member 116 uInt w_bits; /* log2(w_size) (8..16) */ 117 uInt w_mask; /* w_size - 1 */ 284 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
/third_party/skia/third_party/externals/zlib/ |
H A D | deflate.c | 194 return neon_slide_hash(s->head, s->prev, s->w_size, s->hash_size); 198 uInt wsize = s->w_size; 309 s->w_size = 1 << s->w_bits; 310 s->w_mask = s->w_size - 1; 322 s->w_size + window_padding, 326 zmemzero(s->window, (s->w_size + window_padding) * (2 * sizeof(Byte))); 327 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 331 zmemzero(s->prev, s->w_size * sizeof(Pos)); 450 if (dictLength >= s->w_size) { 457 dictionary += dictLength - s->w_size; /* us [all...] |
H A D | fill_window_sse.c | 36 const __m128i xmm_wsize = _mm_set1_epi16(s->w_size); in fill_window_sse() 41 uInt wsize = s->w_size; in fill_window_sse()
|
H A D | deflate.h | 115 uInt w_size; /* LZ77 window size (32K by default) */ member 116 uInt w_bits; /* log2(w_size) (8..16) */ 117 uInt w_mask; /* w_size - 1 */ 284 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
/third_party/zlib/ |
H A D | deflate.c | 191 uInt wsize = s->w_size; in slide_hash() 257 uInt wsize = s->w_size; in fill_window() 444 s->w_size = 1 << s->w_bits; in deflateInit2_() 445 s->w_mask = s->w_size - 1; in deflateInit2_() 452 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_() 453 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); in deflateInit2_() 575 if (dictLength >= s->w_size) { in deflateSetDictionary() 582 dictionary += dictLength - s->w_size; /* use the tail */ in deflateSetDictionary() 583 dictLength = s->w_size; in deflateSetDictionary() 629 if (len > s->w_size) in deflateGetDictionary() [all...] |
H A D | deflate.h | 119 uInt w_size; /* LZ77 window size (32K by default) */ member 120 uInt w_bits; /* log2(w_size) (8..16) */ 121 uInt w_mask; /* w_size - 1 */ 295 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | deflate.c | 268 s->w_size = 1 << s->w_bits;
269 s->w_mask = s->w_size - 1;
276 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
277 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
368 if (length > s->w_size) {
369 length = s->w_size;
1004 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1005 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1015 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1016 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeo [all...] |
H A D | deflate.h | 109 uInt w_size; /* LZ77 window size (32K by default) */
member 110 uInt w_bits; /* log2(w_size) (8..16) */
111 uInt w_mask; /* w_size - 1 */
278 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|