Searched defs:window_size (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium_org/remoting/base/
H A Drunning_average.cc11 RunningAverage::RunningAverage(int window_size) argument
12 : window_size_(window_size),
14 DCHECK_GT(window_size, 0);
/external/chromium_org/net/quic/test_tools/
H A Dquic_flow_controller_peer.cc31 QuicFlowController* flow_controller, uint64 window_size) {
32 flow_controller->max_receive_window_ = window_size;
30 SetMaxReceiveWindow( QuicFlowController* flow_controller, uint64 window_size) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
H A Dx_server_pixel_buffer.h41 const DesktopSize& window_size() { return window_size_; } function in class:webrtc::XServerPixelBuffer
56 // that |rect| is not larger than window_size().
/external/zopfli/src/zopfli/
H A Dhash.c29 void ZopfliInitHash(size_t window_size, ZopfliHash* h) { argument
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++) {
/external/chromium_org/media/cast/net/
H A Dframe_id_wrap_helper_test.cc18 const int window_size = 127; local
24 int offset = rand() % window_size;
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.cc14 const gfx::Size& window_size,
17 window_size_(window_size),
13 AppListPositioner(const gfx::Display& display, const gfx::Size& window_size, int min_distance_from_edge) argument
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dbyte_array_test.cc46 void ReadByteArrayWithSlidingWindow(ByteArray* ba, int window_size, argument
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);
H A Dfont_data_test.cc165 void ReadFontDataWithSlidingWindow(ReadableFontData* rfd, int32_t window_size, argument
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
198 WriteFontDataWithSlidingWindow(ReadableFontData* rfd, WritableFontData* wfd, int32_t window_size) argument
[all...]
/external/sfntly/cpp/src/test/
H A Dbyte_array_test.cc46 void ReadByteArrayWithSlidingWindow(ByteArray* ba, int window_size, argument
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);
H A Dfont_data_test.cc165 void ReadFontDataWithSlidingWindow(ReadableFontData* rfd, int32_t window_size, argument
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
198 WriteFontDataWithSlidingWindow(ReadableFontData* rfd, WritableFontData* wfd, int32_t window_size) argument
[all...]
/external/chromium_org/media/base/
H A Dbit_reader_core.cc84 const int window_size = local
86 DCHECK_GE(window_size, 0);
87 DCHECK_LE(window_size, nbytes);
88 if (window_size < nbytes)
150 int window_size = local
152 DCHECK_GE(window_size, 0);
153 DCHECK_LE(window_size, max_nbytes);
154 if (window_size == 0)
158 memcpy(&reg_next_, byte_stream_window, window_size);
160 nbits_next_ = window_size *
[all...]
/external/chromium_org/ui/ozone/demo/
H A Dozone_demo.cc154 gfx::Size window_size = GetSize(); local
156 glViewport(0, 0, window_size.width(), window_size.height());
166 gfx::Size window_size = GetSize(); local
175 software_surface_->PresentCanvas(gfx::Rect(window_size));
/external/srec/srec/cfront/
H A Dwav_acc.c46 void create_sample_buffer(wave_info *wave, int frame_size, int window_size) argument
50 ASSERT(window_size >= frame_size);
51 wave->income = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.income");
52 wave->outgo = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.outgo");
53 wave->window_size = window_size;
56 log_report("window %d frame %d\n", window_size, frame_size);
70 wave->window_size = 0;
/external/chromium_org/ash/wm/overview/
H A Dwindow_grid.cc181 gfx::Size window_size; local
205 window_size.set_width(std::min(
208 window_size.set_height(window_size.width() / kCardAspectRatio);
212 (num_columns_ - window_list_.size()) * window_size.width()) +
213 (total_bounds.width() - num_columns_ * window_size.width())) / 2;
215 num_rows * window_size.height()) / 2;
221 gfx::Rect target_bounds(window_size.width() * column + x_offset,
222 window_size.height() * row + y_offset,
223 window_size
[all...]
/external/chromium_org/chrome/browser/ui/blocked_content/
H A Dpopup_blocker_browsertest.cc400 gfx::Size window_size = popup->GetContainerBounds().size(); local
401 EXPECT_TRUE(349 <= window_size.width() && window_size.width() <= 351);
402 EXPECT_TRUE(249 <= window_size.height() && window_size.height() <= 251);
/external/chromium_org/content/browser/android/
H A Doverscroll_glow.cc32 const gfx::SizeF& window_size,
43 -window_size.height() / 2.f + offset,
44 window_size.height() / 2.f);
46 return gfx::Transform(-1, 0, 0, -1, 0, window_size.height() + offset);
53 -window_size.height() / 2.f + window_size.width() + offset,
54 window_size.height() / 2.f);
62 const gfx::SizeF& window_size) {
66 return window_size;
69 return gfx::SizeF(window_size
31 ComputeTransform(OverscrollGlow::Edge edge, const gfx::SizeF& window_size, float offset) argument
61 ComputeSize(OverscrollGlow::Edge edge, const gfx::SizeF& window_size) argument
[all...]
/external/chromium_org/third_party/libsrtp/srtp/include/
H A Dsrtp.h222 unsigned long window_size; /**< The window size to use for replay member in struct:srtp_policy_t
/external/chromium_org/ui/snapshot/
H A Dsnapshot_aura_unittest.cc39 explicit TestPaintingWindowDelegate(const gfx::Size& window_size) argument
40 : window_size_(window_size) {
/external/srtp/include/
H A Dsrtp.h222 unsigned long window_size; /**< The window size to use for replay member in struct:srtp_policy_t
/external/zlib/src/contrib/gcc_gvmat64/
H A Dgvmat64.S156 #define window_size [ rcx + dsWSize] define
267 mov eax, window_size
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm142 COMM window_size:DWORD
180 window_size equ [ rcx + dsWSize] define
287 mov eax, window_size
/external/chromium_org/ash/wm/
H A Dimmersive_fullscreen_controller_unittest.cc157 gfx::Size window_size = widget_->GetWindowBoundsInScreen().size(); variable
159 content_view_->SetBounds(0, 0, window_size.width(), window_size.height());
164 0, 0, window_size.width(), 100);
/external/mtpd/
H A Dpptp.c115 uint16_t window_size; member in struct:packet::__anon28035::__anon28036::__anon28038::__anon28040
297 outgoing.ocrq.window_size = htons(8192);
/external/srec/srec/include/
H A Dsample.h183 int window_size; member in struct:__anon31131
206 void create_sample_buffer(wave_info *wave, int frame_size, int window_size);
/external/chromium_org/net/spdy/
H A Dspdy_stream.cc36 int32 window_size,
41 dict->SetInteger("window_size", window_size);
33 NetLogSpdyStreamWindowUpdateCallback( SpdyStreamId stream_id, int32 delta, int32 window_size, NetLog::LogLevel ) argument

Completed in 543 milliseconds

12