Searched refs:Init (Results 26 - 50 of 259) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTT.cpp82 llvm::Constant *Init = llvm::ConstantExpr::getGetElementPtr( local
86 Init = llvm::ConstantExpr::getBitCast(Init, Int8PtrTy);
88 VTTComponents.push_back(Init);
91 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents); local
93 VTT->setInitializer(Init);
H A DCGDecl.cpp246 llvm::Constant *Init = nullptr; local
249 Init = llvm::UndefValue::get(LTy);
251 Init = EmitNullConstant(Ty);
254 getModule(), LTy, Ty.isConstant(getContext()), Linkage, Init, Name,
319 llvm::Constant *Init = emitter.tryEmitForInitializer(D); local
323 if (!Init) {
340 if (GV->getType()->getElementType() != Init->getType()) {
343 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
345 OldGV->getLinkage(), Init, "",
366 GV->setInitializer(Init);
863 canEmitInitWithFewStoresAfterBZero(llvm::Constant *Init, unsigned &NumStores) argument
901 emitStoresForInitAfterBZero(CodeGenModule &CGM, llvm::Constant *Init, Address Loc, bool isVolatile, CGBuilderTy &Builder) argument
945 shouldUseBZeroPlusStoresToInitialize(llvm::Constant *Init, uint64_t GlobalSize) argument
966 shouldUseMemSetToInitialize(llvm::Constant *Init, uint64_t GlobalSize, const llvm::DataLayout &DL) argument
1628 const Expr *Init = VD->getInit(); local
1650 isTrivialInitializer(const Expr *Init) argument
1756 const Expr *Init = D.getInit(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp39 SmallVector<Init*, 4> TemplateArgs;
49 SmallVector<Init*, 4> TemplateArgs;
64 for (Init *TA : TemplateArgs)
74 Init *Bit = BV->getBit(i);
99 if (Init *V = RV.getValue()) {
112 /// Return an Init with a qualifier prefix referring
114 static Init *QualifyName(Record &CurRec, MultiClass *CurMultiClass,
115 Init *Name, StringRef Scoper) {
116 Init *NewName =
120 Init *Prefi
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp789 Expr *&Init) {
802 if (Init->containsUnexpandedParameterPack()) {
818 SourceRange(Loc, Loc), IsDirectInit, Init);
823 ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
832 Loc, Init->getBeginLoc(), Init->getEndLoc())
834 : InitializationKind::CreateCopy(Loc, Init->getBeginLoc());
836 MultiExprArg Args = Init;
847 Init = Result.getAs<Expr>();
855 unsigned InitStyle, Expr *Init) {
786 buildLambdaInitCaptureInitialization( SourceLocation Loc, bool ByRef, SourceLocation EllipsisLoc, Optional<unsigned> NumExpansions, IdentifierInfo *Id, bool IsDirectInit, Expr *&Init) argument
851 createLambdaInitCaptureVarDecl(SourceLocation Loc, QualType InitCaptureType, SourceLocation EllipsisLoc, IdentifierInfo *Id, unsigned InitStyle, Expr *Init) argument
1503 ExprResult Init; local
1563 Expr *Init = From.getVariable()->getInit(); local
1770 ExprResult Init = BuildCaptureInit(From, ImplicitCaptureLoc); local
1879 ExprResult Init = PerformCopyInitialization( local
[all...]
H A DSemaInit.cpp58 /// Check whether the array of type AT can be initialized by the Init
62 static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT, argument
68 Init = Init->IgnoreParens();
71 if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
75 StringLiteral *SL = dyn_cast<StringLiteral>(Init);
452 void FillInEmptyInitForBase(unsigned Init, const CXXBaseSpecifier &Base,
456 void FillInEmptyInitForField(unsigned Init, FieldDecl *Field,
605 unsigned Init, const CXXBaseSpecifier &Base,
611 if (Init >
604 FillInEmptyInitForBase( unsigned Init, const CXXBaseSpecifier &Base, const InitializedEntity &ParentEntity, InitListExpr *ILE, bool &RequiresSecondPass, bool FillWithNoInit) argument
636 FillInEmptyInitForField(unsigned Init, FieldDecl *Field, const InitializedEntity &ParentEntity, InitListExpr *ILE, bool &RequiresSecondPass, bool FillWithNoInit) argument
793 unsigned Init = 0; local
1655 Expr *Init = IList->getInit(Index); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp34 if (Constant *Init = GVCtor->getInitializer()) {
35 unsigned n = Init->getNumOperands();
38 CurrentCtors.push_back(cast<Constant>(Init->getOperand(i)));
75 SmallVector<Constant *, 16> Init; local
81 Init.push_back(C);
90 Init.push_back(C);
93 if (Init.empty())
96 ArrayType *ATy = ArrayType::get(Int8PtrTy, Init.size());
98 ConstantArray::get(ATy, Init), Name);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp182 Constant *Init = GV->getInitializer(); local
185 GlobalVariable *&Slot = CMap[Init];
193 LLVM_DEBUG(dbgs() << "Cmap[" << *Init << "] = " << GV->getName()
213 Constant *Init = GV->getInitializer(); local
216 auto Found = CMap.find(Init);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_ring_buffer.h93 void Init(void *storage, uptr size) { function in class:__sanitizer::CompactRingBuffer
110 Init(storage, size);
117 Init(storage, size);
H A Dsanitizer_allocator_stats.h28 void Init() { function in class:AllocatorStats
65 void Init() { function in class:AllocatorGlobalStats
H A Dsanitizer_mutex.h24 void Init() { function in class:__sanitizer::StaticSpinMutex
65 Init();
H A Dsanitizer_allocator_local_cache.h21 void Init(AllocatorGlobalStats *s) { function in struct:SizeClassAllocator64LocalCache
22 stats_.Init();
125 void Init(AllocatorGlobalStats *s) { function in struct:SizeClassAllocator32LocalCache
126 stats_.Init();
/freebsd-11-stable/usr.sbin/ppp/
H A Dccp.h104 void *state; /* Returned by implementations Init() */
110 void *state; /* Returned by implementations Init() */
133 void *(*Init)(struct bundle *, struct fsm_opt *); member in struct:ccp_algorithm::__anon8839
144 void *(*Init)(struct bundle *, struct fsm_opt *); member in struct:ccp_algorithm::__anon8840
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp187 auto Init = GVar->getInitializer(); local
188 if (auto CA = dyn_cast<ConstantDataArray>(Init)) {
191 } else if (isa<ConstantAggregateZero>(Init)) {
255 Constant *Init = GV->getInitializer(); local
256 ConstantDataArray *CA = dyn_cast<ConstantDataArray>(Init);
257 if (Init->isZeroValue() || CA->isString()) {
258 size_t SizeStr = Init->isZeroValue()
441 Constant *Init = GV->getInitializer(); local
442 ConstantDataArray *CA = dyn_cast<ConstantDataArray>(Init);
443 if (Init
[all...]
/freebsd-11-stable/sys/opencrypto/
H A Dxform_auth.h59 void (*Init) (void *); member in struct:auth_hash
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp151 Expr *Init = VD->getInit(); local
152 if (!Init)
159 ExprWithCleanups *Ex1 = dyn_cast<ExprWithCleanups>(Init);
184 VDLoc, Init->getSourceRange());
H A DDereferenceChecker.cpp100 const Expr *Init; local
101 std::tie(VD, Init) = parseAssignment(S);
102 if (VD && Init)
103 E = Init;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cpp38 void VarSizeStackTrace::Init(const uptr *pcs, uptr cnt, uptr extra_top_pc) { function in class:__tsan::VarSizeStackTrace
/freebsd-11-stable/contrib/libstdc++/src/
H A Dios.cc76 _Atomic_word ios_base::Init::_S_refcount;
78 bool ios_base::Init::_S_synced_with_stdio = true;
/freebsd-11-stable/sys/dev/glxsb/
H A Dglxsb_hash.c63 axf->Init(ses->ses_ictx);
70 axf->Init(ses->ses_octx);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h673 Expr *Init) {
674 if (!Init) return CreateDefault(Loc);
676 return CreateCopy(Loc, Init->getBeginLoc());
677 if (isa<InitListExpr>(Init))
678 return CreateDirectList(Loc, Init->getBeginLoc(), Init->getEndLoc());
679 return CreateDirect(Loc, Init->getBeginLoc(), Init->getEndLoc());
672 CreateForInit(SourceLocation Loc, bool DirectInit, Expr *Init) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DInstructionSelector.h65 PredicateBitsetImpl(std::initializer_list<unsigned> Init) { argument
66 for (auto I : Init)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator_secondary.h70 void Init() { function in class:LargeMmapAllocator
87 uptr ReservedBeg = AddressRange.Init(ReservedSize, SecondaryAllocatorName);
/freebsd-11-stable/sys/netinet/libalias/
H A Dalias_sctp.h158 struct sctp_init *Init; /**< Pointer to Init Chunk */ member in union:sctpChunkOfInt
159 struct sctp_init_ack *InitAck; /**< Pointer to Init Chunk */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.h26 void Init(uptr stack_buffer_start, uptr stack_buffer_size); // Must be called from the thread itself.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DProgramPoint.cpp120 const CXXCtorInitializer *Init = castAs<PostInitializer>().getInitializer(); local
121 if (const FieldDecl *FD = Init->getAnyMember()) {
125 QualType Ty = Init->getTypeSourceInfo()->getType();

Completed in 424 milliseconds

1234567891011