Searched refs:SRC (Results 1 - 25 of 123) sorted by last modified time

12345

/freebsd-11-stable/contrib/elftoolchain/libelf/
H A D_libelf.h179 #define LIBELF_COPY_U32(DST, SRC, NAME) do { \
180 if ((SRC)->NAME > UINT32_MAX) { \
184 (DST)->NAME = (SRC)->NAME & 0xFFFFFFFFU; \
187 #define LIBELF_COPY_S32(DST, SRC, NAME) do { \
188 if ((SRC)->NAME > INT32_MAX || \
189 (SRC)->NAME < INT32_MIN) { \
193 (DST)->NAME = (int32_t) (SRC)->NAME; \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineSink.cpp231 const TargetRegisterClass *SRC = MRI->getRegClass(SrcReg); local
233 if (SRC != DRC)
H A DMachineVerifier.cpp1771 const TargetRegisterClass *SRC = local
1773 if (!SRC) {
1779 if (RC != SRC) {
/freebsd-11-stable/share/mk/
H A Dsrc.libnames.mk580 # it is fine as it resolves to the SRC directory.
H A Datf.test.mk68 # TODO(jmmv): It seems to me that this SED and SRC functionality should
H A Dlocal.dirdeps.mk80 # generated yet. This can be based on things such as SRC files and LIBADD.
167 # This only works for DPADD with full OBJ/SRC paths, which is mostly just
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1475 if (CodeGenRegisterClass *SRC = RC.getSubClassWithSubReg(&Idx))
1476 OS << " " << SRC->EnumValue + 1 << ",\t// " << Idx.getName()
1477 << " -> " << SRC->getName() << "\n";
1644 for (const CodeGenRegisterClass &SRC : RegBank.getRegClasses()) {
1645 if (!SubClasses.test(SRC.EnumValue))
1647 OS << " " << SRC.getName();
1651 for (const CodeGenRegisterClass *SRC : RC.getSuperClasses()) {
1652 OS << " " << SRC->getName();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp2227 unsigned SRC = MRI.getRegClass(S)->getID();
2228 if (SRC != Hexagon::IntRegsRegClassID &&
2229 SRC != Hexagon::DoubleRegsRegClassID)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.h163 /// \returns A VGPR reg class with the same width as \p SRC
165 const TargetRegisterClass *SRC) const;
167 /// \returns An AGPR reg class with the same width as \p SRC
169 const TargetRegisterClass *SRC) const;
171 /// \returns A SGPR reg class with the same width as \p SRC
H A DSIRegisterInfo.cpp1326 const TargetRegisterClass *SRC) const {
1327 switch (getRegSizeInBits(*SRC)) {
1352 const TargetRegisterClass *SRC) const {
1353 switch (getRegSizeInBits(*SRC)) {
H A DSIInstrInfo.cpp4223 const TargetRegisterClass *SRC = RI.getEquivalentSGPRClass(VRC);
4224 Register DstReg = MRI.createVirtualRegister(SRC);
4549 const TargetRegisterClass *RC = nullptr, *SRC = nullptr, *VRC = nullptr;
4559 SRC = OpRC;
4568 assert(SRC);
4573 ? RI.getEquivalentAGPRClass(SRC)
4574 : RI.getEquivalentVGPRClass(SRC);
4582 RC = SRC;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp569 const TargetRegisterClass *SRC =
571 SRC = TRI->getSubClassWithSubReg(SRC, SubIdx);
572 assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG");
574 if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase)))
575 VRBase = MRI->createVirtualRegister(SRC);
655 const TargetRegisterClass *SRC =
657 if (SRC && SRC != RC) {
658 MRI->setRegClass(NewVReg, SRC);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp3565 UnaryOperator SRC(&SrcExpr, UO_Deref, SrcTy->getPointeeType(),
3568 Expr *Args[2] = { &DST, &SRC };
3644 UnaryOperator SRC(&SrcExpr, UO_Deref, SrcTy->getPointeeType(),
3651 ConstructorArgs.push_back(&SRC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1093 GenericValue SRC = getOperandValue(I.getPointerOperand(), SF);
1094 GenericValue *Ptr = (GenericValue*)GVTOP(SRC);
1105 GenericValue SRC = getOperandValue(I.getPointerOperand(), SF);
1106 StoreValueToMemory(Val, (GenericValue *)GVTOP(SRC),
1173 GenericValue SRC = getOperandValue(SF.Caller.getCalledValue(), SF);
1174 callFunction((Function*)GVTOP(SRC), ArgVals);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAMDHSAKernelDescriptor.h37 #define AMDHSA_BITS_GET(SRC, MSK) ((SRC & MSK) >> MSK ## _SHIFT)
/freebsd-11-stable/contrib/tcpdump/
H A DMakefile.in248 SRC = $(CSRC) $(GENSRC) $(LOCALSRC) $(LIBNETDISSECT_SRC)
250 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
313 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
426 lint -hbxn $(SRC) | \
463 $(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)
/freebsd-11-stable/contrib/libpcap/testprogs/
H A DMakefile.in81 SRC = @VALGRINDTEST_SRC@ \
91 TESTS = $(SRC:.c=)
94 $(SRC) $(HDR)
144 ../$(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" $(CFLAGS) $(DEFS) $(INCLS) $(SRC)
/freebsd-11-stable/contrib/libpcap/
H A Dscanner.l256 src return SRC;
H A Dgrammar.y321 %token DST SRC HOST GATEWAY
483 dqual: SRC { $$ = Q_SRC; }
485 | SRC OR DST { $$ = Q_OR; }
486 | DST OR SRC { $$ = Q_OR; }
487 | SRC AND DST { $$ = Q_AND; }
488 | DST AND SRC { $$ = Q_AND; }
H A DMakefile.in99 SRC = $(PSRC) $(FSRC) $(CSRC) $(SSRC) $(GENSRC)
101 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
154 $(SRC) $(HDR)
772 $(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" $(CFLAGS) $(DEFS) $(INCLS) $(SRC)
/freebsd-11-stable/contrib/libpcap/rpcapd/
H A DMakefile.in82 SRC = daemon.c \
87 OBJ = $(SRC:.c=.o) ../rpcap-protocol.o ../sockutils.o ../fmtutils.o
93 $(SRC) $(HDR)
141 ../$(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" $(CFLAGS) $(DEFS) $(INCLS) $(SRC)
/freebsd-11-stable/crypto/openssl/
H A DMakefile199 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
/freebsd-11-stable/contrib/tcsh/
H A Dtc.os.h609 # define va_copy(DEST, SRC) __va_copy(DEST, SRC)
611 # define va_copy(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof(va_list))
/freebsd-11-stable/release/picobsd/build/
H A Dpicobsd69 # SRC points to your FreeBSD source tree.
71 # Normally /usr or ${SRC}/../usr
75 # Normally ${SRC}/release/picobsd
76 # You can set SRC with --src <directory>
123 SRC="/usr/src" # default location for sources
166 log "create_includes_and_libraries2() for ${SRC} $1"
172 ( cd ${SRC};
181 eval export `cd ${SRC}; ${BINMAKE} -f Makefile.inc1 -V WMAKEENV`
249 printf "${MSG}---> We'll use the sources living in ${SRC}\n\n"
392 (cd $MY_TREE; export name SRC BUILDDI
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rsa/
H A DMakefile29 SRC= $(LIBSRC) macro
34 ALL= $(GENERAL) $(SRC) $(HEADER)
63 ctags $(SRC)
68 lint -DLINT $(INCLUDES) $(SRC)>fluff

Completed in 252 milliseconds

12345