Home
last modified time | relevance | path

Searched defs:Agg (Results 1 – 25 of 44) sorted by relevance

12

/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-byval-thunks.cpp5 struct Agg { struct
18 // CHECK32: (%"struct.byval_thunk::C"* %this, <{ %"struct.byval_thunk::Agg" }>* inalloc…
34 struct Agg { struct
47 // CHECK32: (<{ %"struct.stdcall_thunk::C"*, %"struct.stdcall_thunk::Agg" }>* inalloca)
66 struct Agg { struct
78 // CHECK32-LABEL: define linkonce_odr %"struct.sret_thunk::Agg"* @"\01?foo@C@sret_thunk@@W3AA?AUAgg…
Dconst-init-cxx11.cpp441 struct Agg { int k; }; struct
/external/clang/test/CodeGen/
Dblock-byref-aggr.c4 typedef struct { int v; } Agg; typedef
/external/clang/test/CXX/basic/basic.types/
Dp10.cpp69 struct Agg { struct
73 constexpr int f3(Agg a) { return a.a; } in f3() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantsContext.h174 ExtractValueConstantExpr(Constant *Agg, ArrayRef<unsigned> IdxList, in ExtractValueConstantExpr()
205 InsertValueConstantExpr(Constant *Agg, Constant *Val, in InsertValueConstantExpr()
DConstantFold.cpp910 Constant *llvm::ConstantFoldExtractValueInstruction(Constant *Agg, in ConstantFoldExtractValueInstruction()
922 Constant *llvm::ConstantFoldInsertValueInstruction(Constant *Agg, in ConstantFoldInsertValueInstruction()
/external/llvm/lib/IR/
DConstantsContext.h168 ExtractValueConstantExpr(Constant *Agg, ArrayRef<unsigned> IdxList, in ExtractValueConstantExpr()
200 InsertValueConstantExpr(Constant *Agg, Constant *Val, in InsertValueConstantExpr()
DConstantFold.cpp870 Constant *llvm::ConstantFoldExtractValueInstruction(Constant *Agg, in ConstantFoldExtractValueInstruction()
882 Constant *llvm::ConstantFoldInsertValueInstruction(Constant *Agg, in ConstantFoldInsertValueInstruction()
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
Dp7-cxx11-nowarn.cpp31 struct Agg { struct
48Agg<char> a1 = {1.0F}; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected… in float_to_int() argument
Dp7-0x.cpp30 struct Agg { struct
47Agg<char> a1 = {1.0F}; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-n… in float_to_int() argument
/external/clang/test/SemaCXX/
Dcxx98-compat.cpp117 …struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from i… in RangeFor() argument
Daggregate-initialization.cpp81 class Agg { class
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantFolder.h267 Constant *CreateExtractValue(Constant *Agg, in CreateExtractValue()
272 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue()
DNoFolder.h332 Instruction *CreateExtractValue(Constant *Agg, in CreateExtractValue()
337 Instruction *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue()
/external/llvm/include/llvm/IR/
DConstantFolder.h232 Constant *CreateExtractValue(Constant *Agg, in CreateExtractValue()
237 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue()
DNoFolder.h286 Instruction *CreateExtractValue(Constant *Agg, in CreateExtractValue()
291 Instruction *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetFolder.h259 Constant *CreateExtractValue(Constant *Agg, in CreateExtractValue()
264 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue()
/external/llvm/include/llvm/Analysis/
DTargetFolder.h257 Constant *CreateExtractValue(Constant *Agg, in CreateExtractValue()
262 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue()
/external/llvm/tools/llvm-c-test/
Decho.cpp634 LLVMValueRef Agg = CloneValue(LLVMGetOperand(Src, 0)); in CloneInstruction() local
642 LLVMValueRef Agg = CloneValue(LLVMGetOperand(Src, 0)); in CloneInstruction() local
/external/llvm/lib/Analysis/
DCFLGraph.h440 auto *Agg = Inst.getOperand(0); in visitInsertValueInst() local
DInstructionSimplify.cpp3607 static Value *SimplifyInsertValueInst(Value *Agg, Value *Val, in SimplifyInsertValueInst()
3635 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL, in SimplifyInsertValueInst()
3644 static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, in SimplifyExtractValueInst()
3667 Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, in SimplifyExtractValueInst()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLGraph.h491 auto *Agg = Inst.getOperand(0); in visitInsertValueInst() local
DInstructionSimplify.cpp1880 Value *Agg = Extract->getAggregateOperand(); in omitCheckForZeroBeforeMulWithOverflowInternal() local
4160 static Value *SimplifyInsertValueInst(Value *Agg, Value *Val, in SimplifyInsertValueInst()
4187 Value *llvm::SimplifyInsertValueInst(Value *Agg, Value *Val, in SimplifyInsertValueInst()
4229 static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, in SimplifyExtractValueInst()
4252 Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, in SimplifyExtractValueInst()
/external/python/cpython2/Lib/sqlite3/test/
Ddbapi.py794 class Agg: class
/external/python/cpython3/Lib/sqlite3/test/
Ddbapi.py822 class Agg: class

12