/external/llvm-project/clang/test/CodeGen/ |
D | builtins-nvptx-sm_70.cu | 30 float *fsrc, float *fdst, in nvvm_wmma_m16n16k16() argument 55 __hmma_m16n16k16_ld_c_f32(fdst, fsrc, ldm, 0); in nvvm_wmma_m16n16k16() 58 __hmma_m16n16k16_ld_c_f32(fdst, fsrc, ldm, 1); in nvvm_wmma_m16n16k16() 69 __hmma_m16n16k16_st_c_f32(fdst, fsrc, ldm, 0); in nvvm_wmma_m16n16k16() 72 __hmma_m16n16k16_st_c_f32(fdst, fsrc, ldm, 1); in nvvm_wmma_m16n16k16() 126 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 0, 0); in nvvm_wmma_m16n16k16() 129 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 0, 1); in nvvm_wmma_m16n16k16() 132 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 1, 0); in nvvm_wmma_m16n16k16() 135 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 1, 1); in nvvm_wmma_m16n16k16() 138 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 2, 0); in nvvm_wmma_m16n16k16() [all …]
|
D | builtins-nvptx-mma.cu | 32 float *fsrc, float *fdst, int ldm) { in test_wmma_buitins() argument 57 __hmma_m16n16k16_ld_c_f32(fdst, fsrc, ldm, 1); in test_wmma_buitins() 60 __hmma_m16n16k16_ld_c_f32(fdst, fsrc, ldm, 0); in test_wmma_buitins() 69 __hmma_m16n16k16_st_c_f32(fdst, fsrc, ldm, 1); in test_wmma_buitins() 72 __hmma_m16n16k16_st_c_f32(fdst, fsrc, ldm, 0); in test_wmma_buitins() 99 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 3, 0); in test_wmma_buitins() 102 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 3, 1); in test_wmma_buitins() 105 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 2, 0); in test_wmma_buitins() 108 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 2, 1); in test_wmma_buitins() 111 __hmma_m16n16k16_mma_f32f16(fdst, src, src, src, 1, 0); in test_wmma_buitins() [all …]
|
/external/python/cpython3/Lib/distutils/ |
D | file_util.py | 26 fdst = None 41 fdst = open(dst, 'wb') 57 fdst.write(buf) 62 if fdst: 63 fdst.close()
|
/external/python/cpython2/Lib/distutils/ |
D | file_util.py | 29 fdst = None 44 fdst = open(dst, 'wb') 60 fdst.write(buf) 66 if fdst: 67 fdst.close()
|
/external/tcpdump/ |
D | print-fddi.c | 230 extract_fddi_addrs(const struct fddi_header *fddip, char *fsrc, char *fdst) in extract_fddi_addrs() argument 240 fdst[i] = fddi_bit_swap[fddip->fddi_dhost[i]]; in extract_fddi_addrs() 245 memcpy(fdst, (const char *)fddip->fddi_dhost, 6); in extract_fddi_addrs() 256 register const u_char *fsrc, register const u_char *fdst) in fddi_hdr_print() argument 261 dstname = etheraddr_string(ndo, fdst); in fddi_hdr_print()
|
D | print-token.c | 98 extract_token_addrs(const struct token_header *trp, char *fsrc, char *fdst) in extract_token_addrs() argument 100 memcpy(fdst, (const char *)trp->token_dhost, 6); in extract_token_addrs() 110 register const u_char *fsrc, register const u_char *fdst) in token_hdr_print() argument 115 dstname = etheraddr_string(ndo, fdst); in token_hdr_print()
|
/external/python/cpython3/Lib/ |
D | shutil.py | 94 def _fastcopy_fcopyfile(fsrc, fdst, flags): argument 100 outfd = fdst.fileno() 108 err.filename2 = fdst.name 114 def _fastcopy_sendfile(fsrc, fdst): argument 131 outfd = fdst.fileno() 156 err.filename2 = fdst.name 178 def _copyfileobj_readinto(fsrc, fdst, length=COPY_BUFSIZE): argument 185 fdst_write = fdst.write 193 fdst.write(smv) 197 def copyfileobj(fsrc, fdst, length=0): argument [all …]
|
/external/python/cpython2/Lib/ |
D | shutil.py | 60 def copyfileobj(fsrc, fdst, length=16*1024): argument 66 fdst.write(buf) 97 with open(dst, 'wb') as fdst: 98 copyfileobj(fsrc, fdst)
|
/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nvfx_vertprog.c | 421 tgsi_dst(struct nvfx_vpc *vpc, const struct tgsi_full_dst_register *fdst) { in tgsi_dst() argument 424 switch (fdst->Register.File) { in tgsi_dst() 429 dst = vpc->r_result[fdst->Register.Index]; in tgsi_dst() 432 dst = vpc->r_temp[fdst->Register.Index]; in tgsi_dst() 435 dst = vpc->r_address[fdst->Register.Index]; in tgsi_dst() 438 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()
|
/external/toybox/tests/ |
D | cp.test | 132 rm file fdst lnk ldst ldst2
|
/external/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()
|
/external/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()
|
/external/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()
|
/external/python/cpython2/Doc/library/ |
D | shutil.rst | 39 .. function:: copyfileobj(fsrc, fdst[, length]) 41 Copy the contents of the file-like object *fsrc* to the file-like object *fdst*.
|
/external/python/cpython3/Lib/test/ |
D | test_shutil.py | 2201 with open(dst, 'rb') as fdst: 2202 self.assertEqual(fsrc.read(), fdst.read()) 2356 def zerocopy_fun(self, fsrc, fdst): argument 2357 return shutil._fastcopy_sendfile(fsrc, fdst)
|
/external/python/cpython3/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*.
|
/external/vulkan-validation-layers/tests/ |
D | vklayertests_buffer_image_memory_sampler.cpp | 1558 …bool fdst = !ImageFormatAndFeaturesSupported(gpu(), f_float, VK_IMAGE_TILING_OPTIMAL, VK_FORMAT_FE… in TEST_F() local 1611 …if (fdst) m_errorMonitor->SetDesiredFailureMsg(VK_DEBUG_REPORT_ERROR_BIT_EXT, "VUID-vkCmdBlitImage… in TEST_F() 1625 …if (fdst) m_errorMonitor->SetDesiredFailureMsg(VK_DEBUG_REPORT_ERROR_BIT_EXT, "VUID-vkCmdBlitImage… in TEST_F()
|