HomeSort by relevance Sort by last modified time
    Searched defs:Write (Results 401 - 425 of 714) sorted by null

<<11121314151617181920>>

  /external/puffin/src/
puffin_stream.cc 329 bool PuffinStream::Write(const void* buffer, size_t count) {
345 TEST_AND_RETURN_FALSE(stream_->Write(bytes + bytes_wrote, copy_len));
383 // Write last byte if it has any.
401 // byte, then we cannot write into output until we have huffed the
403 // we won't write it out.
408 // Write |deflate_buffer_| into output.
410 stream_->Write(deflate_buffer_->data(), bytes_to_write));
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTBoneBatch.cpp 226 @Function Write
232 void Write(
578 // Write pnBatches, pnBatchBoneCnt and pnBatchOffset for this batch.
579 iBatch->Write(&pnBatches[nBatchCnt * nBatchBoneMax], &pnBatchBoneCnt[nBatchCnt]);
  /external/syslinux/efi32/include/efi/
efiser.h 125 EFI_SERIAL_WRITE Write;
  /external/syslinux/efi32/include/efi/protocol/
efidbg.h 156 EFI_DEBUGPORT_IO_WRITE Write;
  /external/syslinux/efi64/include/efi/
efiser.h 125 EFI_SERIAL_WRITE Write;
  /external/syslinux/efi64/include/efi/protocol/
efidbg.h 156 EFI_DEBUGPORT_IO_WRITE Write;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiser.h 125 EFI_SERIAL_WRITE Write;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/protocol/
efidbg.h 156 EFI_DEBUGPORT_IO_WRITE Write;
  /external/v8/src/interpreter/
bytecode-array-writer.cc 56 void BytecodeArrayWriter::Write(BytecodeNode* node) {
mkpeephole.cc 44 void Write(std::ostream& os);
238 void PeepholeActionTableWriter::Write(std::ostream& os) {
376 writer.Write(ofs);
  /external/webrtc/talk/media/base/
videoframe.cc 45 rtc::StreamResult VideoFrame::Write(rtc::StreamInterface* stream,
52 return result; // Nothing to write.
61 // Write Y.
63 result = stream->Write(src_y + row * y_pitch, width, NULL, error);
68 // Write U.
70 result = stream->Write(src_u + row * u_pitch, half_width, NULL, error);
75 // Write V.
77 result = stream->Write(src_v + row * v_pitch, half_width, NULL, error);
  /external/webrtc/webrtc/base/
filerotatingstream.cc 21 // Note: We use std::cerr for logging in the write paths of this stream to avoid
143 StreamResult FileRotatingStream::Write(const void* data,
151 std::cerr << "Open() must be called before Write." << std::endl;
154 // Write as much as will fit in to the current file.
162 StreamResult result = file_stream_->Write(data, write_length, written, error);
211 // Delete existing files when opening for write.
  /external/webrtc/webrtc/libjingle/xmpp/
hangoutpubsubclient.cc 34 virtual XmlElement* Write(const QName& state_name, const bool& state) {
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc_manager_direct.cc 98 void Write(const int16_t* data, size_t length_samples) {
109 void Write(const int16_t* data, size_t length_samples) {
197 file_preproc_->Write(audio, length);
254 file_postproc_->Write(audio, length);
  /external/webrtc/webrtc/p2p/base/
dtlstransportchannel.cc 66 rtc::StreamResult StreamInterfaceChannel::Write(const void* data,
84 RTC_CHECK(ret) << "Failed to write packet to queue.";
417 // ignore write errors, thus any errors must be because of
  /frameworks/native/libs/vr/libpdx/
service.cpp 144 Status<size_t> Message::Write(const void* buffer, size_t length) {
145 PDX_TRACE_NAME("Message::Write");
619 message.Write(response.data(), response_size);
  /prebuilts/go/darwin-x86/src/bufio/
bufio.go 34 r, w int // buf read and write positions
504 var errNegativeWrite = errors.New("bufio: writer returned negative count from Write")
508 n, err := w.Write(b.buf[b.r:b.w])
558 // resets b to write its output to w.
573 n, err := b.wr.Write(b.buf[0:b.n])
595 // Write writes the contents of p into the buffer.
598 // why the write is short.
599 func (b *Writer) Write(p []byte) (nn int, err error) {
603 // Large write, empty buffer.
604 // Write directly from p to avoid copy
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 15 // A Buffer is a variable-sized buffer of bytes with Read and Write methods.
19 off int // read at &buf[off], write at &buf[len(buf)]
52 // only until the next call to a method like Read, Write, Reset, or Truncate).
167 // Write appends the contents of p to the buffer, growing the buffer as
169 // buffer becomes too large, Write will panic with ErrTooLarge.
170 func (b *Buffer) Write(p []byte) (n int, err error) {
236 // encountered during the write is also returned.
240 m, e := w.Write(b.buf[b.off:])
242 panic("bytes.Buffer.WriteTo: invalid Write count")
250 // Write method in io.Write
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/trace/
trace.go 38 w.Write([]byte(html))
257 func (cw *countingWriter) Write(data []byte) (int, error) {
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 545 func (d *compressor) write(b []byte) (n int, err error) { func
695 func (w *dictWriter) Write(b []byte) (n int, err error) {
696 return w.w.Write(b)
706 // Write writes data to w, which will eventually write the
708 func (w *Writer) Write(data []byte) (n int, err error) {
709 return w.d.write(data)
  /prebuilts/go/darwin-x86/src/crypto/sha512/
sha512.go 262 func (d *digest) Write(p []byte) (nn int, err error) {
308 d.Write(tmp[0 : 112-len%128])
310 d.Write(tmp[0 : 128+112-len%128])
318 d.Write(tmp[0:16])
348 d.Write(data)
356 d.Write(data)
366 d.Write(data)
376 d.Write(data)
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn.go 103 // in Conn.Write.
123 // SetDeadline sets the read and write deadlines associated with the connection.
124 // A zero value for t means Read and Write will not time out.
125 // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
136 // SetWriteDeadline sets the write deadline on the underlying connection.
137 // A zero value for t means Write will not time out.
138 // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
341 // affect the subsequent write.
729 c.hand.Write(data)
848 func (c *Conn) write(data []byte) (int, error) func
    [all...]
handshake_client_test.go 81 const opensslEndOfHandshake = "SSL_accept:SSLv3/TLS write finished"
83 func (o *opensslOutputSink) Write(data []byte) (n int, err error) {
103 n, err := w.Write(o.all)
279 func (test *clientTest) run(t *testing.T, write bool) {
288 if write {
311 if _, err := client.Write([]byte("hello\n")); err != nil {
312 t.Errorf("Client.Write failed: %s", err)
319 if i == 1 && write {
329 // finally, have OpenSSL write something to cause
331 if write {
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
encode.go 35 // encBuffer is an extremely simple, fast implementation of a write-only byte buffer.
36 // It never returns a non-nil error, but Write returns an error value so it matches io.Writer.
54 func (e *encBuffer) Write(p []byte) (int, error) {
117 state.b.Write(state.buf[bc : uint64Size+1])
245 state.b.Write(b)
418 data.Write(spaceForLength)
490 state.b.Write(data)
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml_test.go 708 // Writer whose Write method always returns an error.
711 func (errWriter) Write(p []byte) (n int, err error) { return 0, fmt.Errorf("unwritable") }

Completed in 803 milliseconds

<<11121314151617181920>>