/third_party/ffmpeg/libavfilter/ |
H A D | af_afftfilt.c | 45 int window_size; member 79 ix = av_clip(x, 0, s->window_size / 2); in getreal() 90 ix = av_clip(x, 0, s->window_size / 2); in getimag() 130 s->window_size = s->fft_size; in config_input() 131 buf_size = FFALIGN(s->window_size, av_cpu_max_align()); in config_input() 204 s->window_func_lut = av_realloc_f(s->window_func_lut, s->window_size, in config_input() 208 generate_window_func(s->window_func_lut, s->window_size, s->win_func, &overlap); in config_input() 209 for (int i = 0; i < s->window_size; i++) in config_input() 210 s->window_func_lut[i] = sqrtf(s->window_func_lut[i] / s->window_size); in config_input() 214 s->hop_size = s->window_size * ( in config_input() 252 const int window_size = s->window_size; filter_channel() local 310 const int window_size = s->window_size; filter_frame() local [all...] |
H A D | af_adeclick.c | 62 int window_size; member 123 s->window_size = inlink->sample_rate * s->w / 1000.; in config_input() 124 if (s->window_size < 100) in config_input() 126 s->ar_order = FFMAX(s->window_size * s->ar / 100., 1); in config_input() 127 s->nb_burst_samples = s->window_size * s->burst / 1000.; in config_input() 128 s->hop_size = s->window_size * (1. - (s->overlap / 100.)); in config_input() 132 s->window_func_lut = av_calloc(s->window_size, sizeof(*s->window_func_lut)); in config_input() 135 for (i = 0; i < s->window_size; i++) in config_input() 136 s->window_func_lut[i] = sin(M_PI * i / s->window_size) * in config_input() 143 s->enabled = ff_get_audio_buffer(inlink, s->window_size); in config_input() [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
H A D | byte_array_test.cc | 46 void ReadByteArrayWithSlidingWindow(ByteArray* ba, int window_size, in ReadByteArrayWithSlidingWindow() argument 50 int32_t actual_window_size = window_size; in ReadByteArrayWithSlidingWindow() 81 for (int window_size = 1; window_size < ba1->Length(); in ReadComparison() 82 window_size += increments) { in ReadComparison() 83 ReadByteArrayWithSlidingWindow(ba1, window_size, &b1); in ReadComparison() 84 ReadByteArrayWithSlidingWindow(ba2, window_size, &b2); in ReadComparison()
|
H A D | font_data_test.cc | 165 void ReadFontDataWithSlidingWindow(ReadableFontData* rfd, int32_t window_size, in ReadFontDataWithSlidingWindow() argument 171 std::min<int32_t>(window_size, b->size() - index); in ReadFontDataWithSlidingWindow() 200 int32_t window_size) { in WriteFontDataWithSlidingWindow() 204 int32_t sliding_size = std::min<int32_t>(window_size, b.size() - index); in WriteFontDataWithSlidingWindow() 240 for (int32_t window_size = 1; window_size <= length; in ReadComparison() 241 window_size += increments) { in ReadComparison() 246 ReadFontDataWithSlidingWindow(rfd1, window_size, &b1); in ReadComparison() 247 ReadFontDataWithSlidingWindow(rfd2, window_size, &b2); in ReadComparison() 293 for (int window_size in SlicingWriteTest() 198 WriteFontDataWithSlidingWindow(ReadableFontData* rfd, WritableFontData* wfd, int32_t window_size) WriteFontDataWithSlidingWindow() argument [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | fill_window_sse.c | 46 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window_sse() 112 * more == window_size - lookahead - strstart in fill_window_sse() 113 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1) in fill_window_sse() 114 * => more >= window_size - 2*WSIZE + 2 in fill_window_sse() 116 * window_size == input_size + MIN_LOOKAHEAD && in fill_window_sse() 118 * Otherwise, window_size == 2*WSIZE so more >= 2. in fill_window_sse() 151 if (s->high_water < s->window_size) { in fill_window_sse() 159 init = s->window_size - curr; in fill_window_sse() 171 if (init > s->window_size - s->high_water) in fill_window_sse() 172 init = s->window_size in fill_window_sse() [all...] |
H A D | deflate.c | 1250 s->window_size = (ulg)2L*s->w_size; 1334 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1384 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1425 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1470 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1499 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1548 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD 1576 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); 1609 * more == window_size - lookahead - strstart 1610 * => more >= window_size [all...] |
/third_party/skia/third_party/externals/zlib/ |
H A D | fill_window_sse.c | 46 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window_sse() 112 * more == window_size - lookahead - strstart in fill_window_sse() 113 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1) in fill_window_sse() 114 * => more >= window_size - 2*WSIZE + 2 in fill_window_sse() 116 * window_size == input_size + MIN_LOOKAHEAD && in fill_window_sse() 118 * Otherwise, window_size == 2*WSIZE so more >= 2. in fill_window_sse() 151 if (s->high_water < s->window_size) { in fill_window_sse() 159 init = s->window_size - curr; in fill_window_sse() 171 if (init > s->window_size - s->high_water) in fill_window_sse() 172 init = s->window_size in fill_window_sse() [all...] |
H A D | deflate.c | 1242 s->window_size = (ulg)2L*s->w_size; 1326 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1376 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1417 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1462 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1491 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1540 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD 1568 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); 1599 * more == window_size - lookahead - strstart 1600 * => more >= window_size [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | smoothstreamingenc.c | 68 int window_size; member 183 static void output_chunk_list(OutputStream *os, AVIOContext *out, int final, int skip, int window_size) in output_chunk_list() argument 192 if (window_size) in output_chunk_list() 193 start = FFMAX(os->nb_fragments - skip - window_size, 0); in output_chunk_list() 237 if (c->window_size) { in write_manifest() 238 video_chunks = FFMIN(video_chunks, c->window_size); in write_manifest() 239 audio_chunks = FFMIN(audio_chunks, c->window_size); in write_manifest() 256 output_chunk_list(&c->streams[last], out, final, c->lookahead_count, c->window_size); in write_manifest() 272 output_chunk_list(&c->streams[last], out, final, c->lookahead_count, c->window_size); in write_manifest() 554 if (c->window_size || (fina in ism_flush() [all...] |
H A D | hdsenc.c | 69 int window_size; member 226 if (c->window_size) in write_abst() 227 start = FFMAX(os->nb_fragments - c->window_size, 0); in write_abst() 476 if (c->window_size || (final && c->remove_at_exit)) { in hds_flush() 477 int remove = os->nb_fragments - c->window_size - c->extra_window_size; in hds_flush() 553 { "window_size", "number of fragments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | bignum_core.py | 139 bitsize: int, descr: str, window_size: int) -> None: 142 self.window_size = window_size 145 return [str(self.bitsize), str(self.window_size)] 151 self.window_size 157 for window_size in cls.window_sizes: 158 yield (cls(bitsize, bitsize_description, window_size)
|
/third_party/pulseaudio/src/modules/ |
H A D | module-equalizer-sink.c | 94 size_t window_size;/* member 99 * the latency of the filter, calculated from window_size 103 size_t overlap_size;//window_size-R 156 static void hanning_window(float *W, size_t window_size) { in hanning_window() argument 157 /* h=.5*(1-cos(2*pi*j/(window_size+1)), COLA for R=(M+1)/2 */ in hanning_window() 158 for (size_t i = 0; i < window_size; ++i) in hanning_window() 159 W[i] = (float).5 * (1 - cos(2*M_PI*i / (window_size+1))); in hanning_window() 227 pa_assert(min_buffer_length >= u->window_size); in alloc_input_buffers() 386 for(size_t j = 0; j < u->window_size; ++j) { in dsp_logic() 390 memset(dst + u->window_size, in dsp_logic() [all...] |
/third_party/skia/third_party/externals/brotli/research/ |
H A D | draw_histogram.cc | 58 static uint32_t window_size = (1 << FLAGS_brotli_window); in AdjustPosition() local 59 assert(*pos >= 0 && *pos < window_size); in AdjustPosition() 61 offset += window_size; in AdjustPosition()
|
/third_party/node/deps/zlib/ |
H A D | deflate.c | 244 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD 257 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window() 290 * more == window_size - lookahead - strstart in fill_window() 291 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1) in fill_window() 292 * => more >= window_size - 2*WSIZE + 2 in fill_window() 294 * window_size == input_size + MIN_LOOKAHEAD && in fill_window() 296 * Otherwise, window_size == 2*WSIZE so more >= 2. in fill_window() 351 if (s->high_water < s->window_size) { in fill_window() 359 init = s->window_size - curr; in fill_window() 371 if (init > s->window_size in fill_window() [all...] |
/third_party/zlib/ |
H A D | deflate.c | 248 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD 262 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window() 295 * more == window_size - lookahead - strstart in fill_window() 296 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1) in fill_window() 297 * => more >= window_size - 2*WSIZE + 2 in fill_window() 299 * window_size == input_size + MIN_LOOKAHEAD && in fill_window() 301 * Otherwise, window_size == 2*WSIZE so more >= 2. in fill_window() 342 if (s->high_water < s->window_size) { in fill_window() 350 init = s->window_size - curr; in fill_window() 362 if (init > s->window_size in fill_window() [all...] |
/third_party/python/Modules/ |
H A D | zlibmodule.c | 99 Py_ssize_t window_size = Py_MIN((size_t)allocated, UINT32_MAX); in OutputBuffer_WindowInitWithSize() local 100 *avail_out = (uint32_t) window_size; in OutputBuffer_WindowInitWithSize() 102 window->left_bytes = allocated - window_size; in OutputBuffer_WindowInitWithSize() 103 window->next_posi = *next_out + window_size; in OutputBuffer_WindowInitWithSize() 128 Py_ssize_t window_size = Py_MIN((size_t)window->left_bytes, UINT32_MAX); in OutputBuffer_WindowGrow() local 131 *avail_out = (uint32_t) window_size; in OutputBuffer_WindowGrow() 133 window->left_bytes -= window_size; in OutputBuffer_WindowGrow() 134 window->next_posi += window_size; in OutputBuffer_WindowGrow() 136 return window_size; in OutputBuffer_WindowGrow()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_scheduler.cpp | 648 int window_size = SMEM_WINDOW_SIZE; 663 for (int candidate_idx = idx - 1; k < max_moves && candidate_idx > (int)idx - window_size; 726 for (int candidate_idx = idx + 1; k < max_moves && candidate_idx < (int)idx + window_size; 791 int window_size = VMEM_WINDOW_SIZE; 806 for (int candidate_idx = idx - 1; k < max_moves && candidate_idx > (int)idx - window_size; 900 for (int candidate_idx = idx + 1; k < max_moves && candidate_idx < (int)idx + window_size; 963 int window_size = POS_EXP_WINDOW_SIZE / ctx.schedule_pos_export_div; 973 for (int candidate_idx = idx - 1; k < max_moves && candidate_idx > (int)idx - window_size;
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | deflate.c | 1071 s->window_size = (ulg)2L*s->w_size;
1154 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1195 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1227 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1272 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1301 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1346 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
1360 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1415 * more == window_size - lookahead - strstart
1416 * => more >= window_size [all...] |
/third_party/nghttp2/lib/ |
H A D | nghttp2_submit.c | 428 int32_t window_size) { in nghttp2_session_set_local_window_size() 434 if (window_size < 0) { in nghttp2_session_set_local_window_size() 439 window_size_increment = window_size - session->local_window_size; in nghttp2_session_set_local_window_size() 472 window_size_increment = window_size - stream->local_window_size; in nghttp2_session_set_local_window_size() 426 nghttp2_session_set_local_window_size(nghttp2_session *session, uint8_t flags, int32_t stream_id, int32_t window_size) nghttp2_session_set_local_window_size() argument
|
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_submit.c | 428 int32_t window_size) { in nghttp2_session_set_local_window_size() 434 if (window_size < 0) { in nghttp2_session_set_local_window_size() 439 window_size_increment = window_size - session->local_window_size; in nghttp2_session_set_local_window_size() 472 window_size_increment = window_size - stream->local_window_size; in nghttp2_session_set_local_window_size() 426 nghttp2_session_set_local_window_size(nghttp2_session *session, uint8_t flags, int32_t stream_id, int32_t window_size) nghttp2_session_set_local_window_size() argument
|
/third_party/zlib/contrib/gcc_gvmat64/ |
H A D | gvmat64.S | 156 #define window_size [ rcx + dsWSize]
define 267 mov eax, window_size
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | jitter.c | 158 int window_size; /**< Total window over which the late frames are counted */ member 201 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay() 821 jitter->window_size = 100*TOP_DELAY/jitter->max_late_rate; in jitter_buffer_ctl() 822 jitter->subwindow_size = jitter->window_size/MAX_BUFFERS; in jitter_buffer_ctl()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | stream.c | 107 stream->window_size = SPDYF_INITIAL_WINDOW_SIZE; in SPDYF_stream_new()
|
/third_party/ffmpeg/libavcodec/ |
H A D | sonic.c | 73 int window_size; member 667 s->window_size = ((2*s->tail_size)+s->frame_size); in sonic_encode_init() 668 s->window = av_calloc(s->window_size, 2 * sizeof(*s->window)); in sonic_encode_init() 764 memset(s->window, 0, s->window_size * sizeof(*s->window)); in sonic_encode_frame() 779 modified_levinson_durbin(s->window, s->window_size, in sonic_encode_frame()
|
/third_party/pulseaudio/speex/tmv/ |
H A D | mdf_tm.h | 297 N = st->window_size; in speex_echo_get_residual() 605 register int N = st->window_size; in mdf_update_foreground() 770 register int N = st->window_size; in mdf_check() 1044 register int N = st->window_size; in mdf_adapt() 1100 N = st->window_size; in speex_echo_cancellation()
|