Searched refs:height (Results 1 - 20 of 20) sorted by relevance

/gem5/src/base/vnc/
H A Dvncinput.cc60 _videoWidth(fb->width()), _videoHeight(fb->height()),
98 const unsigned height(fb->height());
100 if (_videoWidth != width || _videoHeight != height) {
101 DPRINTF(VNC, "Updating video params: width: %d height: %d\n",
102 width, height);
105 _videoHeight = height;
H A Dvncserver.cc563 fbr.height = betoh(fbr.height);
566 fbr.height);
651 fbr.height = videoHeight();
659 fbr.height = htobe(fbr.height);
669 for (int y = 0; y < fb->height(); ++y) {
696 fbr.height = videoHeight();
704 fbr.height = htobe(fbr.height);
[all...]
H A Dvncinput.hh134 uint16_t height; member in struct:VncInput::FrameBufferUpdateReq
186 /** What is the height of the screen we're displaying.
189 * @return the height of the simulated screen
214 /** the height of the frame buffer we are sending to the client */
H A Dvncserver.hh130 uint16_t height; member in struct:VncServer::FrameBufferRect
/gem5/src/base/
H A Dframebuffer.cc48 FrameBuffer::FrameBuffer(unsigned width, unsigned height) argument
49 : pixels(width * height),
50 _width(width), _height(height)
82 FrameBuffer::resize(unsigned width, unsigned height) argument
85 _height = height;
87 pixels.resize(width * height);
H A Dbmpwriter.cc75 fb.height(),
102 for (int y = 0; y < fb.height(); ++y) {
104 line_buffer[x] = fb.pixel(x, fb.height() - y - 1);
H A Dpngwriter.cc118 unsigned height = fb.height(); local
152 png_set_IHDR(pngPtr, infoPtr, width, height, 8,
162 for (unsigned y=0; y < height; ++y) {
H A Dframebuffer.hh74 * @param height Height in pixels
76 FrameBuffer(unsigned width, unsigned height);
93 * @param height Height in pixels.
95 void resize(unsigned width, unsigned height);
99 /** Frame buffer height in pixels */
100 unsigned height() const { return _height; } function in class:FrameBuffer
117 * of the same width and height as this frame buffer.
125 * of the same width and height as this frame buffer.
136 * of the same width and height as this frame buffer.
144 * of the same width and height a
[all...]
/gem5/src/dev/
H A Dpixelpump.cc51 : width(_width), height(_height),
61 SERIALIZE_SCALAR(height);
76 UNSERIALIZE_SCALAR(height);
147 if (_timings.width != fb.width() || _timings.height != fb.height())
148 fb.resize(timings.width, timings.height);
246 if (pos_y == _timings.height - 1)
H A Dpixelpump.hh54 * @param height Height of the visible area of the screen.
62 DisplayTimings(unsigned width, unsigned height,
96 return lineFirstVisible() + height;
106 /** Display height in pixels */
107 unsigned height; member in struct:DisplayTimings
/gem5/ext/mcpat/cacti/
H A Dcacti_interface.cc112 cache_ht = data_array2->height;
115 cache_ht = MAX(tag_array2->height, data_array2->height);
H A Dmat.cc600 double height = local
610 // col mux tr height
611 height +=
614 // height += deg_bl_muxing * g_tp.wire_inside_mat.pitch * (RWP + ERP); // bit mux dec out wires height
617 height += height_sense_amplifier(/*camFlag? sram_cell.w:*/cell.w * deg_bl_muxing / (RWP + ERP)); // sense_amp_height
620 height += compute_tr_width_after_folding(
626 height += compute_tr_width_after_folding(
630 // add height of inverter-buffers between the two levels (pass-transistors) of sense-amp mux
631 height
[all...]
H A Dcacti_interface.h477 double height; member in class:mem_array
H A DUcache.cc263 ptr_array->height = uca->area.h;
/gem5/src/dev/arm/
H A Dpl111.cc69 width(LcdMaxWidth), height(LcdMaxHeight),
268 // height = LPP + 1
269 height = (lcdTiming1.lpp) + 1;
296 DPRINTF(PL111, " lcd size: height %d width %d\n", height, width);
437 fb.resize(width, height);
460 uint32_t length = height * width;
508 Tick maxFrameTime = lcdTiming2.cpl * height * pixelClock;
608 SERIALIZE_SCALAR(height);
710 UNSERIALIZE_SCALAR(height);
[all...]
H A Dpl111.hh277 /** Frame buffer height - lines per panel */
278 uint16_t height; member in class:Pl111
H A Dhdlcd.cc685 inform("PixelPump height: %u", t.height);
/gem5/util/minorview/
H A Dblobs.py101 (width, height) = size.to_pair()
303 xb, yb, width, height, dx, dy = cr.text_extents(self.displayName)
412 xb, yb, width, height, dx, dy = cr.text_extents(label)
415 Point(0.0, height / 2.0))
H A Dview.py104 self.da.get_allocation().height)
146 self.da.get_allocation().height)
377 xb, yb, width, height, dx, dy = cr.text_extents(str)
515 size = Point(float(event.width), float(event.height))
/gem5/src/arch/hsail/
H A DBrig_new.hpp1515 BrigUInt64 height; //.acc=subItem<UInt64> //.wtype=UInt64 member in struct:BrigOperandConstantImage

Completed in 50 milliseconds