HomeSort by relevance Sort by last modified time
    Searched refs:window_size (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /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/tensorflow/tensorflow/examples/wav_to_spectrogram/
wav_to_spectrogram.h 27 tensorflow::int32 window_size,
main.cc 29 tensorflow::int32 window_size = 256; local
35 tensorflow::Flag("window_size", &window_size,
59 input_wav, window_size, stride, brightness, output_image);
wav_to_spectrogram.cc 45 tensorflow::int32 window_size,
61 wav_decoder.audio, window_size, stride);
  /external/v4l2_codec2/vda/
bit_reader_core.cc 83 const int window_size = local
85 DCHECK_GE(window_size, 0);
86 DCHECK_LE(window_size, nbytes);
87 if (window_size < nbytes) {
89 bits_read_ += 8 * window_size;
152 int window_size = local
154 DCHECK_GE(window_size, 0);
155 DCHECK_LE(window_size, max_nbytes);
156 if (window_size == 0)
160 memcpy(&reg_next_, byte_stream_window, window_size);
    [all...]
  /external/adhd/cras/src/server/
rate_estimator.h 32 * window_size - The size of the window.
40 struct timespec window_size; member in struct:rate_estimator
50 * window_size - The window size of the rate estimator.
55 const struct timespec *window_size,
rate_estimator.c 42 const struct timespec *window_size,
51 re->window_size = *window_size;
101 if (timespec_after(&td, &re->window_size) &&
  /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/tensorflow/tensorflow/core/kernels/
attention_ops.cc 54 const Tensor& window_size = context->input(1); variable
56 (window_size.shape().dims() == 1) &&
57 window_size.shape().dim_size(0) == 2,
60 window_size.shape().DebugString()));
62 const int64 output_height = window_size.tensor<int, 1>()(0);
63 const int64 output_width = window_size.tensor<int, 1>()(1);
  /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);
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
input_pipeline_test.py 84 self, time_series_reader, window_size, batch_size, num_features,
88 window_size=window_size, batch_size=batch_size)
98 self.assertAllEqual([batch_size, window_size],
100 for window_position in range(window_size - 1):
108 self.assertAllEqual([batch_size, window_size, num_features],
120 num_features=1, window_size=2, batch_size=5,
159 num_features=1, window_size=3, batch_size=5,
169 num_features=1, window_size=3, batch_size=5,
189 num_features=1, window_size=3, batch_size=5
    [all...]
  /external/tensorflow/tensorflow/contrib/data/python/ops/
grouping.py 31 window_size=None,
41 You may provide either a constant `window_size` or a window size determined by
48 reduce_func: A function mapping a key and a dataset of up to `window_size`
50 window_size: A `tf.int64` scalar `tf.Tensor`, representing the number of
57 `reduce_func`. Mutually exclusive with `window_size`.
64 ValueError: if neither or both of {`window_size`, `window_size_func`} are
67 if (window_size is not None and window_size_func or
68 not (window_size is not None or window_size_func)):
69 raise ValueError("Must pass either window_size or window_size_func.")
71 if window_size is not None
    [all...]
  /device/google/contexthub/firmware/os/inc/algos/
time_sync.h 49 void time_sync_truncate(time_sync_t *sync, size_t window_size);
  /external/tensorflow/tensorflow/compiler/xla/
window_util.h 79 // For example, for arguments of (bound=5, window_size=2, stride=2), the
83 int64 StridedBound(int64 bound, int64 window_size, int64 stride);
  /external/tensorflow/tensorflow/core/ops/
audio_ops.cc 73 int32 window_size; local
74 TF_RETURN_IF_ERROR(c->GetAttr("window_size", &window_size));
86 const int64 length_minus_window = (input_length_value - window_size);
97 c->MakeDim(1 + NextPowerOfTwo(window_size) / 2);
141 .Attr("window_size: int")
  /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().
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image_utils.h 160 const int window_size = 2 * window_radius + 1; local
161 for (int y = 0; y < window_size; ++y) {
164 for (int x = 0; x < window_size; ++x) {
173 CalculateGInt16(vals_x, vals_y, window_size * window_size, g_temp);

Completed in 1309 milliseconds

1 2 3 4 5