Searched refs:sdst (Results 1 - 16 of 16) sorted by relevance

/freebsd-current/contrib/tcsh/
H A Dtc.str.c168 Char **sdst, **dst; local
175 sdst = dst = xmalloc((n + 1) * sizeof(Char *));
180 return (sdst);
187 char **sdst, **dst; local
194 sdst = dst = xmalloc((n + 1) * sizeof(char *));
199 return (sdst);
224 static char *sdst = NULL; local
231 if (sdst == NULL) {
233 sdst = xmalloc((dstsize + MALLOC_SURPLUS) * sizeof(char));
235 dst = sdst;
262 Char *sdst; local
273 Char *sdst; local
300 Char *sdst; local
534 static char *sdst = NULL; local
[all...]
/freebsd-current/crypto/openssl/providers/implementations/macs/
H A Dsiphash_prov.c76 struct siphash_data_st *sdst; local
80 sdst = OPENSSL_malloc(sizeof(*sdst));
81 if (sdst == NULL)
84 *sdst = *ssrc;
85 return sdst;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIPeepholeSDWA.cpp871 const MachineOperand *Sdst = TII->getNamedOperand(MI, AMDGPU::OpName::sdst);
883 MachineOperand *CarryOut = TII->getNamedOperand(MISucc, AMDGPU::OpName::sdst);
933 const MachineOperand *SDst = TII->getNamedOperand(MI, AMDGPU::OpName::sdst);
944 } else if (TII->getNamedOperand(MI, AMDGPU::OpName::sdst) ||
1005 } else if ((Dst = TII->getNamedOperand(MI, AMDGPU::OpName::sdst))) {
1006 assert(Dst && AMDGPU::hasNamedOperand(SDWAOpcode, AMDGPU::OpName::sdst));
1009 assert(AMDGPU::hasNamedOperand(SDWAOpcode, AMDGPU::OpName::sdst));
1113 // We also expect a vdst, since sdst can't preserve.
H A DSIShrinkInstructions.cpp754 // If an instruction has dead sdst replace it with NULL register on gfx1030+
759 MachineOperand *Op = TII->getNamedOperand(MI, AMDGPU::OpName::sdst);
908 // If there is no chance we will shrink it and use VCC as sdst to get
909 // a 32 bit form try to replace dead sdst with NULL.
968 AMDGPU::OpName::sdst);
H A DGCNDPPCombine.cpp130 if (const auto *SDst = TII->getNamedOperand(MI, AMDGPU::OpName::sdst)) {
131 // Give up if there are any uses of the sdst in carry-out or VOPC.
245 if (auto *SDst = TII->getNamedOperand(OrigMI, AMDGPU::OpName::sdst)) {
250 // If we shrunk a 64bit vop3b to 32bits, just ignore the sdst
H A DGCNHazardRecognizer.cpp1206 SDSTName = AMDGPU::OpName::sdst;
1299 if (TII->getNamedOperand(MI, AMDGPU::OpName::sdst))
2766 const MachineOperand *SDSTOp = TII.getNamedOperand(*MI, AMDGPU::OpName::sdst);
H A DSIOptimizeExecMasking.cpp677 MachineOperand *VCmpDest = TII->getNamedOperand(*VCmp, AMDGPU::OpName::sdst);
678 assert(VCmpDest && "Should have an sdst operand!");
H A DSILoadStoreOptimizer.cpp1114 if (const auto *Dst = TII->getNamedOperand(MI, AMDGPU::OpName::sdst)) {
1435 const auto *Dest0 = TII->getNamedOperand(*CI.I, AMDGPU::OpName::sdst);
1436 const auto *Dest1 = TII->getNamedOperand(*Paired.I, AMDGPU::OpName::sdst);
H A DSIInstrInfo.cpp490 DataOpIdx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::sdst);
4317 // Additional verification is needed for sdst/src2.
4384 } else if (AMDGPU::hasNamedOperand(Op32, AMDGPU::OpName::sdst)) {
/freebsd-current/crypto/heimdal/lib/roken/
H A Dglob.c810 Char *sdst = dst; local
818 return (sdst);
/freebsd-current/sys/cam/scsi/
H A Dscsi_ch.h83 uint8_t sdst[2]; /* second destination address */ member in struct:scsi_exchange_medium
H A Dscsi_ch.c1776 scsi_ulto2b(dst2, scsi_cmd->sdst);
/freebsd-current/sys/netinet6/
H A Dicmp6.c2334 struct sockaddr_in6 sdst; local
2341 bzero(&sdst, sizeof(sdst));
2343 sdst.sin6_family = ssrc.sin6_family = AF_INET6;
2344 sdst.sin6_len = ssrc.sin6_len = sizeof(struct sockaddr_in6);
2345 bcopy(&reddst6, &sdst.sin6_addr, sizeof(struct in6_addr));
2359 rib_add_redirect(fibnum, (struct sockaddr *)&sdst, gw,
/freebsd-current/usr.sbin/route6d/
H A Droute6d.c1951 rt_del(const struct sockaddr_in6 *sdst, argument
1962 if (sdst->sin6_family != AF_INET6) {
1966 if (IN6_IS_ADDR_LINKLOCAL(&sdst->sin6_addr)
1967 || IN6_ARE_ADDR_EQUAL(&sdst->sin6_addr, &in6addr_loopback)
1968 || IN6_IS_ADDR_MULTICAST(&sdst->sin6_addr)) {
1970 inet6_n2p(&sdst->sin6_addr));
1973 dst = &sdst->sin6_addr;
1991 &sdst->sin6_addr)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp873 if (AMDGPU::hasNamedOperand(MI.getOpcode(), AMDGPU::OpName::sdst))
877 int SDst = AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::sdst);
879 // VOPC - insert VCC register as sdst
881 AMDGPU::OpName::sdst);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4666 int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::sdst);

Completed in 233 milliseconds