| /third_party/libwebsockets/minimal-examples/crypto/minimal-crypto-cose-key/ |
| H A D | main.c | 74 write(fdout, dump, l); in cose_key_dump() 78 write(fdout, dump, l); in cose_key_dump() 82 write(fdout, hex, strlen(hex)); in cose_key_dump() 83 write(fdout, "\n", 1); in cose_key_dump() 95 write(fdout, dump, l); in cose_key_dump() 99 write(fdout, dump, l); in cose_key_dump() 103 write(fdout, hex, strlen(hex)); in cose_key_dump() 104 write(fdout, "\n", 1); in cose_key_dump() 293 write(fdout, ktmp, lec.used); in main()
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
| H A D | vkBuilderUtil.hpp | 159 DescriptorSetUpdateBuilder& write (VkDescriptorSet destSet, 188 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, 1u, descriptorType, pImageInfo, DE_NULL, DE_NULL); in writeSingle() 196 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, 1u, descriptorType, DE_NULL, pBufferInfo, DE_NULL); in writeSingle() 204 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, 1u, descriptorType, DE_NULL, DE_NULL, pTexelBufferView); in writeSingle() 213 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, 1u, descriptorType, DE_NULL, DE_NULL, DE_NULL, pAccelerationStructure); in writeSingle() 223 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, numDescriptors, descriptorType, pImageInfo, DE_NULL, DE_NULL); in writeArray() 232 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, numDescriptors, descriptorType, DE_NULL, pBufferInfo, DE_NULL); in writeArray() 241 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, numDescriptors, descriptorType, DE_NULL, DE_NULL, pTexelBufferView); in writeArray() 251 return write(destSet, destLocation.m_binding, destLocation.m_arrayElement, numDescriptors, descriptorType, DE_NULL, DE_NULL, DE_NULL, pAccelerationStructure); in writeArray()
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | CodedOutputStream.java | 51 * <p>This class contains two kinds of methods: methods that write specific protocol message 53 * write low-level values (e.g. {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are 73 * Returns the buffer size to efficiently write dataLength bytes to this CodedOutputStream. Used 76 * @return the buffer size to efficiently write dataLength bytes to this CodedOutputStream. 228 /** Encode and write a tag. */ 317 * Write a {@code bytes} field, including tag, to the stream. This method will write all content 321 * you only want to write the remaining bytes of a ByteBuffer, you can call {@code 329 write(value); in writeRawByte() 334 write((byte) value); in writeRawByte() 339 write(valu in writeRawBytes() 484 public abstract void write(byte value) throws IOException; write() method in CodedOutputStream 488 public abstract void write(byte[] value, int offset, int length) throws IOException; write() method in CodedOutputStream 495 public abstract void write(ByteBuffer value) throws IOException; write() method in CodedOutputStream 1316 public final void write(byte value) throws IOException { write() method in CodedOutputStream.ArrayEncoder 1444 public final void write(byte[] value, int offset, int length) throws IOException { write() method in CodedOutputStream.ArrayEncoder 1460 public final void write(ByteBuffer value) throws IOException { write() method in CodedOutputStream.ArrayEncoder 1682 public void write(byte value) throws IOException { write() method in CodedOutputStream.SafeDirectNioEncoder 1776 public void write(byte[] value, int offset, int length) throws IOException { write() method in CodedOutputStream.SafeDirectNioEncoder 1792 public void write(ByteBuffer value) throws IOException { write() method in CodedOutputStream.SafeDirectNioEncoder 2012 public void write(byte value) throws IOException { write() method in CodedOutputStream.UnsafeDirectNioEncoder 2122 public void write(byte[] value, int offset, int length) throws IOException { write() method in CodedOutputStream.UnsafeDirectNioEncoder 2145 public void write(ByteBuffer value) throws IOException { write() method in CodedOutputStream.UnsafeDirectNioEncoder 2551 public void write(byte value) throws IOException { write() method in CodedOutputStream.ByteOutputEncoder 2663 public void write(byte[] value, int offset, int length) throws IOException { write() method in CodedOutputStream.ByteOutputEncoder 2677 public void write(ByteBuffer value) throws IOException { write() method in CodedOutputStream.ByteOutputEncoder 2865 public void write(byte value) throws IOException { write() method in CodedOutputStream.OutputStreamEncoder 2979 public void write(byte[] value, int offset, int length) throws IOException { write() method in CodedOutputStream.OutputStreamEncoder 3017 public void write(ByteBuffer value) throws IOException { write() method in CodedOutputStream.OutputStreamEncoder [all...] |
| /third_party/alsa-lib/test/ |
| H A D | rawmidi.c | 234 ch=0x90; write(fd_out,&ch,1); in main() 235 ch=60; write(fd_out,&ch,1); in main() 236 ch=100; write(fd_out,&ch,1); in main() 238 ch=0x90; write(fd_out,&ch,1); in main() 239 ch=60; write(fd_out,&ch,1); in main() 240 ch=0; write(fd_out,&ch,1); in main() 265 write(fd_out,&ch,1); in main()
|
| /third_party/libsnd/tests/ |
| H A D | win32_test.c | 15 ** along with this program; if not, write to the Free Software 116 printf ("0) Create a file, write %d bytes and close it.\n", SIGNED_SIZEOF (data)) ; in show_fstat_error() 123 assert (write (fd, data, sizeof (data)) > 0) ; in show_fstat_error() 126 printf ("1) Re-open file in read/write mode and write another %d bytes at the end.\n", SIGNED_SIZEOF (data)) ; in show_fstat_error() 134 assert (write (fd, data, sizeof (data)) > 0) ; in show_fstat_error() 176 printf ("0) Create a file, write %d bytes and close it.\n", SIGNED_SIZEOF (data)) ; in show_lseek_error() 183 assert (write (fd, data, sizeof (data)) > 0) ; in show_lseek_error() 186 printf ("1) Re-open file in read/write mode and write anothe in show_lseek_error() [all...] |
| /third_party/rust/crates/bindgen/csmith-fuzzing/ |
| H A D | driver.py | 86 sys.stdout.write("+") 87 sys.stdout.write(line) 88 sys.stdout.write("\n") 90 sys.stderr.write("+") 91 sys.stderr.write(line) 92 sys.stderr.write("\n") 206 p.write(predicate)
|
| /third_party/python/Lib/ |
| H A D | xdrlib.py | 66 self.__buf.write(struct.pack('>L', x)) 70 self.__buf.write(struct.pack('>l', x)) 75 if x: self.__buf.write(b'\0\0\0\1') 76 else: self.__buf.write(b'\0\0\0\0') 92 self.__buf.write(struct.pack('>f', x)) 96 self.__buf.write(struct.pack('>d', x)) 104 self.__buf.write(data)
|
| /third_party/node/test/parallel/ |
| H A D | test-http-1.0.js | 43 c.write(request_generator()); 94 res.write('Hello, '); res._send(''); 95 res.write('world!'); res._send(''); 130 res.write('Hello, '); res._send(''); 131 res.write('world!'); res._send('');
|
| H A D | test-file-write-stream2.js | 32 const filepath = path.join(tmpdir.path, 'write.txt'); 36 const cb_expected = 'write open drain write drain close '; 83 console.error('drain=1, write again'); 85 console.error(`ondrain write ret= ${file.write(EXPECTED)}`); 86 cb_occurred += 'write '; 97 file.write('should not work anymore', (err) => { 98 assert.ok(err.message.includes('write after end')); 103 const ret = file.write(Strin [all...] |
| H A D | test-http-content-length-mismatch.js | 11 res.write('hello'); 13 res.write('a'); 36 res.write('helloaa'); 57 res.write('a');
|
| /third_party/libdrm/tests/etnaviv/ |
| H A D | write_bmp.c | 99 write(fd, &bmp_header, sizeof(struct bmp_header)); in bmp_header_write() 100 write(fd, &dib_header, sizeof(struct dib_header)); in bmp_header_write() 116 write(fd, buffer, width * height * 4); in bmp_dump32() 132 write(fd, buffer, width * height * 4); in bmp_dump32_noflip() 148 write(fd, buffer, width * height * 4); in bmp_dump32_ex()
|
| /third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
| H A D | write.c | 24 * @tc.desc : Test the write function, the return value is the specified buf length 29 const char *msg = "This is a c test code for write function"; in write_0100() 36 t_error("%s write create file error", __func__); in write_0100() 39 int result = write(fd, msg, len); in write_0100() 41 t_error("%s write get result is %d not want %d", __func__, result, len); in write_0100() 59 * @tc.desc : test the return value of write when the count parameter is 0 64 const char *msg = "This is a c test code for write function"; in write_0200() 70 t_error("%s write create file error", __func__); in write_0200() 73 int result = write(fd, msg, len); in write_0200() 75 t_error("%s write ge in write_0200() [all...] |
| /third_party/rust/crates/bindgen/bindgen/codegen/ |
| H A D | serialize.rs | 112 write!(writer, " {}(", wrap_name)?; in serialize() 114 write!(writer, "void")?; in serialize() 130 write!(writer, " {}(", wrap_name)?; in serialize() 140 write!(writer, ") {{ return {}(", name)?; in serialize() 142 write!(buf, "{}", name).map_err(From::from) in serialize() 178 write!(writer, "const ")?; in serialize() 180 write!(writer, "void")? in serialize() 184 write!(writer, "const ")?; in serialize() 186 write!(writer, "nullptr_t")? in serialize() 190 write!(write in serialize() [all...] |
| /third_party/skia/third_party/externals/dawn/scripts/ |
| H A D | perf_test_runner.py | 140 sys.stdout.write("%s: %.2f" % (metric, score)) 144 sys.stdout.write(", mean: %.2f" % mean(scores)) 145 sys.stdout.write(", variation: %.2f%%" % 150 sys.stdout.write(", truncated mean: %.2f" % 152 sys.stdout.write(", variation: %.2f%%" %
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/MCTargetDesc/ |
| H A D | BPFAsmBackend.cpp | 64 support::endian::write<uint64_t>(OS, 0x15000000, Endian); in writeNopData() 78 support::endian::write<uint32_t>(&Data[Fixup.getOffset() + 4], in applyFixup() 82 support::endian::write<uint32_t>(&Data[Fixup.getOffset()], Value, Endian); in applyFixup() 84 support::endian::write<uint64_t>(&Data[Fixup.getOffset()], Value, Endian); in applyFixup() 97 support::endian::write<uint16_t>(&Data[Fixup.getOffset() + 2], Value, in applyFixup()
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | typeArgumentInferenceWithObjectLiteral.js | 4 write(value: T); 14 write: value => s = value 17 write: value => s = value, 45 write: function (value) { return s = value; }
48 write: function (value) { return s = value; },
|
| /third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
| H A D | error.rs | 24 /// An attempt to write data to the underlying socket returned `WouldBlock`. 26 /// Wait for write readiness and retry the operation. 109 Some(_) => fmt.write_str("a nonblocking write call would have blocked"), in fmt() 113 Some(err) => write!(fmt, "{}", err), in fmt() 117 Some(e) => write!(fmt, "{}", e), in fmt() 120 ErrorCode(code) => write!(fmt, "unknown error code {}", code), in fmt() 161 HandshakeError::SetupFailure(ref e) => write!(f, "stream setup failed: {}", e)?, in fmt() 163 write!(f, "the handshake failed: {}", s.error())?; in fmt() 166 write!(f, ": {}", verify)?; in fmt() 170 write!( in fmt() [all...] |
| /third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
| H A D | sfn_instr_mem.cpp | 217 AluInstr::write)); in emit_atomic_op2() 219 shader.emit_instruction(new AluInstr(op1_mov, tmp[0], vf.literal(4 * offset), AluInstr::write)); in emit_atomic_op2() 245 AluInstr::write)); in emit_atomic_read() 247 shader.emit_instruction(new AluInstr(op1_mov, tmp[0], vf.literal(4 * offset), AluInstr::write)); in emit_atomic_read() 277 AluInstr::write)); in emit_atomic_inc() 279 shader.emit_instruction(new AluInstr(op1_mov, tmp[0], vf.literal(4 * offset), AluInstr::write)); in emit_atomic_inc() 307 AluInstr::write)); in emit_atomic_pre_dec() 309 shader.emit_instruction(new AluInstr(op1_mov, tmp[0], vf.literal(4 * offset), AluInstr::write)); in emit_atomic_pre_dec() 570 vf.literal(2), AluInstr::write)); in emit_ssbo_store() 610 shader.emit_instruction(new AluInstr(op1_mov, data_vec4[1], shader.rat_return_address(), AluInstr::write)); in emit_ssbo_atomic_op() [all...] |
| /third_party/node/lib/internal/readline/ |
| H A D | callbacks.js | 54 return stream.write(data, callback); 85 return stream.write(data, callback); 107 return stream.write(type, callback); 124 return stream.write(kClearScreenDown, callback);
|
| /third_party/node/lib/ |
| H A D | string_decoder.js | 95 StringDecoder.prototype.write = function write(buf) { 118 ret = this.write(buf); 134 return this.write(buf.slice(offset));
|
| /third_party/node/tools/ |
| H A D | genv8constants.py | 41 outfile.write(""" 70 outfile.write("#define %s -0x%x\n" % (curr_sym.upper(), wrapped_val)) 72 outfile.write("#define %s 0x%x\n" % (curr_sym.upper(), wrapped_val)) 113 outfile.write("""
|
| /third_party/node/benchmark/fs/ |
| H A D | read-stream-throughput.js | 60 ws.on('drain', write); 61 write(); 62 function write() { function 65 } while (false !== ws.write(buf) && n > 0);
|
| /third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/util/ |
| H A D | WaveFileWriter.cpp | 19 void WaveFileWriter::WaveFileWriter::write(float value) { in write() function in WaveFileWriter::WaveFileWriter 30 void WaveFileWriter::write(float *buffer, int32_t startSample, int32_t numSamples) { in write() function in WaveFileWriter 32 write(buffer[startSample + i]); in write() 85 mOutputStream->write(b); in writeByte()
|
| /third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
| H A D | BrotliOutputStream.java | 51 throw new IOException("write after close"); in flush() 57 public void write(int b) throws IOException { in write() method in BrotliOutputStream 59 throw new IOException("write after close"); in write() 68 public void write(byte[] b) throws IOException { in write() method in BrotliOutputStream 69 this.write(b, 0, b.length); in write() 73 public void write(byte[] b, int off, int len) throws IOException { in write() method in BrotliOutputStream 75 throw new IOException("write after close"); in write()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/copts/ |
| H A D | generate_copts.py | 93 f.write(style.docstring()) 94 f.write("\n") 96 f.write("\n") 97 f.write(copt_list(var_name, arg_list, style))
|