Home
last modified time | relevance | path

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

/external/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.c366 tgsi_src(struct nvfx_vpc *vpc, const struct tgsi_full_src_register *fsrc) { in tgsi_src() argument
369 switch (fsrc->Register.File) { in tgsi_src()
371 src.reg = nvfx_reg(NVFXSR_INPUT, fsrc->Register.Index); in tgsi_src()
374 if(fsrc->Register.Indirect) { in tgsi_src()
376 src.reg.index = fsrc->Register.Index; in tgsi_src()
378 src.reg = vpc->r_const[fsrc->Register.Index]; in tgsi_src()
382 src.reg = vpc->imm[fsrc->Register.Index]; in tgsi_src()
385 src.reg = vpc->r_temp[fsrc->Register.Index]; in tgsi_src()
394 src.abs = fsrc->Register.Absolute; in tgsi_src()
395 src.negate = fsrc->Register.Negate; in tgsi_src()
[all …]
/external/python/cpython3/Lib/distutils/
Dfile_util.py25 fsrc = None
29 fsrc = open(src, 'rb')
48 buf = fsrc.read(buffer_size)
64 if fsrc:
65 fsrc.close()
/external/python/cpython2/Lib/distutils/
Dfile_util.py28 fsrc = None
32 fsrc = open(src, 'rb')
51 buf = fsrc.read(buffer_size)
68 if fsrc:
69 fsrc.close()
/external/tcpdump/
Dprint-fddi.c230 extract_fddi_addrs(const struct fddi_header *fddip, char *fsrc, char *fdst) in extract_fddi_addrs() argument
242 fsrc[i] = fddi_bit_swap[fddip->fddi_shost[i]]; in extract_fddi_addrs()
246 memcpy(fsrc, (const char *)fddip->fddi_shost, 6); in extract_fddi_addrs()
256 register const u_char *fsrc, register const u_char *fdst) in fddi_hdr_print() argument
260 srcname = etheraddr_string(ndo, fsrc); in fddi_hdr_print()
Dprint-token.c98 extract_token_addrs(const struct token_header *trp, char *fsrc, char *fdst) in extract_token_addrs() argument
101 memcpy(fsrc, (const char *)trp->token_shost, 6); in extract_token_addrs()
110 register const u_char *fsrc, register const u_char *fdst) in token_hdr_print() argument
114 srcname = etheraddr_string(ndo, fsrc); in token_hdr_print()
/external/python/cpython2/Lib/
Dshutil.py60 def copyfileobj(fsrc, fdst, length=16*1024): argument
63 buf = fsrc.read(length)
96 with open(src, 'rb') as fsrc:
98 copyfileobj(fsrc, fdst)
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_blend.c486 double fsrc[LP_MAX_VECTOR_LENGTH]; in test_one() local
492 read_vec(type, src, fsrc); in test_one()
498 compute_blend_ref(blend, fsrc + j, fsrc1 + j, fdst + j, fcon + j, fref + j); in test_one()
/external/python/cpython3/Lib/
Dshutil.py76 def copyfileobj(fsrc, fdst, length=16*1024): argument
79 buf = fsrc.read(length)
120 with open(src, 'rb') as fsrc:
122 copyfileobj(fsrc, fdst)
/external/python/cpython2/Doc/library/
Dshutil.rst39 .. function:: copyfileobj(fsrc, fdst[, length])
41 Copy the contents of the file-like object *fsrc* to the file-like object *fdst*.
45 consumption. Note that if the current file position of the *fsrc* object is not
/external/python/cpython3/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
/external/deqp/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()
/external/deqp/external/openglcts/modules/gles31/
Des31cShaderImageLoadStoreTests.cpp5283 const char* const fsrc[3] = { fsVer, kGLSLPrec, source.c_str() }; in Compile() local
5285 glShaderSource(fsh, 3, fsrc, NULL); in Compile()
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp3968 …bool fsrc = !ImageFormatAndFeaturesSupported(gpu(), f_float, VK_IMAGE_TILING_OPTIMAL, VK_FORMAT_FE… in TEST_F() local
4027 …if (fsrc) m_errorMonitor->SetDesiredFailureMsg(VK_DEBUG_REPORT_ERROR_BIT_EXT, "VUID-vkCmdBlitImage… in TEST_F()
4041 …if (fsrc) m_errorMonitor->SetDesiredFailureMsg(VK_DEBUG_REPORT_ERROR_BIT_EXT, "VUID-vkCmdBlitImage… in TEST_F()