Searched defs:rw (Results 1 - 25 of 55) sorted by relevance

123

/external/mesa3d/src/gallium/targets/pipe-loader/
H A Dpipe_r600.c9 struct radeon_winsys *rw; local
12 rw = radeon_drm_winsys_create(fd);
13 if (!rw)
16 screen = r600_screen_create(rw);
H A Dpipe_radeonsi.c9 struct radeon_winsys *rw; local
12 rw = radeon_drm_winsys_create(fd);
13 if (!rw)
16 screen = radeonsi_screen_create(rw);
/external/compiler-rt/test/tsan/
H A Dunaligned_norace.cc18 static void access(char *p, int sz, int rw) { argument
19 if (rw) {
50 for (int rw = 0; rw < 2; rw++) {
53 // printf("thr=%d off=%d sz1=%d sz2=%d rw=%d p=%p\n",
54 // main, off, sz1, sz2, rw, p);
58 // printf("thr=%d off=%d sz1=%d sz2=%d rw=%d p=%p\n",
59 // main, off, sz1, sz2, rw, p);
60 access(p, sz2, rw);
[all...]
H A Dunaligned_race.cc21 static NOINLINE void access(volatile char *p, int sz, int rw) { argument
22 if (rw) {
49 static NOINLINE void access3(bool main, int sz1, bool rw, volatile char *p) { argument
55 if (rw) {
66 access2(bool main, int sz1, int off2, bool rw, volatile char *obj) { argument
68 access3<off, 0>(main, sz1, rw, obj);
70 access3<off, 1>(main, sz1, rw, obj);
72 access3<off, 2>(main, sz1, rw, obj);
74 access3<off, 3>(main, sz1, rw, obj);
76 access3<off, 4>(main, sz1, rw, ob
86 access1(bool main, int off, int sz1, int off2, bool rw, char *obj) argument
[all...]
/external/libvncserver/libvncclient/
H A Dcorre.c33 HandleCoRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
49 FillRectangle(client, rx, ry, rw, rh, pix);
H A Drre.c33 HandleRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
48 FillRectangle(client, rx, ry, rw, rh, pix);
H A Dzlib.c36 HandleZlibBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
49 if ( client->raw_buffer_size < (( rw * rh ) * ( BPP / 8 ))) {
57 client->raw_buffer_size = (( rw * rh ) * ( BPP / 8 ));
145 CopyRectangle(client, (uint8_t *)client->raw_buffer, rx, ry, rw, rh); local
H A Dultra.c35 HandleUltraBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
40 lzo_uint uncompressedBytes = (( rw * rh ) * ( BPP / 8 ));
50 rfbClientLog("ultra error: rectangle has 0 uncomressed bytes ((%dw * %dh) * (%d / 8))\n", rw, rh, BPP);
95 if ((rw * rh * (BPP / 8)) != uncompressedBytes)
96 rfbClientLog("Ultra decompressed too little (%d < %d)", (rw * rh * (BPP / 8)), uncompressedBytes);
101 CopyRectangle(client, (unsigned char *)client->raw_buffer, rx, ry, rw, rh); local
115 HandleUltraZipBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
122 lzo_uint uncompressedBytes = ry + (rw * 65535);
134 rfbClientLog("ultrazip error: rectangle has 0 uncomressed bytes (%dy + (%dw * 65535)) (%d rectangles)\n", ry, rw, rx);
H A Dhextile.c33 HandleHextileBPP (rfbClient* client, int rx, int ry, int rw, int rh) argument
44 for (x = rx; x < rx+rw; x += 16) {
46 if (rx+rw - x < 16)
47 w = rx+rw - x;
H A Dzrle.c84 HandleZRLE (rfbClient* client, int rx, int ry, int rw, int rh) argument
90 int min_buffer_size = rw * rh * (REALBPP / 8) * 2;
198 for(i=0; i<rw; i+=rfbZRLETileWidth) {
199 int subWidth=(i+rfbZRLETileWidth>rw)?rw-i:rfbZRLETileWidth;
/external/mesa3d/src/gallium/targets/egl-static/
H A Degl_pipe.c117 struct radeon_winsys *rw; local
120 rw = radeon_drm_winsys_create(fd);
121 if (!rw)
124 screen = r600_screen_create(rw);
140 struct radeon_winsys *rw; local
143 rw = radeon_drm_winsys_create(fd);
144 if (!rw)
147 screen = radeonsi_screen_create(rw);
/external/blktrace/btreplay/
H A Dbtrecord.h44 * @rw: IO direction: 0 = write, 1 = read
49 __u32 rw; member in struct:io_pkt
/external/jetty/src/java/org/eclipse/jetty/io/
H A DByteArrayBuffer.java427 public CaseInsensitive(byte[] b, int o, int l, int rw) argument
429 super(b,o,l,rw);
/external/blktrace/btt/
H A Diostat.c255 int rw = IOP_RW(iop); local
259 INC_STAT(dip, ios[rw]);
260 ADD_STAT(dip, sec[rw], iop->t.bytes >> 9);
H A Dseek.c45 static FILE *seek_open(char *str, char rw) argument
53 sprintf(oname, "%s_%s_%c.dat", seek_name, str, rw);
254 char rw = IOP_READ(iop) ? 'r' : 'w'; local
260 fprintf(fp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
262 fprintf(sip->cfp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
/external/boringssl/src/ssl/
H A Dd1_pkt.c912 void dtls1_reset_seq_numbers(SSL *s, int rw) { argument
916 if (rw & SSL3_CC_READ) {
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cc66 bool rw, bool recursive, bool linker_init) {
76 s->is_rw = rw;
65 MutexCreate(ThreadState *thr, uptr pc, uptr addr, bool rw, bool recursive, bool linker_init) argument
/external/f2fs-tools/tools/
H A Df2fs_io_parse.c180 int pid, type, rw, len; local
191 rw = atoh(ptr);
201 p->io[type][rw & 0x1] += len;
202 p->total_io[rw & 0x1] += len;
205 total_io[type][rw & 0x1] += len;
/external/fio/
H A Dblktrace.c181 unsigned int bytes, int rw, unsigned long long ttime,
194 if (rw)
264 int rw; local
269 rw = (t->action & BLK_TC_ACT(BLK_TC_WRITE)) != 0;
271 if (t->bytes > bs[rw])
272 bs[rw] = t->bytes;
274 ios[rw]++;
276 store_ipo(td, t->sector, t->bytes, rw, ttime, fileno);
180 store_ipo(struct thread_data *td, unsigned long long offset, unsigned int bytes, int rw, unsigned long long ttime, int fileno) argument
/external/libnfc-nci/src/nfa/p2p/
H A Dnfa_p2p_api.c208 UINT8 rw)
213 P2P_TRACE_API3 ("NFA_P2pAcceptConn (): handle:0x%02X, MIU:%d, RW:%d", handle, miu, rw);
245 p_msg->rw = rw;
382 UINT8 rw)
388 client_handle, p_service_name, miu, rw);
415 p_msg->rw = rw;
443 UINT8 rw)
449 client_handle, dsap, miu, rw);
206 NFA_P2pAcceptConn(tNFA_HANDLE handle, UINT16 miu, UINT8 rw) argument
379 NFA_P2pConnectByName(tNFA_HANDLE client_handle, char *p_service_name, UINT16 miu, UINT8 rw) argument
440 NFA_P2pConnectBySap(tNFA_HANDLE client_handle, UINT8 dsap, UINT16 miu, UINT8 rw) argument
[all...]
/external/libnfc-nxp/inc/
H A DphNfcLlcpTypes.h116 uint8_t rw; member in struct:phFriNfc_LlcpTransport_sSocketOptions
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.h86 struct nouveau_bufctx *ctx, int bin, uint32_t rw)
90 NOUVEAU_BO_LOW | (bo->flags & NOUVEAU_BO_APER) | rw,
84 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, struct nouveau_bo *bo, uint32_t offset, struct nouveau_bufctx *ctx, int bin, uint32_t rw) argument
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dresource.cpp99 resource::bind_surface(clover::command_queue &q, bool rw) { argument
104 info.writable = rw;
/external/dnsmasq/src/
H A Dutil.c490 int read_write(int fd, unsigned char *packet, int size, int rw) argument
497 if (rw)
/external/libnfc-nci/src/nfc/include/
H A Dllcp_api.h59 UINT8 rw; /* Local receiving window */ member in struct:__anon8726
125 UINT8 rw; /* RW of peer device */ member in struct:__anon8728
135 UINT8 rw; /* RW of peer device */ member in struct:__anon8729

Completed in 575 milliseconds

123