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

1 2 3 4

  /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
  /external/opencv3/modules/viz/src/
types.cpp 95 cv::viz::Camera::Camera(double fx, double fy, double cx, double cy, const Size &window_size)
97 init(fx, fy, cx, cy, window_size);
100 cv::viz::Camera::Camera(const Vec2d &fov, const Size &window_size)
102 CV_Assert(window_size.width > 0 && window_size.height > 0);
105 window_size_ = window_size;
107 principal_point_ = Vec2f(static_cast<float>(window_size.width)*0.5f, static_cast<float>(window_size.height)*0.5f);
111 cv::viz::Camera::Camera(const cv::Matx33d & K, const Size &window_size)
117 init(f_x, f_y, c_x, c_y, window_size);
    [all...]
vizimpl.cpp 58 cv::Vec2i window_size = cv::Vec2i(window_->GetScreenSize()) / 2; local
59 window_->SetSize(window_size.val);
117 Vec2i window_size(window_->GetSize());
125 window_->SetSize(window_size.val);
311 void cv::viz::Viz3d::VizImpl::showImage(InputArray image, const Size& window_size)
314 if (window_size.width > 0 && window_size.height > 0)
315 setWindowSize(window_size);
412 Size window_size(renderer_->GetRenderWindow()->GetSize()[0],
414 double aspect_ratio = window_size.width / (double)window_size.height
    [all...]
vizimpl.hpp 71 void showImage(InputArray image, const Size& window_size);
95 void setWindowSize(const Size& window_size);
viz3d.cpp 117 void cv::viz::Viz3d::showImage(InputArray image, const Size& window_size) { impl_->showImage(image, window_size); }
135 void cv::viz::Viz3d::setWindowSize(const Size &window_size) { impl_->setWindowSize(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/chromium-trace/catapult/dashboard/dashboard/
find_change_points_exp.py 52 def _GetLastWindow(series, window_size):
54 if not window_size:
56 return series[-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/opencv3/samples/python2/
stereo_match.py 39 window_size = 3 variable
45 P1 = 8*3*window_size**2,
46 P2 = 32*3*window_size**2,
  /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/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().
  /external/opencv3/modules/viz/include/opencv2/viz/
viz3d.hpp 112 @param window_size Size of Viz3d window. Default value means no change.
114 void showImage(InputArray image, const Size& window_size = Size(-1, -1));
184 @param window_size New size of the window.
186 void setWindowSize(const Size &window_size);
types.hpp 152 @param window_size Size of the window. This together with focal length and principal
155 Camera(double fx, double fy, double cx, double cy, const Size &window_size);
158 @param window_size Size of the window. Principal point is at the center of the window
161 explicit Camera(const Vec2d &fov, const Size &window_size);
164 @param window_size Size of the window. This together with intrinsic matrix determines
167 explicit Camera(const Matx33d &K, const Size &window_size);
170 @param window_size Size of the window. This together with projection matrix determines
173 explicit Camera(const Matx44d &proj, const Size &window_size);
179 void setWindowSize(const Size &window_size);
195 @param window_size Size of the window. This together with intrinsic matrix of a Kinect Camer
    [all...]
  /device/google/contexthub/firmware/src/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/libvpx/libvpx/examples/
vp9_spatial_svc_encoder.c 393 int window_size; member in struct:RateControlStats
433 rc->window_size = 15;
483 printf("Short-time stats, for window of %d frames: \n", rc->window_size);
798 if (frame_cnt > rc.window_size) {
803 if (frame_cnt % rc.window_size == 0) {
805 rc.avg_st_encoding_bitrate += sum_bitrate / rc.window_size;
807 (sum_bitrate / rc.window_size) *
808 (sum_bitrate / rc.window_size);
814 if (frame_cnt > rc.window_size + rc.window_size / 2)
    [all...]
vpx_temporal_svc_encoder.c 70 int window_size; member in struct:RateControlMetrics
106 rc->window_size = 15;
149 printf("Short-time stats, for window of %d frames: \n",rc->window_size);
778 if (frame_cnt > rc.window_size) {
780 if (frame_cnt % rc.window_size == 0) {
782 rc.avg_st_encoding_bitrate += sum_bitrate / rc.window_size;
784 (sum_bitrate / rc.window_size) *
785 (sum_bitrate / rc.window_size);
790 if (frame_cnt > rc.window_size + rc.window_size / 2)
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
backward_references.c 30 #define WINDOW_SIZE ((1 << 20) - 120)
147 int cache_bits, int* window_size,
152 const int max_window_size = (quality > 50) ? WINDOW_SIZE
156 *window_size = (max_window_size > WINDOW_SIZE) ? WINDOW_SIZE
167 int window_size, int iter_pos, int iter_limit,
176 (base_position > window_size) ? base_position - window_size : 0;
274 int window_size = WINDOW_SIZE local
490 int window_size = WINDOW_SIZE; local
633 int window_size = WINDOW_SIZE; local
    [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/webp/src/enc/
backward_references.c 30 #define WINDOW_SIZE ((1 << 20) - 120)
252 const int max_window_size = (quality > 75) ? WINDOW_SIZE
257 return (max_window_size > WINDOW_SIZE) ? WINDOW_SIZE : max_window_size;
266 int window_size, int* const distance_ptr) {
269 (base_position > window_size) ? base_position - window_size : 0;
285 int window_size, int iter_max,
293 (base_position > window_size) ? base_position - window_size : 0
397 const int window_size = GetWindowSizeForHashChain(quality, xsize); local
607 const int window_size = GetWindowSizeForHashChain(quality, xsize); local
737 const int window_size = GetWindowSizeForHashChain(quality, xsize); local
    [all...]

Completed in 420 milliseconds

1 2 3 4