Home
last modified time | relevance | path

Searched refs:window_width (Results 1 – 12 of 12) sorted by relevance

/external/eigen/bench/btl/data/
Dsmooth.cxx102 int window_width=2*window_half_width+1; in smooth_curve() local
106 vector<double> sample(window_width); in smooth_curve()
110 for ( int j=0 ; j < window_width ; j++ ){ in smooth_curve()
/external/pigweed/pw_console/py/pw_console/
Dtext_formatting.py154 window_width: int,
162 empty_characters = window_width - fragment_width
164 if line_wrapping and (fragment_width > window_width):
/external/ComputeLibrary/src/cpu/kernels/
DCpuFillKernel.cpp64 …const auto window_width = static_cast<int>(collapsed.x().end()) - static_cast<int>(colla… in run_op() local
75 for(int i = 0; i < window_width; ++i) in run_op()
/external/crosvm/gpu_display/src/gpu_display_win/
Dsurface.rs65 window_width: c_int, in gfxstream_backend_setup_window()
110 pub window_width: u32, field
117 let (window_width, window_height) = params.get_window_size(); in from()
122 window_width, in from()
/external/webrtc/modules/desktop_capture/win/test_support/
Dtest_window.cc64 int window_width = width <= 0 ? kWindowWidth : width; in CreateTestWindow() local
68 window_width, window_height, /*parent_window=*/nullptr, in CreateTestWindow()
/external/federated-compute/fcp/client/
Dfederated_protocol_util.cc47 absl::Duration window_width = max_delay - min_delay; in PickRetryDelayFromRange() local
49 return min_delay + (window_width * random); in PickRetryDelayFromRange()
/external/webrtc/modules/desktop_capture/win/
Dwgc_capturer_win_unittest.cc103 void SetUpForWindowCapture(int window_width = kMediumWindowWidth, in SetUpForWindowCapture() argument
107 CreateWindowOnSeparateThread(window_width, window_height); in SetUpForWindowCapture()
128 void CreateWindowOnSeparateThread(int window_width, int window_height) { in CreateWindowOnSeparateThread() argument
132 SendTask(window_thread_.get(), [this, window_width, window_height]() { in CreateWindowOnSeparateThread()
135 CreateTestWindow(kWindowTitle, window_height, window_width); in CreateWindowOnSeparateThread()
/external/coreboot/payloads/libpayload/curses/PDCurses/x11/
Dx11.c216 window_width, window_height; variable
910 window_width - xc_app_data.borderWidth, in _draw_border()
2354 window_width = resize_window_width; in _resize()
2948 window_width = font_width * XCursesCOLS + in XCursesSetupX()
2982 window_width + xc_app_data.scrollbarWidth, in XCursesSetupX()
2988 window_width, XtNheight, window_height, XtNwidthInc, in XCursesSetupX()
3001 XtorientHorizontal, XtNwidth, window_width, XtNheight, in XCursesSetupX()
3010 topLevel, XtNwidth, window_width, XtNheight, window_height, in XCursesSetupX()
/external/deqp/external/openglcts/modules/common/
DglcViewportArrayTests.cpp1505 const GLint window_width = m_context.getRenderContext().getRenderTarget().getWidth(); in iterate() local
1527 if ((window_width != viewport_width) || (window_height != viewport_height)) in iterate()
1531 … << " x " << viewport_height << " expected: " << window_width << " x " << window_height in iterate()
1589 if ((window_width != scissor_width) || (window_height != scissor_height)) in iterate()
1593 … << "] dimennsions: " << scissor_width << " x " << scissor_height << " expected: " << window_width in iterate()
/external/python/cpython3/Doc/library/
Dturtle.rst421 | :func:`window_width`
2242 .. function:: window_width()
2246 >>> screen.window_width()
2718 - The methods :func:`Turtle.tracer <tracer>`, :func:`Turtle.window_width <window_width>` and
/external/tensorflow/tensorflow/compiler/xla/stream_executor/
Ddnn.h755 int64_t window_width() const { return GetDim(window_, DimIndex::X); } in window_width() function
/external/python/cpython3/Lib/
Dturtle.py1299 def window_width(self): member in TurtleScreen