/third_party/python/Lib/distutils/ |
D | file_util.py | 26 fdst = None 41 fdst = open(dst, 'wb') 57 fdst.write(buf) 62 if fdst: 63 fdst.close()
|
/third_party/ffmpeg/libavcodec/ |
D | ffv1dec.c | 1014 FFV1Context *fdst = dst->priv_data; in update_thread_context() local 1021 ThreadFrame picture = fdst->picture, last_picture = fdst->last_picture; in update_thread_context() 1024 memcpy(initial_states, fdst->initial_states, sizeof(fdst->initial_states)); in update_thread_context() 1025 memcpy(slice_context, fdst->slice_context , sizeof(fdst->slice_context)); in update_thread_context() 1027 memcpy(fdst, fsrc, sizeof(*fdst)); in update_thread_context() 1028 memcpy(fdst->initial_states, initial_states, sizeof(fdst->initial_states)); in update_thread_context() 1029 memcpy(fdst->slice_context, slice_context , sizeof(fdst->slice_context)); in update_thread_context() 1030 fdst->picture = picture; in update_thread_context() 1031 fdst->last_picture = last_picture; in update_thread_context() 1032 for (i = 0; i<fdst->num_h_slices * fdst->num_v_slices; i++) { in update_thread_context() [all …]
|
D | wavpack.c | 1015 WavpackContext *fdst = dst->priv_data; in update_thread_context() local 1021 ff_thread_release_buffer(dst, &fdst->curr_frame); in update_thread_context() 1023 if ((ret = ff_thread_ref_frame(&fdst->curr_frame, &fsrc->curr_frame)) < 0) in update_thread_context() 1027 fdst->dsdctx = NULL; in update_thread_context() 1028 fdst->dsd_channels = 0; in update_thread_context() 1029 ret = av_buffer_replace(&fdst->dsd_ref, fsrc->dsd_ref); in update_thread_context() 1033 fdst->dsdctx = (DSDContext*)fdst->dsd_ref->data; in update_thread_context() 1034 fdst->dsd_channels = fsrc->dsd_channels; in update_thread_context()
|
/third_party/python/Lib/ |
D | shutil.py | 84 def _fastcopy_fcopyfile(fsrc, fdst, flags): argument 90 outfd = fdst.fileno() 98 err.filename2 = fdst.name 104 def _fastcopy_sendfile(fsrc, fdst): argument 121 outfd = fdst.fileno() 146 err.filename2 = fdst.name 168 def _copyfileobj_readinto(fsrc, fdst, length=COPY_BUFSIZE): argument 175 fdst_write = fdst.write 183 fdst.write(smv) 187 def copyfileobj(fsrc, fdst, length=0): argument [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nvfx_vertprog.c | 422 tgsi_dst(struct nvfx_vpc *vpc, const struct tgsi_full_dst_register *fdst) { in tgsi_dst() argument 425 switch (fdst->Register.File) { in tgsi_dst() 430 dst = vpc->r_result[fdst->Register.Index]; in tgsi_dst() 433 dst = vpc->r_temp[fdst->Register.Index]; in tgsi_dst() 436 dst = vpc->r_address[fdst->Register.Index]; in tgsi_dst() 439 NOUVEAU_ERR("bad dst file %i\n", fdst->Register.File); in tgsi_dst()
|
D | nvfx_fragprog.c | 419 tgsi_dst(struct nvfx_fpc *fpc, const struct tgsi_full_dst_register *fdst) { in tgsi_dst() argument 420 switch (fdst->Register.File) { in tgsi_dst() 422 return fpc->r_result[fdst->Register.Index]; in tgsi_dst() 424 return fpc->r_temp[fdst->Register.Index]; in tgsi_dst() 428 NOUVEAU_ERR("bad dst file %d\n", fdst->Register.File); in tgsi_dst()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_test_blend.c | 488 double fdst[LP_MAX_VECTOR_LENGTH]; in test_one() local 494 read_vec(type, dst, fdst); in test_one() 498 compute_blend_ref(blend, fsrc + j, fsrc1 + j, fdst + j, fcon + j, fref + j); in test_one()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_finalize.cpp | 318 sel_chan fdst = d ? d->get_final_gpr() : sel_chan(0, 0); in finalize_alu_group() local 321 assert(fdst.chan() == slot || slot == SLOT_TRANS); in finalize_alu_group() 325 n->bc.dst_gpr = fdst.sel(); in finalize_alu_group() 326 n->bc.dst_chan = d ? fdst.chan() : slot < SLOT_TRANS ? slot : 0; in finalize_alu_group()
|
/third_party/mesa3d/src/mesa/tnl/ |
D | t_vertex_generic.c | 1046 GLfloat fin[4], fout[4], fdst[4]; in _tnl_generic_interp() local 1051 INTERP_4F(t, fdst, fout, fin); in _tnl_generic_interp() 1053 a[j].insert[4-1]( &a[j], vdst + a[j].vertoffset, fdst ); in _tnl_generic_interp()
|
/third_party/python/Lib/test/ |
D | test_shutil.py | 2294 with open(dst, 'rb') as fdst: 2295 self.assertEqual(fsrc.read(), fdst.read()) 2449 def zerocopy_fun(self, fsrc, fdst): argument 2450 return shutil._fastcopy_sendfile(fsrc, fdst)
|
/third_party/python/Doc/library/ |
D | shutil.rst | 40 .. function:: copyfileobj(fsrc, fdst[, length]) 42 Copy the contents of the file-like object *fsrc* to the file-like object *fdst*.
|