Home
last modified time | relevance | path

Searched refs:write (Results 2951 - 2975 of 3775) sorted by relevance

1...<<111112113114115116117118119120>>...151

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_shader.cpp919 ir = new AluInstr(op1_mov, value[i], vf.src(intr->src[0], i), AluInstr::write); in emit_store_scratch()
1174 vf.inline_const(ALU_SRC_TIME_LO, 0), AluInstr::write)); in emit_shader_clock()
1255 ir = new AluInstr(op1_mov, dest, u, AluInstr::write); in load_ubo()
/third_party/node/lib/
H A D_tls_wrap.js597 // `wrap` is a streams.Writable in JS. This empty write will be queued
600 wrap.write('', (err) => {
646 // Invoke `destroySSL` on close to clean up possibly pending write requests
881 process.emitWarning('Failed to write TLS keylog (this warning ' +
981 this.write('');
993 this.write('');
1046 // * 1.2: If destroy() during onocspresponse(), then write of next handshake
H A Dassert.js198 code += decoder.write(buffer.slice(0, bytesRead));
237 const code = decoder.write(buffer.slice(i + 1, bytesRead));
/third_party/node/lib/internal/streams/
H A Dreadable.js275 // similar to how Writable.write() returns true if you should
276 // write() some more.
335 chunk = state.decoder.write(chunk);
399 content += decoder.write(data);
504 // deeply ugly to write APIs this way, but that still doesn't mean
781 // If the user unpiped during `dest.write()`, it is possible
782 // to get stuck in a permanently paused state if that write
787 debug('false write response, pause', 0);
791 debug('false write response, pause', state.awaitDrainWriters.size);
809 const ret = dest.write(chun
[all...]
/third_party/node/deps/v8/tools/
H A Drun_perf.py227 f.write(json.dumps(self.ToDict()))
829 f.write(str(value))
886 f.write(value)
/third_party/nghttp2/src/
H A Dshrpx_worker.cc138 std::get<8>(dkey) = timeout.write; in create_downstream_key()
298 shared_addr->timeout.write = src.timeout.write; in replace_downstream_config()
H A Dshrpx_log.cc206 while (write(lgconf->errorlog_fd, buf, nwrite) == -1 && errno == EINTR) in ~Log()
868 while (write(lgconf->accesslog_fd, buf.data(), nwrite) == -1 && in upstream_accesslog()
/third_party/littlefs/scripts/
H A Dperf.py167 # create a temporary file for perf to write to, as far as I can tell
294 sys.stdout.write(line)
364 sys.stdout.write(line)
570 sys.stdout.write(line)
1071 # write results to CSV
/third_party/python/Lib/asyncio/
H A Dunix_events.py113 # Register a dummy signal handler to ask Python to write the signal
678 def write(self, data): member in _UnixWritePipeTransport
688 'os.write(pipe, data) raised exception.')
695 n = os.write(self._fileno, data)
702 self._fatal_error(exc, 'Fatal write error on pipe transport')
717 n = os.write(self._fileno, self._buffer)
728 self._fatal_error(exc, 'Fatal write error on pipe transport')
764 # write_eof is all what we needed to close the write pipe
813 # support selecting read events on the write end of a
/third_party/python/Lib/
H A Dpickletools.py153 # descriptors could be constructed. If you want, e.g., XML, write a little
1835 The index of the memo location to write into is given by the newline-
1848 The index of the memo location to write into is given by the 1-byte
1860 The index of the memo location to write into is given by the 4-byte
1872 The index of the memo location to write is the number of
2366 out.write(protoheader)
2388 pickler.write(data)
2889 args.output.write(preamble + '\n')
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DWindowsResource.cpp605 std::unique_ptr<MemoryBuffer> write(uint32_t TimeDateStamp);
706 WindowsResourceCOFFWriter::write(uint32_t TimeDateStamp) { in write() function in llvm::object::WindowsResourceCOFFWriter
790 // Now write the .rsrc$02 section. in writeSecondSection()
800 // Now write the symbol table. in writeSymbolTable()
811 // Now write the .rsrc1 symbol + aux. in writeSymbolTable()
830 // Now write the .rsrc2 symbol + aux. in writeSymbolTable()
849 // Now write a symbol for each relocation. in writeSymbolTable()
870 // Traverse parsed resource tree breadth-first and write the corresponding in writeDirectoryTree()
940 // Now write all the resource data entries. in writeDirectoryTree()
955 // Now write th in writeDirectoryStringTable()
[all...]
/third_party/python/Modules/_decimal/tests/
H A Ddeccheck.py925 sys.stdout.write(''.join((fmt, '\n')) % args)
927 sys.stdout.write(''.join((str(fmt), '\n')))
1289 sys.stdout.buffer.write(out + b"\n")
/third_party/rust/crates/nix/src/sys/socket/
H A Daddr.rs556 InetAddr::V4(_) => write!(f, "{}:{}", self.ip(), self.port()), in fmt()
557 InetAddr::V6(_) => write!(f, "[{}]:{}", self.ip(), self.port()), in fmt()
677 write!(fmt, "{}.{}.{}.{}", octets[0], octets[1], octets[2], octets[3]) in fmt()
1318 write!( in fmt()
2401 write!(f, "pid: {} groups: {}", self.pid(), self.groups()) in fmt()
2514 write!( in fmt()
2694 write!(f, "{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}", in fmt()
2818 write!(f, "{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}", in fmt()
2947 write!(f, "cid: {} port: {}", self.cid(), self.port()) in fmt()
/third_party/curl/tests/server/
H A Dtftpd.c314 * init for either read-ahead or write-behind.
315 * zero for write-behind, one for read-head.
330 return rw_init(0); /* write-behind */ in w_init()
424 bfs[current].counter = ct; /* set size of data to write */ in writeit()
477 return write(test->ofile, writebuf, count); in write_behind()
493 if(1 != write(test->ofile, &c, 1)) in write_behind()
1196 logmsg("write"); in sendtftp()
1198 logmsg("write: fail"); in sendtftp()
1268 logmsg("write"); in recvtftp()
1270 logmsg("write in recvtftp()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dcelt_pvq_search.asm19 ;* License along with FFmpeg; if not, write to the Free Software
182 ; could cause a stall due to breaking write forwarding.
H A Dxvididct.asm64 ; along with FFmpeg; if not, write to the Free Software Foundation,
291 ; and now write remainder of first half
/third_party/backends/backend/
H A Ddc210.c42 If you write modifications of your own for SANE, it is your choice
295 if (write (fd, (char *) pck, 8) != 8) in send_pck()
297 DBG (2, "send_pck: error: write returned -1\n"); in send_pck()
339 DBG (2, "init_dc210: error: could not open %s for read/write\n", in init_dc210()
569 if (write (fd, (char *) &c, 1) != 1) in read_data()
571 DBG (2, "read_data: error: write ack\n"); in read_data()
/third_party/cups-filters/filter/
H A Dgstoraster.c444 fprintf(stderr, "ERROR: Unable to set \"close on exec\" flag on write end of the pipe for Ghostscript call\n"); in gs_spawn()
474 count = write(fds[1], buf, n); in gs_spawn()
479 fprintf(stderr, "ERROR: write failed: %s\n", strerror(errno)); in gs_spawn()
657 /* Ignore SIGPIPE and have write return an error instead */ in main()
707 if (write(fd,buf,n) != n) { in main()
/third_party/cups-filters/filter/pdftopdf/
H A Dqpdf_pdftopdf_processor.cc729 out.write(); in emitFile()
752 out.write(); in emitFilename()
/third_party/ltp/
H A Drunltp17 ## along with this program; if not, write to the Free Software ##
126 [NUM_PROCS = no. of processes creating Storage Load by spinning over write()]
128 [NUM_BYTES = write these many bytes (defaults to 1GB, when value 0 or undefined)]
537 # write to it as user nobody
552 # write to it as user nobody
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qpu_schedule.c99 bool write) in add_dep()
101 bool write_after_read = !write && state->dir == R; in add_dep()
594 * with the first tile-buffer read or write instruction." in choose_instruction_to_schedule()
970 * handle A/B register file write latency) in schedule_instructions()
96 add_dep(struct schedule_state *state, struct schedule_node *before, struct schedule_node *after, bool write) add_dep() argument
/third_party/node/deps/v8/tools/release/
H A Dcommon_includes.py72 f.write(text)
77 f.write(text)
732 help="File to write results summary to.")
/third_party/node/deps/v8/third_party/jinja2/
H A Denvironment.py754 f.write(data)
1316 fp.write(item)
/third_party/node/test/common/
H A Dwpt.js88 write() {
698 this.report?.write();
/third_party/node/tools/inspector_protocol/jinja2/
H A Denvironment.py691 f.write(data)
1230 fp.write(item)

Completed in 39 milliseconds

1...<<111112113114115116117118119120>>...151