/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nvfx_vertprog.c | 367 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 in tgsi_src() 478 const struct tgsi_full_src_register *fsrc; nvfx_vertprog_parse_instruction() local 487 const struct tgsi_full_src_register *fsrc; nvfx_vertprog_parse_instruction() local [all...] |
H A D | nvfx_fragprog.c | 377 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 in tgsi_src() 461 const struct tgsi_full_src_register *fsrc; nvfx_fragprog_parse_instruction() local 470 const struct tgsi_full_src_register *fsrc; nvfx_fragprog_parse_instruction() local [all...] |
/third_party/python/Lib/distutils/ |
H A D | file_util.py | 25 fsrc = None 29 fsrc = open(src, 'rb') 48 buf = fsrc.read(buffer_size) 64 if fsrc: 65 fsrc.close()
|
/third_party/ffmpeg/libavcodec/ |
H A D | ffv1dec.c | 267 if(f->fsrc && !p->key_frame) in decode_slice() 270 if(f->fsrc && !p->key_frame) { in decode_slice() 271 FFV1Context *fssrc = f->fsrc->slice_context[si]; in decode_slice() 1019 const FFV1Context *fsrc) in copy_fields() 1021 fsdst->version = fsrc->version; in copy_fields() 1022 fsdst->micro_version = fsrc->micro_version; in copy_fields() 1023 fsdst->chroma_planes = fsrc->chroma_planes; in copy_fields() 1024 fsdst->chroma_h_shift = fsrc->chroma_h_shift; in copy_fields() 1025 fsdst->chroma_v_shift = fsrc->chroma_v_shift; in copy_fields() 1026 fsdst->transparency = fsrc in copy_fields() 1018 copy_fields(FFV1Context *fsdst, const FFV1Context *fssrc, const FFV1Context *fsrc) copy_fields() argument 1049 FFV1Context *fsrc = src->priv_data; update_thread_context() local [all...] |
H A D | ffv1.h | 91 struct FFV1Context *fsrc; member
|
H A D | wavpack.c | 1019 WavpackContext *fsrc = src->priv_data; in update_thread_context() local 1027 if (fsrc->curr_frame.f->data[0]) { in update_thread_context() 1028 if ((ret = ff_thread_ref_frame(&fdst->curr_frame, &fsrc->curr_frame)) < 0) in update_thread_context() 1034 ret = av_buffer_replace(&fdst->dsd_ref, fsrc->dsd_ref); in update_thread_context() 1037 if (fsrc->dsd_ref) { in update_thread_context() 1039 fdst->dsd_channels = fsrc->dsd_channels; in update_thread_context()
|
/third_party/python/Lib/ |
H A D | shutil.py | 86 def _fastcopy_fcopyfile(fsrc, fdst, flags): 91 infd = fsrc.fileno() 99 err.filename = fsrc.name 106 def _fastcopy_sendfile(fsrc, fdst): 115 # - fsrc and fdst may be open in "t"(ext) mode 116 # - fsrc may be a BufferedReader (which hides unread data in a buffer), 122 infd = fsrc.fileno() 147 err.filename = fsrc.name 170 def _copyfileobj_readinto(fsrc, fdst, length=COPY_BUFSIZE): 172 *fsrc* mus [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_blend.c | 489 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/Lib/test/ |
H A D | test_shutil.py | 2352 with open(src, 'rb') as fsrc: 2354 self.assertEqual(fsrc.read(), fdst.read()) 2508 def zerocopy_fun(self, fsrc, fdst): 2509 return shutil._fastcopy_sendfile(fsrc, fdst)
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
H A D | es31cShaderImageLoadStoreTests.cpp | 5303 const char* const fsrc[3] = { fsVer, kGLSLPrec, source.c_str() }; in Compile() local 5305 glShaderSource(fsh, 3, fsrc, NULL); in Compile()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cES31CompatibilityShaderImageLoadStoreTests.cpp | 5329 const char* const fsrc[3] = { fsVer, kGLSLPrec, source.c_str() }; in Compile() local 5331 glShaderSource(fsh, 3, fsrc, NULL); in Compile()
|