Searched refs:x_image (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/src/Main/ |
D | FrameBufferX11.cpp | 66 x_image = libX11->XShmCreateImage(x_display, visual, depth, ZPixmap, 0, &shminfo, width, height); in FrameBufferX11() 68 …shminfo.shmid = shmget(IPC_PRIVATE, x_image->bytes_per_line * x_image->height, IPC_CREAT | SHM_R |… in FrameBufferX11() 69 shminfo.shmaddr = x_image->data = (char*)shmat(shminfo.shmid, 0, 0); in FrameBufferX11() 81 XDestroyImage(x_image); in FrameBufferX11() 96 …x_image = libX11->XCreateImage(x_display, visual, depth, ZPixmap, 0, buffer, width, height, 32, by… in FrameBufferX11() 97 assert(x_image); in FrameBufferX11() 99 if(!x_image) in FrameBufferX11() 110 XDestroyImage(x_image); in ~FrameBufferX11() 115 XDestroyImage(x_image); in ~FrameBufferX11() 128 if(x_image) in lock() [all …]
|
D | FrameBufferX11.hpp | 44 XImage *x_image = nullptr; member in sw::FrameBufferX11
|
/external/webrtc/modules/desktop_capture/linux/ |
D | x_server_pixel_buffer.cc | 65 void FastBlit(XImage* x_image, in FastBlit() argument 72 int src_stride = x_image->bytes_per_line; in FastBlit() 88 void SlowBlit(XImage* x_image, in SlowBlit() argument 95 int src_stride = x_image->bytes_per_line; in SlowBlit() 100 uint32_t red_mask = x_image->red_mask; in SlowBlit() 101 uint32_t green_mask = x_image->red_mask; in SlowBlit() 102 uint32_t blue_mask = x_image->blue_mask; in SlowBlit() 108 int bits_per_pixel = x_image->bits_per_pixel; in SlowBlit()
|
/external/tensorflow/tensorflow/python/grappler/ |
D | layout_optimizer_test.py | 74 x_image = array_ops.reshape(x, [-1, 28, 28, 1]) 77 h_conv1 = nn.relu(_conv2d(x_image, w_conv1) + b_conv1) 98 x_image = array_ops.reshape(x, [-1, 28, 28, 1]) 101 c_conv1 = _conv2d(x_image, w_conv1) 102 c_conv2 = _conv2d(x_image, w_conv2) 108 x_image = array_ops.reshape(x, [-1, 28, 28, 1]) 110 c_conv1 = _conv2d(x_image, w_conv1)
|
D | auto_mixed_precision_test.py | 131 x_image = array_ops.reshape(x, [-1, 8, 8, 1]) 134 h_conv1 = nn.relu(nn.bias_add(_conv2d(x_image, w_conv1), b_conv1))
|