Home
last modified time | relevance | path

Searched refs:x_image (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Main/
DFrameBufferX11.cpp63 x_image = libX11->XShmCreateImage(x_display, visual, depth, ZPixmap, 0, &shminfo, width, height); in FrameBufferX11()
65 …shminfo.shmid = shmget(IPC_PRIVATE, x_image->bytes_per_line * x_image->height, IPC_CREAT | SHM_R |… in FrameBufferX11()
66 shminfo.shmaddr = x_image->data = buffer = (char*)shmat(shminfo.shmid, 0, 0); in FrameBufferX11()
78 XDestroyImage(x_image); in FrameBufferX11()
92x_image = libX11->XCreateImage(x_display, visual, depth, ZPixmap, 0, buffer, width, height, 32, by… in FrameBufferX11()
100 x_image->data = 0; in ~FrameBufferX11()
101 XDestroyImage(x_image); in ~FrameBufferX11()
109 XDestroyImage(x_image); in ~FrameBufferX11()
122 stride = x_image->bytes_per_line; in lock()
139 libX11->XPutImage(x_display, x_window, x_gc, x_image, 0, 0, 0, 0, width, height); in blit()
[all …]
DFrameBufferX11.hpp44 XImage *x_image; member in sw::FrameBufferX11
/external/tensorflow/tensorflow/examples/tutorials/mnist/
Dmnist_deep.py57 x_image = tf.reshape(x, [-1, 28, 28, 1])
63 h_conv1 = tf.nn.relu(conv2d(x_image, W_conv1) + b_conv1)
/external/tensorflow/tensorflow/python/grappler/
Dlayout_optimizer_test.py73 x_image = array_ops.reshape(x, [-1, 28, 28, 1])
76 h_conv1 = nn.relu(_conv2d(x_image, w_conv1) + b_conv1)
97 x_image = array_ops.reshape(x, [-1, 28, 28, 1])
100 c_conv1 = _conv2d(x_image, w_conv1)
101 c_conv2 = _conv2d(x_image, w_conv2)
107 x_image = array_ops.reshape(x, [-1, 28, 28, 1])
109 c_conv1 = _conv2d(x_image, w_conv1)