Home
last modified time | relevance | path

Searched refs:fsrc (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnvfx_fragprog.c377 tgsi_src(struct nvfx_fpc *fpc, const struct tgsi_full_src_register *fsrc) in tgsi_src() argument
381 switch (fsrc->Register.File) { in tgsi_src()
383 src.reg = fpc->r_input[fsrc->Register.Index]; in tgsi_src()
386 src.reg = nvfx_reg(NVFXSR_CONST, fsrc->Register.Index); in tgsi_src()
389 assert(fsrc->Register.Index < fpc->nr_imm); in tgsi_src()
390 src.reg = fpc->r_imm[fsrc->Register.Index]; in tgsi_src()
393 src.reg = fpc->r_temp[fsrc->Register.Index]; in tgsi_src()
397 src.reg = fpc->r_result[fsrc->Register.Index]; in tgsi_src()
406 src.abs = fsrc->Register.Absolute; in tgsi_src()
407 src.negate = fsrc->Register.Negate; in tgsi_src()
[all …]
Dnvfx_vertprog.c367 tgsi_src(struct nvfx_vpc *vpc, const struct tgsi_full_src_register *fsrc) { in tgsi_src() argument
370 switch (fsrc->Register.File) { in tgsi_src()
372 src.reg = nvfx_reg(NVFXSR_INPUT, fsrc->Register.Index); in tgsi_src()
375 if(fsrc->Register.Indirect) { in tgsi_src()
377 src.reg.index = fsrc->Register.Index; in tgsi_src()
379 src.reg = vpc->r_const[fsrc->Register.Index]; in tgsi_src()
383 src.reg = vpc->imm[fsrc->Register.Index]; in tgsi_src()
386 src.reg = vpc->r_temp[fsrc->Register.Index]; in tgsi_src()
395 src.abs = fsrc->Register.Absolute; in tgsi_src()
396 src.negate = fsrc->Register.Negate; in tgsi_src()
[all …]
/third_party/ffmpeg/libavcodec/
Dffv1dec.c255 if(f->fsrc && !p->key_frame) in decode_slice()
258 if(f->fsrc && !p->key_frame) { in decode_slice()
259 FFV1Context *fssrc = f->fsrc->slice_context[si]; in decode_slice()
982 static void copy_fields(FFV1Context *fsdst, FFV1Context *fssrc, FFV1Context *fsrc) in copy_fields() argument
984 fsdst->version = fsrc->version; in copy_fields()
985 fsdst->micro_version = fsrc->micro_version; in copy_fields()
986 fsdst->chroma_planes = fsrc->chroma_planes; in copy_fields()
987 fsdst->chroma_h_shift = fsrc->chroma_h_shift; in copy_fields()
988 fsdst->chroma_v_shift = fsrc->chroma_v_shift; in copy_fields()
989 fsdst->transparency = fsrc->transparency; in copy_fields()
[all …]
Dffv1.h96 struct FFV1Context *fsrc; member
Dwavpack.c1014 WavpackContext *fsrc = src->priv_data; in update_thread_context() local
1022 if (fsrc->curr_frame.f->data[0]) { in update_thread_context()
1023 if ((ret = ff_thread_ref_frame(&fdst->curr_frame, &fsrc->curr_frame)) < 0) in update_thread_context()
1029 ret = av_buffer_replace(&fdst->dsd_ref, fsrc->dsd_ref); in update_thread_context()
1032 if (fsrc->dsd_ref) { in update_thread_context()
1034 fdst->dsd_channels = fsrc->dsd_channels; in update_thread_context()
/third_party/python/Lib/distutils/
Dfile_util.py25 fsrc = None
29 fsrc = open(src, 'rb')
48 buf = fsrc.read(buffer_size)
64 if fsrc:
65 fsrc.close()
/third_party/python/Lib/
Dshutil.py84 def _fastcopy_fcopyfile(fsrc, fdst, flags): argument
89 infd = fsrc.fileno()
97 err.filename = fsrc.name
104 def _fastcopy_sendfile(fsrc, fdst): argument
120 infd = fsrc.fileno()
145 err.filename = fsrc.name
168 def _copyfileobj_readinto(fsrc, fdst, length=COPY_BUFSIZE): argument
174 fsrc_readinto = fsrc.readinto
187 def copyfileobj(fsrc, fdst, length=0): argument
192 fsrc_read = fsrc.read
[all …]
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstghostpad.c325 GstPad *gsink, *gsrc, *gisrc, *gisink, *isink, *isrc, *fsrc, *fsink; in GST_START_TEST() local
348 fsrc = gst_element_get_static_pad (src, "src"); in GST_START_TEST()
349 fail_unless (fsrc != NULL); in GST_START_TEST()
368 ASSERT_OBJECT_REFCOUNT (fsrc, "fsrc", 2); /* parent */ in GST_START_TEST()
391 while (GST_OBJECT_REFCOUNT_VALUE (fsrc) > 1) in GST_START_TEST()
394 ASSERT_OBJECT_REFCOUNT (fsrc, "fsrc", 1); in GST_START_TEST()
407 ASSERT_OBJECT_REFCOUNT (fsrc, "fsrc", 1); in GST_START_TEST()
409 ASSERT_OBJECT_REFCOUNT (fsrc, "fsrc", 1); in GST_START_TEST()
418 gst_object_unref (fsrc); in GST_START_TEST()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_blend.c489 double fsrc[LP_MAX_VECTOR_LENGTH]; in test_one() local
495 read_vec(type, src, fsrc); in test_one()
501 compute_blend_ref(blend, fsrc + j, fsrc1 + j, fdst + j, fcon + j, fref + j); in test_one()
/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*.
46 consumption. Note that if the current file position of the *fsrc* object is not
/third_party/python/Lib/test/
Dtest_shutil.py2293 with open(src, 'rb') as fsrc:
2295 self.assertEqual(fsrc.read(), fdst.read())
2449 def zerocopy_fun(self, fsrc, fdst): argument
2450 return shutil._fastcopy_sendfile(fsrc, fdst)
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cES31CompatibilityShaderImageLoadStoreTests.cpp5329 const char* const fsrc[3] = { fsVer, kGLSLPrec, source.c_str() }; in Compile() local
5331 glShaderSource(fsh, 3, fsrc, NULL); in Compile()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
Des31cShaderImageLoadStoreTests.cpp5303 const char* const fsrc[3] = { fsVer, kGLSLPrec, source.c_str() }; in Compile() local
5305 glShaderSource(fsh, 3, fsrc, NULL); in Compile()