/external/clang/test/CoverageMapping/ |
casts.c | 5 int window_size = (sizeof(int) <= 2 ? (unsigned)512 : 1024); // CHECK-NEXT: File 0, [[@LINE]]:57 -> [[@LINE]]:61 = (#0 - #1) local
|
/frameworks/native/libs/vr/libvrsensor/ |
latency_model.cpp | 8 LatencyModel::LatencyModel(size_t window_size) : window_size_(window_size) {}
|
/external/squashfs-tools/squashfs-tools/ |
gzip_wrapper.h | 41 (s)->window_size = inswap_le16((s)->window_size); \ 54 short window_size; member in struct:gzip_comp_opts
|
gzip_wrapper.c | 48 static int window_size = GZIP_DEFAULT_WINDOW_SIZE; variable 92 window_size = atoi(argv[1]); 93 if(window_size < 8 || window_size > 15) { 186 window_size == GZIP_DEFAULT_WINDOW_SIZE && 194 comp_opts.window_size = window_size; 232 window_size = GZIP_DEFAULT_WINDOW_SIZE; 252 if(comp_opts->window_size < 8 || 253 comp_opts->window_size > 15) [all...] |
/external/v4l2_codec2/vda/ |
bit_reader_core.cc | 85 const int window_size = local 87 DCHECK_GE(window_size, 0); 88 DCHECK_LE(window_size, nbytes); 89 if (window_size < nbytes) { 91 bits_read_ += 8 * window_size; 154 int window_size = local 156 DCHECK_GE(window_size, 0); 157 DCHECK_LE(window_size, max_nbytes); 158 if (window_size == 0) 162 memcpy(®_next_, byte_stream_window, window_size); [all...] |
/frameworks/native/libs/vr/libvrsensor/include/private/dvr/ |
latency_model.h | 10 // window_size measurements and return their average after that. 13 LatencyModel(size_t window_size);
|
/external/zopfli/src/zopfli/ |
hash.c | 29 void ZopfliInitHash(size_t window_size, ZopfliHash* h) { 34 h->prev = (unsigned short*)malloc(sizeof(*h->prev) * window_size); 35 h->hashval = (int*)malloc(sizeof(*h->hashval) * window_size); 39 for (i = 0; i < window_size; i++) { 45 h->same = (unsigned short*)malloc(sizeof(*h->same) * window_size); 46 for (i = 0; i < window_size; i++) { 54 h->prev2 = (unsigned short*)malloc(sizeof(*h->prev2) * window_size); 55 h->hashval2 = (int*)malloc(sizeof(*h->hashval2) * window_size); 59 for (i = 0; i < window_size; i++) {
|
hash.h | 50 void ZopfliInitHash(size_t window_size, ZopfliHash* h);
|
/external/sfntly/cpp/src/test/ |
byte_array_test.cc | 46 void ReadByteArrayWithSlidingWindow(ByteArray* ba, int window_size, 50 int32_t actual_window_size = window_size; 81 for (int window_size = 1; window_size < ba1->Length(); 82 window_size += increments) { 83 ReadByteArrayWithSlidingWindow(ba1, window_size, &b1); 84 ReadByteArrayWithSlidingWindow(ba2, window_size, &b2);
|
font_data_test.cc | 165 void ReadFontDataWithSlidingWindow(ReadableFontData* rfd, int32_t window_size, 171 std::min<int32_t>(window_size, b->size() - index); 200 int32_t window_size) { 204 int32_t sliding_size = std::min<int32_t>(window_size, b.size() - index); 240 for (int32_t window_size = 1; window_size <= length; 241 window_size += increments) { 246 ReadFontDataWithSlidingWindow(rfd1, window_size, &b1); 247 ReadFontDataWithSlidingWindow(rfd2, window_size, &b2); 293 for (int window_size = 1; window_size < length; window_size += increments) [all...] |
/external/webrtc/webrtc/modules/audio_processing/agc/ |
histogram.cc | 76 Histogram::Histogram(int window_size) 80 activity_probability_(new int[window_size]), 81 hist_bin_index_(new int[window_size]), 84 len_circular_buffer_(window_size), 174 Histogram* Histogram::Create(int window_size) { 175 if (window_size < 0) 177 return new Histogram(window_size);
|
histogram.h | 29 // |window_size| samples. 30 static Histogram* Create(int window_size);
|
/device/google/contexthub/firmware/os/inc/algos/ |
time_sync.h | 49 void time_sync_truncate(time_sync_t *sync, size_t window_size);
|
/external/webrtc/webrtc/modules/desktop_capture/x11/ |
x_server_pixel_buffer.h | 41 const DesktopSize& window_size() { return window_size_; } function in class:webrtc::XServerPixelBuffer 56 // that |rect| is not larger than window_size().
|
/device/google/contexthub/firmware/os/algos/ |
time_sync.c | 35 void time_sync_truncate(time_sync_t *sync, size_t window_size) { 37 sync->n = (window_size < sync->n) ? window_size : sync->n;
|
/external/autotest/client/cros/audio/ |
audio_analysis_unittest.py | 17 def dummy_peak_detection(self, array, window_size): 25 @param window_size: The window to detect peaks. 33 half_window_size = window_size / 2 76 window_size = 100 78 dummy_answer = self.dummy_peak_detection(array, window_size) 80 improved_answer = audio_analysis.peak_detection(array, window_size)
|
/external/libvpx/libvpx/examples/ |
vp9_spatial_svc_encoder.c | 409 int window_size; member in struct:RateControlStats 448 rc->window_size = 15; 501 printf("Short-time stats, for window of %d frames: \n", rc->window_size); [all...] |
vpx_temporal_svc_encoder.c | 68 int window_size; member in struct:RateControlMetrics 104 rc->window_size = 15; 149 printf("Short-time stats, for window of %d frames: \n", rc->window_size); 810 if (frame_cnt > rc.window_size) { 812 if (frame_cnt % rc.window_size == 0) { 814 rc.avg_st_encoding_bitrate += sum_bitrate / rc.window_size; [all...] |
/external/autotest/client/site_tests/power_BacklightControl/ |
power_BacklightControl.py | 200 window_size=10, 204 The last |window_size| samples of energy rate do not deviate from 212 window_size Number of energy rate samples required to 215 |window_size| values. 230 # the maximum limit |window_size|, before appending a new value. 231 if len(samples) >= window_size: 236 if len(samples) >= window_size and \
|
/external/brotli/research/ |
draw_histogram.cc | 58 static uint32_t window_size = (1 << FLAGS_brotli_window); local 59 assert(*pos >= 0 && *pos < window_size); 61 offset += window_size;
|
/hardware/intel/img/psb_video/src/ |
tng_H263ES.c | 408 (psRCParams->ui32BufferSize == psRCParams->ui32BitsPerSecond / 1000 * rate_control_param->window_size) && 422 if (rate_control_param->window_size != 0) 423 psRCParams->ui32BufferSize = psRCParams->ui32BitsPerSecond * rate_control_param->window_size / 1000; 483 (ctx->sRCParams.ui32BufferSize == ctx->sRCParams.ui32BitsPerSecond / 1000 * rate_control_param->window_size) && 499 if (rate_control_param->window_size != 0) 500 ctx->sRCParams.ui32BufferSize = ctx->sRCParams.ui32BitsPerSecond * rate_control_param->window_size / 1000;
|
/external/selinux/policycoreutils/run_init/ |
open_init_pty.c | 203 struct winsize window_size; local 244 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &window_size) < 0) { 249 child_pid = forkpty(&pty_master, NULL, &tty_attr, &window_size);
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capturer_x11.cc | 257 new BasicDesktopFrame(x_server_pixel_buffer_.window_size())); 311 assert(x_server_pixel_buffer_.window_size().equals(frame->size())); 348 DesktopRect::MakeSize(x_server_pixel_buffer_.window_size()));
|
/external/libmicrohttpd/src/microspdy/ |
stream.c | 107 stream->window_size = SPDYF_INITIAL_WINDOW_SIZE;
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
intelligibility_utils.h | 72 // |window_size| is the number of samples for kStepWindowed and 75 VarianceArray(size_t freqs, StepType type, size_t window_size, float decay);
|