/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_sched_gm107.h | 17 } rd, wr; member 29 wr.r[i] += delta; in rebase() 33 wr.p[i] += delta; in rebase() 36 wr.c += delta; in rebase() 41 memset(&wr, 0, sizeof(wr)); in wipe() 62 return getLatest(wr); in getLatestWr() 72 wr.r[i] = MAX2(wr.r[i], that->wr in setMax() [all...] |
/third_party/node/deps/openssl/openssl/crypto/ripemd/asm/ |
H A D | rmd-586.pl | 48 @wr=( 5,14, 7, 0, 9, 2,11, 4,13, 6,15, 8, 1,10, 3,12, 456 &RIP5($A,$B,$C,$D,$E,$wr[ 0],$sr[ 0],$KR0,-2); 457 &RIP5($E,$A,$B,$C,$D,$wr[ 1],$sr[ 1],$KR0,0); 458 &RIP5($D,$E,$A,$B,$C,$wr[ 2],$sr[ 2],$KR0,0); 459 &RIP5($C,$D,$E,$A,$B,$wr[ 3],$sr[ 3],$KR0,0); 460 &RIP5($B,$C,$D,$E,$A,$wr[ 4],$sr[ 4],$KR0,0); 461 &RIP5($A,$B,$C,$D,$E,$wr[ 5],$sr[ 5],$KR0,0); 462 &RIP5($E,$A,$B,$C,$D,$wr[ 6],$sr[ 6],$KR0,0); 463 &RIP5($D,$E,$A,$B,$C,$wr[ 7],$sr[ 7],$KR0,0); 464 &RIP5($C,$D,$E,$A,$B,$wr[ [all...] |
/third_party/openssl/crypto/ripemd/asm/ |
H A D | rmd-586.pl | 48 @wr=( 5,14, 7, 0, 9, 2,11, 4,13, 6,15, 8, 1,10, 3,12, 456 &RIP5($A,$B,$C,$D,$E,$wr[ 0],$sr[ 0],$KR0,-2); 457 &RIP5($E,$A,$B,$C,$D,$wr[ 1],$sr[ 1],$KR0,0); 458 &RIP5($D,$E,$A,$B,$C,$wr[ 2],$sr[ 2],$KR0,0); 459 &RIP5($C,$D,$E,$A,$B,$wr[ 3],$sr[ 3],$KR0,0); 460 &RIP5($B,$C,$D,$E,$A,$wr[ 4],$sr[ 4],$KR0,0); 461 &RIP5($A,$B,$C,$D,$E,$wr[ 5],$sr[ 5],$KR0,0); 462 &RIP5($E,$A,$B,$C,$D,$wr[ 6],$sr[ 6],$KR0,0); 463 &RIP5($D,$E,$A,$B,$C,$wr[ 7],$sr[ 7],$KR0,0); 464 &RIP5($C,$D,$E,$A,$B,$wr[ [all...] |
/third_party/skia/tests/ |
H A D | WindowRectanglesTest.cpp | 27 GrWindowRectangles wr; in DEF_TEST() local 29 REPORTER_ASSERT(reporter, wr.count() == i); in DEF_TEST() 30 REPORTER_ASSERT(reporter, !memcmp(wr.data(), windowData, i * sizeof(SkIRect))); in DEF_TEST() 32 GrWindowRectangles wr2(wr); in DEF_TEST() 33 REPORTER_ASSERT(reporter, wr2 == wr); in DEF_TEST() 34 REPORTER_ASSERT(reporter, wr2.count() == wr.count()); in DEF_TEST() 35 REPORTER_ASSERT(reporter, !memcmp(wr2.data(), wr.data(), i * sizeof(SkIRect))); in DEF_TEST() 37 wr.addWindow(windowData[i]); in DEF_TEST() 40 SkASSERT(wr.count() == GrWindowRectangles::kMaxWindows - 1); in DEF_TEST() 42 GrWindowRectangles A(wr), in DEF_TEST() [all...] |
/third_party/python/Lib/test/ |
H A D | test_selectors.py | 59 rd, wr = socketpair() 61 self.addCleanup(wr.close) 62 return rd, wr 68 rd, wr = self.make_socketpair() 94 rd, wr = self.make_socketpair() 108 rd, wr = self.make_socketpair() 109 r, w = rd.fileno(), wr.fileno() 113 wr.close() 121 rd, wr = self.make_socketpair() 122 r, w = rd.fileno(), wr [all...] |
H A D | test_finalization.py | 172 wr = weakref.ref(s) 177 self.assertIs(wr(), None) 186 wr = weakref.ref(s) 191 self.assertIsNot(wr(), None) 196 self.assertIs(wr(), None) 263 wr = weakref.ref(s) 268 self.assertIs(wr(), None) 278 wr = weakref.ref(s) 284 self.assertIs(wr(), None) 291 self.assertIs(wr(), Non [all...] |
H A D | _test_eintr.py | 117 rd, wr = os.pipe() 119 # wr closed explicitly by parent 128 'wr = int(sys.argv[1])', 135 ' os.write(wr, data)', 138 proc = self.subprocess(code, str(wr), pass_fds=[wr]) 140 os.close(wr) 146 rd, wr = os.pipe() 147 self.addCleanup(os.close, wr) 180 written += os.write(wr, memoryvie [all...] |
H A D | test_devpoll.py | 39 rd, wr = os.pipe() 42 p.register(wr, select.POLLOUT) 44 writers.append(wr) 45 r2w[rd] = wr 46 w2r[wr] = rd 55 wr = random.choice(ready_writers) 56 os.write(wr, MSG) 62 self.assertEqual([w2r[wr]], ready_readers)
|
H A D | test_poll.py | 48 rd, wr = os.pipe() 51 p.register(wr, select.POLLOUT) 53 writers.append(wr) 54 r2w[rd] = wr 55 w2r[wr] = rd 64 wr = random.choice(ready_writers) 65 os.write(wr, MSG)
|
/third_party/rust/crates/nix/test/ |
H A D | test_sendfile.rs | 24 let (rd, wr) = pipe().unwrap(); in test_sendfile_linux() 26 let res = sendfile(wr, tmp.as_raw_fd(), Some(&mut offset), 2).unwrap(); in test_sendfile_linux() 36 close(wr).unwrap(); in test_sendfile_linux() 46 let (rd, wr) = pipe().unwrap(); in test_sendfile64_linux() 48 let res = sendfile64(wr, tmp.as_raw_fd(), Some(&mut offset), 2).unwrap(); in test_sendfile64_linux() 58 close(wr).unwrap(); in test_sendfile64_linux() 82 let (mut rd, wr) = UnixStream::pair().unwrap(); in test_sendfile_freebsd() 87 wr.as_raw_fd(), in test_sendfile_freebsd() 96 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_freebsd() 133 let (mut rd, wr) in test_sendfile_dragonfly() [all...] |
/third_party/mesa3d/src/nouveau/codegen/lib/ |
H A D | gm107.asm | 14 sched (st 0xd wr 0x0 wt 0x3f) (st 0x1 wt 0x1) (st 0x6) 18 sched (st 0x1) (st 0xf wr 0x0) (st 0x6 wr 0x0 wt 0x1) 22 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) 26 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) 30 sched (st 0x6 wr [all...] |
/third_party/libuv/src/win/ |
H A D | tty.c | 270 tty->tty.wr.utf8_bytes_left = 0; in uv_tty_init() 271 tty->tty.wr.utf8_codepoint = 0; in uv_tty_init() 274 tty->tty.wr.previous_eol = 0; in uv_tty_init() 277 tty->tty.wr.ansi_parser_state = ANSI_NORMAL; in uv_tty_init() 1393 unsigned short argc = handle->tty.wr.ansi_csi_argc; in uv__tty_set_style() 1394 unsigned short* argv = handle->tty.wr.ansi_csi_argv; in uv__tty_set_style() 1563 handle->tty.wr.saved_position.X = info.dwCursorPosition.X; in uv__tty_save_state() 1564 handle->tty.wr.saved_position.Y = info.dwCursorPosition.Y - in uv__tty_save_state() 1569 handle->tty.wr.saved_attributes = info.wAttributes & in uv__tty_save_state() 1589 handle->tty.wr in uv__tty_restore_state() [all...] |
/third_party/node/deps/uv/src/win/ |
H A D | tty.c | 275 tty->tty.wr.utf8_bytes_left = 0; in uv_tty_init() 276 tty->tty.wr.utf8_codepoint = 0; in uv_tty_init() 279 tty->tty.wr.previous_eol = 0; in uv_tty_init() 282 tty->tty.wr.ansi_parser_state = ANSI_NORMAL; in uv_tty_init() 1404 unsigned short argc = handle->tty.wr.ansi_csi_argc; in uv__tty_set_style() 1405 unsigned short* argv = handle->tty.wr.ansi_csi_argv; in uv__tty_set_style() 1574 handle->tty.wr.saved_position.X = info.dwCursorPosition.X; in uv__tty_save_state() 1575 handle->tty.wr.saved_position.Y = info.dwCursorPosition.Y - in uv__tty_save_state() 1580 handle->tty.wr.saved_attributes = info.wAttributes & in uv__tty_save_state() 1600 handle->tty.wr in uv__tty_restore_state() [all...] |
/third_party/python/Lib/ |
H A D | weakref.py | 8 # Naming convention: Variables named "wr" are weak reference objects; 105 def remove(wr, selfref=ref(self), _atomic_removal=_remove_dead_weakref): 109 self._pending_removals.append(wr.key) 113 _atomic_removal(self.data, wr.key) 174 for key, wr in self.data.items(): 175 o = wr() 188 for key, wr in self.data.items(): 189 o = wr() 198 wr = self.data[key] 202 o = wr() [all...] |
/third_party/node/deps/openssl/openssl/ssl/record/ |
H A D | rec_layer_d1.c | 799 SSL3_RECORD wr; in do_dtls1_write() local 853 SSL3_RECORD_set_type(&wr, type); in do_dtls1_write() 895 SSL3_RECORD_set_data(&wr, p + eivlen); /* make room for IV in case of CBC */ in do_dtls1_write() 896 SSL3_RECORD_set_length(&wr, len); in do_dtls1_write() 897 SSL3_RECORD_set_input(&wr, (unsigned char *)buf); in do_dtls1_write() 900 * we now 'read' from wr.input, wr.length bytes into wr.data in do_dtls1_write() 905 if (!ssl3_do_compress(s, &wr)) { in do_dtls1_write() 910 memcpy(SSL3_RECORD_get_data(&wr), SSL3_RECORD_get_inpu in do_dtls1_write() [all...] |
/third_party/openssl/ssl/record/ |
H A D | rec_layer_d1.c | 799 SSL3_RECORD wr; in do_dtls1_write() local 853 SSL3_RECORD_set_type(&wr, type); in do_dtls1_write() 895 SSL3_RECORD_set_data(&wr, p + eivlen); /* make room for IV in case of CBC */ in do_dtls1_write() 896 SSL3_RECORD_set_length(&wr, len); in do_dtls1_write() 897 SSL3_RECORD_set_input(&wr, (unsigned char *)buf); in do_dtls1_write() 900 * we now 'read' from wr.input, wr.length bytes into wr.data in do_dtls1_write() 905 if (!ssl3_do_compress(s, &wr)) { in do_dtls1_write() 910 memcpy(SSL3_RECORD_get_data(&wr), SSL3_RECORD_get_inpu in do_dtls1_write() [all...] |
/third_party/libuv/test/ |
H A D | echo-server.c | 50 write_req_t* wr; in after_write() local 53 wr = (write_req_t*) req; in after_write() 54 free(wr->buf.base); in after_write() 55 free(wr); in after_write() 84 write_req_t *wr; in after_read() local 135 wr = (write_req_t*) malloc(sizeof *wr); in after_read() 136 ASSERT_NOT_NULL(wr); in after_read() 137 wr->buf = uv_buf_init(buf->base, nread); in after_read() 139 if (uv_write(&wr in after_read() [all...] |
/third_party/curl/tests/libtest/ |
H A D | lib564.c | 60 fd_set rd, wr, exc; in test() local 74 FD_ZERO(&wr); in test() 77 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 81 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib504.c | 44 fd_set rd, wr, exc; in test() local 91 FD_ZERO(&wr); in test() 96 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 100 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib503.c | 67 fd_set rd, wr, exc; in test() local 81 FD_ZERO(&wr); in test() 84 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 88 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib533.c | 62 fd_set rd, wr, exc; in test() local 93 FD_ZERO(&wr); in test() 96 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 100 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib1506.c | 96 fd_set rd, wr, exc; in test() local 110 FD_ZERO(&wr); in test() 113 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 117 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib526.c | 88 fd_set rd, wr, exc; in test() local 131 FD_ZERO(&wr); in test() 134 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 138 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib525.c | 116 fd_set rd, wr, exc; in test() local 130 FD_ZERO(&wr); in test() 133 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 137 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|
H A D | lib2502.c | 98 fd_set rd, wr, exc; in test() local 112 FD_ZERO(&wr); in test() 115 multi_fdset(m, &rd, &wr, &exc, &maxfd); in test() 119 select_test(maxfd + 1, &rd, &wr, &exc, &interval); in test()
|