Searched refs:Source (Results 201 - 225 of 236) sorted by relevance

12345678910

/freebsd-13-stable/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdinit.c593 tdsaAllShared->eventSource[i].Source.agPortContext = agNULL;
594 tdsaAllShared->eventSource[i].Source.event = 0;
596 tdsaAllShared->eventSource[i].Source.param = 0xFF;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp639 SDValue Source = Vector; local
642 Source = Vector->getOperand(0);
647 CurDAG->getMachineNode(Op, SDLoc(N), MVT::f16, MVT::f16, Source);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp1126 /*Cksum=*/None, /*Source=*/None);
1131 RootFile.Checksum, RootFile.Source));
4254 Optional<StringRef> Source; local
4310 Source = StringRef(SourceBuf, SourceString.size());
4315 getStreamer().emitDwarfFile0Directive(Directory, Filename, CKMem, Source);
4318 FileNumber, Directory, Filename, CKMem, Source);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp5429 const ArrayType *Source) {
5432 if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0)))
5436 if (!Context.hasSameType(Dest->getElementType(), Source->getElementType()))
5441 return Source->isConstantArrayType() && Dest->isIncompleteArrayType();
8345 Expr *Source = CurInit.get();
8351 Source ? MultiExprArg(Source) : Args, *Step,
H A DSemaType.cpp8370 if (auto *Source = Context.getExternalSource()) {
8371 Source->CompleteRedeclChain(D);
8488 if (auto *Source = Context.getExternalSource()) {
8490 Source->CompleteType(Tag);
8492 Source->CompleteType(IFace);
H A DSemaChecking.cpp213 clang::Expr *Source = TheCall->getArg(0);
219 QualType SrcTy = Source->getType();
228 S.Diag(Source->getExprLoc(), diag::err_typecheck_expect_scalar_operand)
269 SourceLocation(), Source);
11264 const Type *Source = local
11270 dyn_cast<BuiltinType>(ToBool ? Source : Target);
11271 const Type *BoolCandidateType = ToBool ? Target : Source;
11522 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr(); local
11524 if (Source == Target) return;
11535 if (Source
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp398 StringRef Source = SM.getBufferData(FID, &SourceInvalid); local
403 return Source;
443 Optional<StringRef> Source) {
474 llvm::DIFile *F = DBuilder.createFile(File, Dir, CSInfo, Source);
2569 // TODO: Support "Source" from external AST providers?
441 createFile(StringRef FileName, Optional<llvm::DIFile::ChecksumInfo<StringRef>> CSInfo, Optional<StringRef> Source) argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h55 ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1763 OS.indent(Depth + 2) << *Instrs[Source] << " -> \n";
H A DDependenceAnalysis.cpp256 FullDependence::FullDependence(Instruction *Source, Instruction *Destination, argument
259 : Dependence(Source, Destination), Levels(CommonLevels),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp871 bool AMDGPUTargetLowering::isTruncateFree(EVT Source, EVT Dest) const { argument
874 unsigned SrcSize = Source.getSizeInBits();
880 bool AMDGPUTargetLowering::isTruncateFree(Type *Source, Type *Dest) const { argument
883 unsigned SrcSize = Source->getScalarSizeInBits();
H A DR600ISelLowering.cpp275 setSchedulingPreference(Sched::Source);
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A DAndroid.mk2 # Copyright (C) 2008 The Android Open Source Project
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2291 bool SwingSchedulerDAG::isLoopCarriedDep(SUnit *Source, const SDep &Dep, argument
2303 MachineInstr *SI = Source->getInstr();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp974 if (LineInfo.Source) {
975 Buffer = MemoryBuffer::getMemBuffer(*LineInfo.Source);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp406 /// Resolve the entries in \p Source, going over loops recursively and
411 bool TGParser::resolve(const std::vector<RecordsEntry> &Source, argument
415 for (auto &E : Source) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp7022 auto Source = find(Sources, SourceVec); local
7023 if (Source == Sources.end())
7024 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
7028 Source->MinElt = std::min(Source->MinElt, EltNo);
7029 Source->MaxElt = std::max(Source->MaxElt, EltNo);
7042 for (auto &Source : Sources) {
7043 EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
13574 // Source valu
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1666 auto Source = N->getRawSource(); local
1667 if (Source)
1668 Record.push_back(VE.getMetadataOrNullID(*Source));
/freebsd-13-stable/lib/clang/libclang/
H A DMakefile108 SRCS_MIN+= AST/Interp/Source.cpp
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h98 Source, // Follow source order. enumerator in enum:llvm::Sched::Preference
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp85 setSchedulingPreference(Sched::Source);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp3811 if (const Expr *Source = OVE->getSourceExpr())
3812 return Source->isNullPointerConstant(Ctx, NPC);
H A DExprConstant.cpp509 /// Source location information about the default argument or default
7137 const Expr *Source = E->getSourceExpr();
7138 if (!Source)
7140 if (Source == E) { // sanity checking.
7144 return StmtVisitorTy::Visit(Source);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7737 auto Source = llvm::find(Sources, SourceVec); local
7738 if (Source == Sources.end())
7739 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
7743 Source->MinElt = std::min(Source->MinElt, EltNo);
7744 Source->MaxElt = std::max(Source->MaxElt, EltNo);
7755 for (auto &Source : Sources) {
7756 EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp264 TLI->getSchedulingPreference() == Sched::Source)

Completed in 521 milliseconds

12345678910