| /third_party/littlefs/scripts/ |
| H A D | bench.py | 279 # write generated bench source 282 _write = f.write 283 def write(s): function 291 f.write = write 304 # write out generated functions, this can end up in different 359 f.write(case.code) 371 f.write(suite.code) 459 # write any internal benches 465 # write define [all...] |
| /third_party/mesa3d/src/intel/compiler/ |
| H A D | brw_fs_visitor.cpp | 76 fs_inst *write; in emit_dummy_fs() local 77 write = bld.emit(FS_OPCODE_FB_WRITE); in emit_dummy_fs() 78 write->eot = true; in emit_dummy_fs() 79 write->last_rt = true; in emit_dummy_fs() 81 write->base_mrf = 2; in emit_dummy_fs() 82 write->mlen = 4 * reg_width; in emit_dummy_fs() 84 write->header_size = 2; in emit_dummy_fs() 85 write->base_mrf = 0; in emit_dummy_fs() 86 write->mlen = 2 + 4 * reg_width; in emit_dummy_fs() 632 * we're forced to pass the source depth, unmodified, to the FB write in emit_single_fb_write() 651 fs_inst *write = bld.emit(FS_OPCODE_FB_WRITE_LOGICAL, fs_reg(), emit_single_fb_write() local [all...] |
| /third_party/python/Lib/test/ |
| H A D | test_iter.py | 450 f.write("%d\n" % i) 479 f.write("%d\n" % i) 512 f.write("%d\n" % i) 588 f.write("medium line\n") 589 f.write("xtra large line\n") 590 f.write("itty-bitty line\n") 622 f.write("xy" * i + "\n") # line i has len 2*i+1 668 f.write("a\n" "bbb\n" "cc\n") 736 f.write("a\n" + "b\n" + "c\n") 788 f.write(" [all...] |
| H A D | audiotests.py | 160 testfile.write(b'ababagalamaga') 172 testfile.write(b'ababagalamaga') 186 testfile.write(b'ababagalamaga') 214 testfile.write(b'ababagalamaga') 232 testfile.write(b'ababagalamaga') 319 testfile.write(b'ababagalamaga') 321 testfile.write(f.read())
|
| H A D | test_gettext.py | 124 fp.write(base64.decodebytes(GNU_MO_DATA)) 126 fp.write(base64.decodebytes(GNU_MO_DATA_BAD_MAJOR_VERSION)) 128 fp.write(base64.decodebytes(GNU_MO_DATA_BAD_MINOR_VERSION)) 130 fp.write(base64.decodebytes(UMO_DATA)) 132 fp.write(base64.decodebytes(MMO_DATA)) 506 fp.write(base64.decodebytes(GNU_MO_DATA_ISSUE_17898)) 519 fp.write(base64.decodebytes(GNU_MO_DATA_ISSUE_17898))
|
| H A D | test_codecs.py | 59 queue: write bytes at one end, read bytes from the other end 64 def write(self, chars): member in Queue 122 q.write(bytes([c])) 300 ' self.write("<h2>Today\'s articles</h2>")\r\n', 312 ' self.write("<h2>Articles written on %s</h2>"% frog.util.mediumdatestr(showdate))\r\n', 316 ' self.write("<h2>Recent articles</h2>")\r\n', 338 writer.write("foo\r") 340 writer.write("\nbar\r") 343 writer.write("baz") 348 writer.write("fo [all...] |
| H A D | test_cmd_line_script.py | 166 p.stdin.write(b"print(__loader__)\n") 195 p.stdin.write(b"print('foo')\n") 201 p.stdin.write(b"1/0\n") 406 f.write("data") 422 f.write("data") 435 f.write("#coding: iso-8859-1\n") 436 f.write('"""\n') 438 f.write('x'*80 + '\n') 439 f.write('"""\n')
|
| /third_party/python/Lib/ |
| H A D | zipfile.py | 2 Read and write ZIP files. 451 # Set these to zero because we write them after the file data 794 def write(self, data): member in _Tellable 795 n = self.fp.write(data) 1156 def write(self, data): member in _ZipWriteFile 1172 self._fileobj.write(data) 1184 self._fileobj.write(buf) 1201 self._fileobj.write(struct.pack(fmt, _DD_SIGNATURE, self._zinfo.CRC, 1205 # Seek backwards and write file header (which will now include 1211 self._fileobj.write(sel 1776 def write(self, filename, arcname=None, global() member in ZipFile [all...] |
| H A D | calendar.py | 737 write = sys.stdout.buffer.write 739 write(cal.formatyearpage(datetime.date.today().year, **optdict)) 741 write(cal.formatyearpage(options.year, **optdict)) 760 write = sys.stdout.write 763 write = sys.stdout.buffer.write 764 write(result)
|
| /third_party/python/Lib/test/test_asyncio/ |
| H A D | test_proactor_events.py | 146 tr.write(b'data') 152 tr.write(b'') 159 tr.write(b'data') 180 'Fatal write error on pipe transport') 183 tr.write(b'data') 184 tr.write(b'data') 185 tr.write(b'data') 186 tr.write(b'data') 187 tr.write(b'data') 283 tr.write( [all...] |
| H A D | test_selector_events.py | 657 transport.write(data) 665 transport.write(data) 674 transport.write(data) 680 transport.write(b'') 687 transport.write(b'data2') 697 transport.write(data) 707 transport.write(data) 718 transport.write(data) 729 transport.write(data) 739 transport.write(dat [all...] |
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | NioByteStringTest.java | 336 public void write(byte[] b, int off, int len) { in testWriteToShouldNotExposeInternalBufferToOutputStream() 341 public void write(int b) { in testWriteToShouldNotExposeInternalBufferToOutputStream() 357 public void write(byte[] b, int off, int len) { in testWriteToInternalShouldExposeInternalBufferToOutputStream() 362 public void write(int b) { in testWriteToInternalShouldExposeInternalBufferToOutputStream() 378 public void write(byte value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput() 383 public void write(byte[] value, int offset, int length) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput() 388 public void write(ByteBuffer value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput() 420 // write the output stream to itself! This should cause it to double in testNewOutput()
|
| /third_party/python/Lib/venv/ |
| H A D | __init__.py | 184 f.write('home = %s\n' % context.python_dir) 189 f.write('include-system-site-packages = %s\n' % incl) 190 f.write('version = %d.%d.%d\n' % sys.version_info[:3]) 192 f.write(f'prompt = {self.prompt!r}\n') 193 f.write('executable = %s\n' % os.path.realpath(sys.executable)) 215 f.write(f'command = {sys.executable} -m venv {args}\n') 451 f.write(data)
|
| /third_party/libwebsockets/lib/misc/fts/ |
| H A D | trie.c | 172 if ((int)write(t->fd, buf, (size_t)bp) != bp) { \ 173 lwsl_err("%s: write %d failed (%d)\n", __func__, \ 280 /* write the header */ in lws_fts_create() 298 if (write(t->fd, buf, TRIE_FILE_HDR_SIZE) != TRIE_FILE_HDR_SIZE) { in lws_fts_create() 299 lwsl_err("%s: trie header write failed\n", __func__); in lws_fts_create() 406 if ((int)write(t->fd, buf, (size_t)bp) != bp) in finalize_per_input() 594 if ((int)write(t->fd, linetable, (unsigned int)bp) != bp) { in lws_fts_fill() 595 lwsl_err("%s: linetable write failed\n", in lws_fts_fill() 1041 write(1, buf - 10, 20); in lws_fts_fill() 1053 if ((int)write( in lws_fts_fill() [all...] |
| /third_party/mbedtls/tests/scripts/ |
| H A D | generate_test_code.py | 733 Since, return value is used to write back to the intermediate 889 out_data_f.write('depends_on') 897 out_data_f.write(':' + str(dep_id)) 898 out_data_f.write('\n') 942 out_data_f.write(':' + typ + ':' + str(val)) 943 out_data_f.write('\n') 1015 out_data_f.write(test_name + '\n') 1024 out_data_f.write(str(func_id)) 1035 out_data_f.write('\n') 1114 c_f.write(cod [all...] |
| /third_party/node/deps/openssl/openssl/include/openssl/ |
| H A D | pem.h | 65 * write. Now they are all implemented with either: IMPLEMENT_PEM_rw(...) or 118 PEM_write_fnsig(name, type, FILE, write) \ 130 PEM_write_cb_fnsig(name, type, FILE, write) \ 240 attr PEM_write_fnsig(name, type, FILE, write); 242 attr PEM_write_fnsig(name, type, FILE, write); \ 243 attr PEM_write_ex_fnsig(name, type, FILE, write); 246 attr PEM_write_fnsig(name, type, FILE, write); 249 attr PEM_write_cb_fnsig(name, type, FILE, write); 251 attr PEM_write_cb_fnsig(name, type, FILE, write); \ 252 attr PEM_write_cb_ex_fnsig(name, type, FILE, write); [all...] |
| /third_party/openssl/include/openssl/ |
| H A D | pem.h | 65 * write. Now they are all implemented with either: IMPLEMENT_PEM_rw(...) or 118 PEM_write_fnsig(name, type, FILE, write) \ 130 PEM_write_cb_fnsig(name, type, FILE, write) \ 240 attr PEM_write_fnsig(name, type, FILE, write); 242 attr PEM_write_fnsig(name, type, FILE, write); \ 243 attr PEM_write_ex_fnsig(name, type, FILE, write); 246 attr PEM_write_fnsig(name, type, FILE, write); 249 attr PEM_write_cb_fnsig(name, type, FILE, write); 251 attr PEM_write_cb_fnsig(name, type, FILE, write); \ 252 attr PEM_write_cb_ex_fnsig(name, type, FILE, write); [all...] |
| /third_party/skia/third_party/externals/freetype/src/pshinter/ |
| H A D | pshrec.c | 333 FT_Byte* write = mask->bytes; in ps_mask_table_set_bits() local 340 val = write[0] & ~wmask; in ps_mask_table_set_bits() 345 write[0] = (FT_Byte)val; in ps_mask_table_set_bits() 357 write++; in ps_mask_table_set_bits() 436 FT_Byte* write; in ps_mask_table_merge() local 453 write = mask1->bytes; in ps_mask_table_merge() 458 write[0] = (FT_Byte)( write[0] | read[0] ); in ps_mask_table_merge() 459 write++; in ps_mask_table_merge() 1176 /* determine number of stems to write */ in t2_hints_stems() [all...] |
| /test/xts/acts/commonlibrary/toolchain/libc-test/ |
| H A D | tar_files.py | 41 fp.write(fp1.read()) 47 fp.write(fp1.read())
|
| /third_party/gn/examples/ios/build/config/ios/scripts/ |
| H A D | find_app_identifier_prefix.py | 112 sys.stdout.write(json.dumps(substitutions)) 115 output.write(json.dumps(substitutions))
|
| /third_party/libsnd/src/ |
| H A D | binheader_writef_check.py | 93 if errors == 0: sys.stdout.write ("\n") 104 sys.stdout.write ("\n binheader_writef_check : ")
|
| /third_party/libunwind/libunwind/src/x86_64/ |
| H A D | Gresume.c | 71 int write, void *); in establish_machine_state() 73 int write, void *); in establish_machine_state()
|
| /third_party/mesa3d/ohos/ |
| H A D | meson_cross_process.py | 97 file.write(result)
110 pc_file.write(raw_content)
|
| /third_party/mesa3d/src/amd/llvm/ |
| H A D | ac_shader_abi.h | 81 * \param write whether buffer contents will be written 84 LLVMValueRef (*load_ssbo)(struct ac_shader_abi *abi, LLVMValueRef buffer, bool write, bool non_uniform); 100 bool image, bool write, bool bindless);
|
| /third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/ |
| H A D | cpuset_mem_hog.c | 16 /* along with this program; if not, write to the Free Software */ 90 if (write(fd, "0", 1) == -1) in mem_hog() 91 warn("write fifo failed."); in mem_hog() 93 if (write(fd, "1", 1) == -1) in mem_hog() 94 warn("write fifo failed."); in mem_hog()
|