/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | PatternInit.cpp | 79 llvm::SmallVector<llvm::Constant *, 8> Struct(StructTy->getNumElements()); in initializationPatternFor() local 80 for (unsigned El = 0; El != Struct.size(); ++El) in initializationPatternFor() 81 Struct[El] = initializationPatternFor(CGM, StructTy->getElementType(El)); in initializationPatternFor() 82 return llvm::ConstantStruct::get(StructTy, Struct); in initializationPatternFor()
|
/netbsd-src/external/gpl3/autoconf/dist/lib/Autom4te/ |
H A D | Request.pm | 35 use Class::Struct;
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeTypeUDT.cpp | 118 case TypeRecordKind::Struct: in getUdtKind() 119 return PDB_UdtType::Struct; in getUdtKind()
|
H A D | NativeRawSymbol.cpp | 405 return PDB_UdtType::Struct; in getUdtKind()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | APValue.cpp | 359 case Struct: in APValue() 418 else if (Kind == Struct) in DestroyDataAndMakeUninit() 435 case Struct: in needsCleanup() 495 case Struct: in Profile() 813 case APValue::Struct: { in printPretty() 1063 case APValue::Struct: { in getLVForValue()
|
/netbsd-src/external/gpl3/autoconf/dist/ |
H A D | ChangeLog | 171 maint: drop syncing with Automake::Struct 172 The module Automake::Struct has been removed in automake master 174 'Automake::Struct' module"): since Automake now requires Perl 5.6, 176 of Perl 5.6's 'Class::Struct' to Perl 5.5. With this change, we 180 * lib/Autom4te/Struct.pm: Delete. 184 * lib/Autom4te/Request.pm: Use 'Class::Struct' instead of 185 'Autom4te::Struct'. 286 * lib/Autom4te/Struct.pm: Likewise.
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/Misc/ |
H A D | zkill | 54 class Struct: class 119 table.append(Struct(**record))
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Index/ |
H A D | IndexSymbol.h | 32 Struct, enumerator
|
/netbsd-src/external/bsd/libevent/dist/ |
H A D | event_rpcgen.py | 65 class Struct(object): class 99 class StructCCode(Struct): 103 Struct.__init__(self, name) 1577 newstruct = factory.Struct(tokens[1]) 1801 def Struct(name): member in CCodeGenerator
|
/netbsd-src/external/gpl2/grep/dist/ |
H A D | TODO | 34 Take a look at sgrep (Struct grep).
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | APValue.h | 140 Struct, 401 bool isStruct() const { return Kind == Struct; } 660 Kind = Struct;
|
H A D | CommentCommands.td | 232 def Struct : RecordLikeDeclarationVerbatimLineCommand<"struct">;
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | Intrinsics.h | 128 Struct, enumerator
|
/netbsd-src/external/bsd/pcc/dist/pcc/arch/i86/ |
H A D | TODO | 14 Struct/Union testing
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | CodeExtractor.cpp | 1162 AllocaInst *Struct = nullptr; in emitCallAndSwitchStatement() local 1170 Struct = new AllocaInst(StructArgTy, DL.getAllocaAddrSpace(), nullptr, in emitCallAndSwitchStatement() 1173 params.push_back(Struct); in emitCallAndSwitchStatement() 1180 StructArgTy, Struct, Idx, "gep_" + StructValues[i]->getName()); in emitCallAndSwitchStatement() 1218 StructArgTy, Struct, Idx, "gep_reload_" + outputs[i]->getName()); in emitCallAndSwitchStatement()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/ |
H A D | IndexSymbol.cpp | 110 Info.Kind = SymbolKind::Struct; break; in getSymbolInfo() 508 case SymbolKind::Struct: return "struct"; in getSymbolKindString()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | AMDGPUMetadata.h | 96 Struct = 0, enumerator
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
H A D | atomic.d | 1032 static struct Struct 1036 shared Struct s1 = Struct(1, 2); 1037 atomicStore(s1, Struct(3, 4));
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | sumtype.d | 1056 static struct Struct { Field[] fields; } 1057 alias MySum = SumType!Struct; 1062 auto a = MySum(Struct(arr1[])); 1063 auto b = MySum(Struct(arr2[]));
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
H A D | MasmParser.cpp | 3534 StructInfo &Struct = StructInProgress.back(); in addIntegralField() local 3535 FieldInfo &Field = Struct.addField(Name, FT_INTEGRAL, Size); in addIntegralField() 3545 if (Struct.IsUnion) in addIntegralField() 3546 Struct.Size = std::max(Struct.Size, Field.SizeOf); in addIntegralField() 3548 Struct.Size += Field.SizeOf; in addIntegralField() 3739 StructInfo &Struct = StructInProgress.back(); in addRealField() local 3740 FieldInfo &Field = Struct.addField(Name, FT_REAL, Size); in addRealField() 3751 if (Struct.IsUnion) in addRealField() 3752 Struct.Size = std::max(Struct.Size, Field.SizeOf); in addRealField() 3754 Struct.Size += Field.SizeOf; in addRealField()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Function.cpp | 1094 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct, 0)); in DecodeIITType() 1104 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct,StructElts)); in DecodeIITType() 1207 case IITDescriptor::Struct: { in DecodeFixedType() 1394 case IITDescriptor::Struct: { in matchIntrinsicType()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineInternal.h | 433 Constant *Struct = ConstantStruct::get(ST, V); in CreateOverflowTuple() local 434 return InsertValueInst::Create(Struct, Result, 0); in CreateOverflowTuple()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | AMDGPUMetadata.cpp | 76 YIO.enumCase(EN, "Struct", ValueType::Struct); in enumeration()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
H A D | SparcCallingConv.td | 60 // in one or two 8-byte slots in the parameter array. Struct members are
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 310 enum class PDB_UdtType { Struct, Class, Union, Interface }; enumerator
|