HomeSort by relevance Sort by last modified time
    Searched refs:wr (Results 151 - 175 of 390) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_memoryview.py 228 wr = weakref.ref(o)
232 self.assertTrue(wr() is None, wr())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_memoryview.py 228 wr = weakref.ref(o)
232 self.assertTrue(wr() is None, wr())
  /bionic/libc/kernel/uapi/rdma/
vmw_pvrdma-abi.h 214 } wr; member in struct:pvrdma_sq_wqe_hdr
  /external/autotest/site_utils/
log_socket_server.py 101 rd, wr, ex = select.select([self.socket.fileno()], [], [],
  /external/kernel-headers/original/uapi/rdma/
vmw_pvrdma-abi.h 215 __u64 wr_id; /* wr id */
223 __u64 wr_id; /* wr id */
227 __u32 send_flags; /* wr flags */
269 } wr; member in struct:pvrdma_sq_wqe_hdr
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_weakrefset.py 70 wr = ref(item)
73 return wr in self.data
  /external/ltp/utils/ffsb-6.0-rc2/
ffsb_tg.c 168 void tg_set_write_random(ffsb_tg_t * tg, int wr)
170 tg->write_random = wr;
  /prebuilts/go/darwin-x86/src/text/template/
exec.go 29 wr io.Writer
149 // to the specified data object and writes the output to wr.
155 func (t *Template) ExecuteTemplate(wr io.Writer, name string, data interface{}) error {
163 return tmpl.Execute(wr, data)
167 // and writes the output to wr.
176 func (t *Template) Execute(wr io.Writer, data interface{}) error {
177 return t.execute(wr, data)
180 func (t *Template) execute(wr io.Writer, data interface{}) (err error) {
188 wr: wr,
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
exec.go 29 wr io.Writer
149 // to the specified data object and writes the output to wr.
155 func (t *Template) ExecuteTemplate(wr io.Writer, name string, data interface{}) error {
163 return tmpl.Execute(wr, data)
167 // and writes the output to wr.
176 func (t *Template) Execute(wr io.Writer, data interface{}) error {
177 return t.execute(wr, data)
180 func (t *Template) execute(wr io.Writer, data interface{}) (err error) {
188 wr: wr,
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
response_test.go 634 var wr io.Writer = &buf
636 wr = internal.NewChunkedWriter(wr)
640 wr = gzip.NewWriter(wr)
651 wr.Write(chunk)
654 err := wr.(*gzip.Writer).Close()
h2_bundle.go     [all...]
  /prebuilts/go/linux-x86/src/net/http/
response_test.go 634 var wr io.Writer = &buf
636 wr = internal.NewChunkedWriter(wr)
640 wr = gzip.NewWriter(wr)
651 wr.Write(chunk)
654 err := wr.(*gzip.Writer).Close()
h2_bundle.go     [all...]
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 1608 PyObject *str, *wr; local
1703 PyObject *wr; local
    [all...]
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_memory_manager.cc 575 ibv_send_wr wr = {}; local
576 wr.opcode = IBV_WR_RDMA_WRITE_WITH_IMM;
577 wr.imm_data = htonl(remote_mr.tensor_key());
578 wr.send_flags = IBV_SEND_SIGNALED;
580 if (ibv_post_send(id->qp, &wr, &bad_wr)) {
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 869 float wr = 0.2126, wg = 0.7152, wb = 0.0722; // ITU709 recommended constants local
872 float y = wr * r + wg * g + wb * b;
874 float v = 0.5 * ((r - y) / (1.0 - wr)) + 0.5;
897 // v = 0.5 * ((r -y) / (1.0 - wr)) + 0.5
898 // 0.5 * ((r - y) / (1.0 - wr)) = v - 0.5
899 // (r - y) / (1.0 - wr) = 2 * (v - 0.5)
900 // r - y = 2 * (v - 0.5) * (1.0 - wr)
901 // r = 2 * (v - 0.5) * (1.0 - wr) + y
903 // y = wr * r + wg * g + wb * b
904 // wr * r + wg * g + wb * b =
    [all...]
  /libcore/ojluni/src/main/native/
net_util_md.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_gc.py 32 self.wr = weakref.ref(C1055820(666), it_happened)
454 ouch[:] = [wr() for wr in WRs]
499 # The callback gets associated with a wr on an object in generation 2.
511 # c0 has a wr with callback, which references c2wr
519 # ^->c1 ^->c2 has a wr but no callback
529 # and c0's wr callback triggers. That in turn materializes a reference
587 # ^->c1 ^->c2 has a wr but no callback
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJDecompressor.java 767 WritableRaster wr = dstImage.getRaster(); local
    [all...]
  /external/python/cpython2/Lib/test/
test_gc.py 38 self.wr = weakref.ref(C1055820(666), it_happened)
519 ouch[:] = [wr() for wr in WRs]
564 # The callback gets associated with a wr on an object in generation 2.
576 # c0 has a wr with callback, which references c2wr
584 # ^->c1 ^->c2 has a wr but no callback
594 # and c0's wr callback triggers. That in turn materializes a reference
652 # ^->c1 ^->c2 has a wr but no callback
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gc.py 38 self.wr = weakref.ref(C1055820(666), it_happened)
523 ouch[:] = [wr() for wr in WRs]
568 # The callback gets associated with a wr on an object in generation 2.
580 # c0 has a wr with callback, which references c2wr
588 # ^->c1 ^->c2 has a wr but no callback
598 # and c0's wr callback triggers. That in turn materializes a reference
656 # ^->c1 ^->c2 has a wr but no callback
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gc.py 38 self.wr = weakref.ref(C1055820(666), it_happened)
523 ouch[:] = [wr() for wr in WRs]
568 # The callback gets associated with a wr on an object in generation 2.
580 # c0 has a wr with callback, which references c2wr
588 # ^->c1 ^->c2 has a wr but no callback
598 # and c0's wr callback triggers. That in turn materializes a reference
656 # ^->c1 ^->c2 has a wr but no callback
  /prebuilts/go/darwin-x86/src/bufio/
bufio.go 528 wr io.Writer
545 wr: w,
562 b.wr = w
573 n, err := b.wr.Write(b.buf[0:b.n])
605 n, b.err = b.wr.Write(p)
690 if w, ok := b.wr.(io.ReaderFrom); ok {
  /prebuilts/go/darwin-x86/src/html/template/
template.go 112 // writing the output to wr.
118 func (t *Template) Execute(wr io.Writer, data interface{}) error {
122 return t.text.Execute(wr, data)
126 // name to the specified data object and writes the output to wr.
132 func (t *Template) ExecuteTemplate(wr io.Writer, name string, data interface{}) error {
137 return tmpl.text.Execute(wr, data)
  /prebuilts/go/linux-x86/src/bufio/
bufio.go 528 wr io.Writer
545 wr: w,
562 b.wr = w
573 n, err := b.wr.Write(b.buf[0:b.n])
605 n, b.err = b.wr.Write(p)
690 if w, ok := b.wr.(io.ReaderFrom); ok {

Completed in 8554 milliseconds

1 2 3 4 5 67 8 91011>>