Home
last modified time | relevance | path

Searched refs:fdst (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/distutils/
Dfile_util.py26 fdst = None
41 fdst = open(dst, 'wb')
57 fdst.write(buf)
62 if fdst:
63 fdst.close()
/third_party/ffmpeg/libavcodec/
Dffv1dec.c1014 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 …]
Dwavpack.c1015 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/
Dshutil.py84 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/
Dnvfx_vertprog.c422 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()
Dnvfx_fragprog.c419 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/
Dlp_test_blend.c488 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/
Dsb_bc_finalize.cpp318 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/
Dt_vertex_generic.c1046 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/
Dtest_shutil.py2294 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/
Dshutil.rst40 .. function:: copyfileobj(fsrc, fdst[, length])
42 Copy the contents of the file-like object *fsrc* to the file-like object *fdst*.