| /third_party/libunwind/libunwind/tests/ |
| H A D | test-proc-info.c | 59 unw_word_t *valp, int write, in access_mem() 62 if (!write) in access_mem() 70 unw_word_t *valp, int write, in access_reg() 73 if (!write) in access_reg() 81 unw_fpreg_t *valp, int write, in access_fpreg() 84 if (!write) in access_fpreg() 57 access_mem(unw_addr_space_t as UNUSED, unw_word_t addr UNUSED, unw_word_t *valp, int write, void *arg UNUSED) access_mem() argument 68 access_reg(unw_addr_space_t as UNUSED, unw_regnum_t regnum UNUSED, unw_word_t *valp, int write, void *arg UNUSED) access_reg() argument 79 access_fpreg(unw_addr_space_t as UNUSED, unw_regnum_t regnum UNUSED, unw_fpreg_t *valp, int write, void *arg UNUSED) access_fpreg() argument
|
| /third_party/node/deps/v8/tools/wasm-compilation-hints/ |
| H A D | wasm.py | 70 fout.write(bs) 98 fout.write(section_id_bs) 99 fout.write(payload_length_bs) 100 fout.write(section_name_length_bs) 101 fout.write(section_name_bs) 102 fout.write(payload_bs)
|
| /third_party/node/test/parallel/ |
| H A D | test-http-upgrade-server.js | 48 res.write('okay'); 53 socket.write('HTTP/1.1 101 Web Socket Protocol Handshake\r\n' + 65 socket.write(data, 'utf8'); 77 socket.write(data); 104 conn.write('test', 'utf8'); 107 conn.write('kill', 'utf8');
|
| H A D | test-stream-writev.js | 96 w.write('hello, ', 'ascii', cnt('hello')); 97 w.write('world', 'utf8', cnt('world')); 102 w.write(Buffer.from('!'), 'buffer', cnt('!')); 103 w.write('\nand then...', 'latin1', cnt('and then')); 108 w.write('facebea7deadbeefdecafbad', 'hex', cnt('hex')); 116 // Make sure finish comes after all the write cb 129 w.write('asd', common.mustCall());
|
| H A D | test-http-outgoing-finish.js | 31 write(res); 39 write(req); 46 function write(out) { function 51 // First, write until it gets some backpressure 52 while (out.write(buf, common.mustSucceed()));
|
| H A D | test-http2-backpressure.js | 22 assert.strictEqual(stream.write('A'.repeat(5)), true); 23 assert.strictEqual(stream.write('A'.repeat(40)), false); 27 assert.strictEqual(stream.write('A'.repeat(5)), true); 28 assert.strictEqual(stream.write('A'.repeat(40)), false);
|
| H A D | test-stream-write-destroy.js | 14 write(data, enc, cb) { 34 w.write('abc', onWrite); 42 // Test 2 cases: There either is or is not data still in the write queue. 43 // (The second write will never actually get executed either way.) 44 w.write('def', onWrite); 51 w.write('ghi', onWrite);
|
| H A D | test-tls-connect-stream-writes.js | 44 write: function write(data, enc, cb) { 45 raw.write(data, enc, cb); 54 socket.write(content);
|
| /third_party/musl/libc-test/src/functionalext/supplement/fcntl/ |
| H A D | open.c | 33 int len = write(fd, s, sizeof(s)); in open_0100() 67 int len = write(fd, s, sizeof(s)); in open_0300() 97 int len = write(fd, s, sizeof(s)); in open_0500() 116 int len = write(fd, s, sizeof(s)); in open_0600() 145 int len = write(fd, s, sizeof(s)); in open_0800() 164 int len = write(fd, s, sizeof(s)); in open_0900()
|
| /third_party/musl/libc-test/src/functionalext/supplement/temp/ |
| H A D | mkostemp.c | 32 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0100() 55 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0200() 78 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0300() 101 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0400() 124 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0500() 147 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0600()
|
| /third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
| H A D | lseek.c | 68 int retwrite = write(fd, wrstring, sizeof(wrstring)); in lseek_0100() 85 int retwrite = write(fd, wrstring, sizeof(wrstring)); in lseek_0200() 102 int retwrite = write(fd, wrstring, sizeof(wrstring)); in lseek_0300() 120 int retwrite = write(fd, str, sizeof(str)); in lseek_0400() 137 int retwrite = write(fd, str, sizeof(str)); in lseek_0500() 154 int retwrite = write(fd, str, sizeof(str)); in lseek_0600()
|
| /third_party/python/Lib/idlelib/ |
| H A D | outwin.py | 96 def write(self, s, tags=(), mark="insert"): member in OutputWindow 121 self.write(line) 124 "No flushing needed as write() directly writes to widget." 171 def write(self, s, tags, mark): member in OnDemandOutputWindow 174 self.owin.write(s, tags, mark) 183 self.write = self.owin.write
|
| /third_party/skia/third_party/externals/angle2/src/ |
| H A D | commit_id.py | 45 fout.write(git_hash + '\n') 108 hfile.write('#define ANGLE_COMMIT_HASH "%s"\n' % commit_id) 109 hfile.write('#define ANGLE_COMMIT_HASH_SIZE %d\n' % commit_id_size) 110 hfile.write('#define ANGLE_COMMIT_DATE "%s"\n' % commit_date) 111 hfile.write('#define ANGLE_COMMIT_POSITION %s\n' % commit_position) 114 hfile.write('#define ANGLE_DISABLE_PROGRAM_BINARY_LOAD\n')
|
| /third_party/python/Lib/test/ |
| H A D | test_tempfile.py | 209 os.write(write_fd, next(self.r).encode("ascii")) 295 with support.swap_attr(os, "write", raise_OSError): 296 # test again with failing os.write() 337 support.is_emscripten, "Emscripten cannot remove write bits." 385 def write(self, str): member in TestMkstempInner.mkstemped 386 os.write(self.fd, str) 410 self.do_create().write(b"blat") 411 self.do_create(pre="a").write(b"blat") 412 self.do_create(suf="b").write(b"blat") 413 self.do_create(pre="a", suf="b").write( [all...] |
| /third_party/mesa3d/src/gallium/frontends/lavapipe/ |
| H A D | lvp_descriptor_set.c | 415 const VkWriteDescriptorSet *write = &pDescriptorWrites[i]; in lvp_UpdateDescriptorSets() local 416 LVP_FROM_HANDLE(lvp_descriptor_set, set, write->dstSet); in lvp_UpdateDescriptorSets() 418 &set->layout->binding[write->dstBinding]; in lvp_UpdateDescriptorSets() 421 if (write->descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK) { in lvp_UpdateDescriptorSets() 423 vk_find_struct_const(write->pNext, WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK); in lvp_UpdateDescriptorSets() 426 memcpy(desc->info.uniform + write->dstArrayElement, uniform_data->pData, uniform_data->dataSize); in lvp_UpdateDescriptorSets() 429 desc += write->dstArrayElement; in lvp_UpdateDescriptorSets() 431 switch (write->descriptorType) { in lvp_UpdateDescriptorSets() 433 for (uint32_t j = 0; j < write->descriptorCount; j++) { in lvp_UpdateDescriptorSets() 435 write in lvp_UpdateDescriptorSets() [all...] |
| /third_party/ltp/testcases/kernel/containers/utsname/ |
| H A D | utstest.c | 13 * along with this program; if not, write to the Free Software 144 write(p2fd[1], "1", 1); in P1() 163 write(p2fd[1], "1", 1); in P1() 189 write(p2fd[1], "1", 1); /* tell p2 to go ahead and sethostname */ in P1() 208 write(p2fd[1], "1", 1); /* tell p2 to go ahead and sethostname */ in P1() 240 write(p1fd[1], hostname, strlen(hostname)); in P2() 249 write(p1fd[1], hostname, strlen(hostname)); in P2() 264 write(p1fd[1], newhostname, strlen(newhostname)); in P2() 342 write(p2fd[1], "0", 1); /* don't let p2 hang */ in main()
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
| H A D | schema_generator.py | 14 regSortFeatures, write) 133 write(headerString, file=self.outFile) 134 write(basetypeString, file=self.outFile) 137 write(" \"VkLastStructure\": {", file=self.outFile) 138 write(" }", file=self.outFile) 139 write(" }", file=self.outFile) 140 write("}", file=self.outFile) 158 write('\n'.join(contents), file=self.outFile)
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/ |
| H A D | abseil.podspec.gen.py | 141 f.write(spec) 144 f.write("end\n") 162 f.write("{indent}{var0}.subspec '{key}' do |{var1}|\n".format( 171 f.write("{indent}end\n".format(indent=indent)) 189 f.write("{indent}{var}.dependency '{dep}'\n".format( 195 f.write(leading) 196 f.write((",\n" + " " * len(leading)).join("'{}'".format(v) for v in values)) 197 f.write("\n")
|
| /third_party/vk-gl-cts/modules/glshared/ |
| H A D | glsBufferTestUtil.hpp | 123 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes) = DE_NULL; 124 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 targetHint); 142 void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes); 143 void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 targetHint); 160 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes); 161 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 target); 172 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes); 173 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 target);
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
| H A D | MachOEmitter.cpp | 87 OS.write((const char *)&Header, header_size); in writeHeader() 122 OS.write(reinterpret_cast<const char *>(&(TempSec)), in writeLoadCommandData() 138 OS.write(reinterpret_cast<const char *>(&(TempSec)), in writeLoadCommandData() 148 OS.write(LC.PayloadString.c_str(), LC.PayloadString.length()); in writePayloadString() 183 OS.write(reinterpret_cast<const char *>(&tool), in writeLoadCommandData() 193 OS.write(reinterpret_cast<char *>(FillData.data()), Size); in ZeroFillBytes() 199 OS.write(reinterpret_cast<char *>(FillData.data()), Size); in Fill() 217 OS.write(reinterpret_cast<const char *>(&(Data.LCStruct##_data)), \ in writeLoadCommands() 228 OS.write(reinterpret_cast<const char *>(&(Data.load_command_data)), in writeLoadCommands() 238 OS.write(reinterpret_cas in writeLoadCommands() [all...] |
| /third_party/libsnd/ |
| H A D | make_lite.py | 121 open (filename, 'w').write (source_code) 128 open (filename, 'w').write (source_code) 135 open (filename, 'w').write (source_code) 142 open (filename, 'w').write (source_code) 149 open (filename, 'w').write (source_code) 162 open (filename, 'w').write (source_code) 168 open (filename, 'w').write (file_text) 173 open (filename, 'w').write (file_text) 179 open (filename, 'w').write (file_text) 204 file.write (dat [all...] |
| /third_party/rust/crates/unicode-width/scripts/ |
| H A D | unicode.py | 73 sys.stderr.write(f"cannot load {filename}") 333 module.write( 347 module.write( 355 module.write( 404 module.write( 440 module.write( 448 module.write("\n ") 449 module.write(f" 0x{byte:02X},") 450 module.write("\n ];\n") 452 module.write("}\ [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
| H A D | raw_ostream.cpp | 199 raw_ostream &raw_ostream::write(unsigned char C) { in write() function in raw_ostream 209 return write(C); in write() 219 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { in write() function in raw_ostream 229 return write(Ptr, Size); in write() 235 // than the buffer. Directly write the chunk that is a multiple of the in write() 244 return write(Ptr + BytesToWrite, BytesRemaining); in write() 254 return write(Ptr + NumBytes, Size - NumBytes); in write() 314 return write(V.data(), BytesUsed); in operator <<() 442 return write(Spaces, NumSpaces); in indent() 447 write(Space in indent() [all...] |
| /third_party/icu/tools/multi/proj/icu4cscan/ |
| H A D | xmlout.cpp | 19 void XMLFile::write(const char *s) { in write() function in XMLFile 25 write(s); in writeln() 26 write("\n"); in writeln() 46 write("\t"); in writeIndent()
|
| /third_party/node/test/pummel/ |
| H A D | test-https-large-response.js | 36 process.stdout.write('build body...'); 38 process.stdout.write('done\n'); 56 process.stdout.write('.'); 65 process.stdout.write('\n');
|