HomeSort by: relevance | last modified time | path
    Searched defs:Struct (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/Misc/
zkill 54 class Struct:
60 return 'Struct(%s)' % ', '.join(['%s=%r' % (k,getattr(self,k))
119 table.append(Struct(**record))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Intrinsics.h 113 struct IITDescriptor {
128 Struct,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 433 Constant *Struct = ConstantStruct::get(ST, V);
434 return InsertValueInst::Create(Struct, Result, 0);
InstCombineCalls.cpp 708 Constant *Struct = ConstantStruct::get(ST, V);
709 return InsertValueInst::Create(Struct, Result, 0);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
whatis-ptype-typedefs.c 76 typedef struct t_struct
99 /* A struct and a eunion the same size as t_struct, so we can test
102 typedef struct t_struct_wrapper
104 struct t_struct base;
110 struct t_struct base;
128 struct Struct { void method (); };
129 void Struct::method () {}
131 typedef Struct Struct_typedef;
132 DEF (Struct);
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
whatis-ptype-typedefs.c 76 typedef struct t_struct
99 /* A struct and a eunion the same size as t_struct, so we can test
102 typedef struct t_struct_wrapper
104 struct t_struct base;
110 struct t_struct base;
128 struct Struct { void method (); };
129 void Struct::method () {}
131 typedef Struct Struct_typedef;
132 DEF (Struct);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/APINotes/
Types.h 40 Struct,
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h 32 Struct,
133 struct SymbolRelation {
141 struct SymbolInfo {
  /src/external/bsd/libevent/dist/
event_rpcgen.py 35 STRUCT_REF_RE = re.compile(r"^struct\[(?P<name>[a-zA-Z_][a-zA-Z0-9_]*)\]$")
36 STRUCT_DEF_RE = re.compile(r"^struct +[a-zA-Z_][a-zA-Z0-9_]* *{$")
64 # Holds everything that makes a struct
65 class Struct(object):
70 declare(" Created struct: %s" % name)
99 class StructCCode(Struct):
100 """ Knows how to generate C code for a struct """
103 Struct.__init__(self, name)
115 filep.write("struct %s;\n" % self._name)
119 filep.write("struct %s_access_ {\n" % self._name
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/
event_rpcgen.py 35 STRUCT_REF_RE = re.compile(r"^struct\[(?P<name>[a-zA-Z_][a-zA-Z0-9_]*)\]$")
36 STRUCT_DEF_RE = re.compile(r"^struct +[a-zA-Z_][a-zA-Z0-9_]* *{$")
64 # Holds everything that makes a struct
65 class Struct(object):
70 declare(" Created struct: %s" % name)
99 class StructCCode(Struct):
100 """ Knows how to generate C code for a struct """
103 Struct.__init__(self, name)
115 filep.write("struct %s;\n" % self._name)
119 filep.write("struct %s_access_ {\n" % self._name
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 38 struct PrintingPolicy;
94 template<> struct PointerLikeTypeTraits<clang::TypeInfoLValue> {
106 template<> struct PointerLikeTypeTraits<clang::DynamicAllocLValue> {
140 Struct,
187 friend struct llvm::DenseMapInfo<LValueBase>;
191 struct LocalState {
249 struct NoLValuePath {};
250 struct UninitArray {};
251 struct UninitStruct {};
260 struct ComplexAPSInt
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
AMDGPUMetadata.h 96 Struct = 0,
133 struct Metadata final {
200 struct Metadata final {
269 struct Metadata final {
341 struct Metadata final {
397 struct Metadata final {
431 struct Metadata final {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 533 Constant *Struct = ConstantStruct::get(ST,
536 Value *NewI = B.CreateInsertValue(Struct, NewOp, 0);
773 struct Operand {
829 struct Operand {
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml 27 module TypeKind = struct
39 | Struct
51 module Linkage = struct
72 module Visibility = struct
79 module DLLStorageClass = struct
86 module CallConv = struct
94 module AttrRepr = struct
100 module AttrIndex = struct
113 module Attribute = struct
143 module Icmp = struct
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 151 // A struct with an inner unnamed enum with explicit underlying type resuls
154 struct PDB_SourceCompression {
310 enum class PDB_UdtType { Struct, Class, Union, Interface };
386 struct VersionInfo {
410 struct Variant {
599 template <> struct hash<llvm::pdb::PDB_SymType> {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
MicrosoftDemangleNodes.h 223 enum class TagKind { Class, Struct, Union, Enum };
257 struct Node {
271 struct TypeNode;
272 struct PrimitiveTypeNode;
273 struct FunctionSignatureNode;
274 struct IdentifierNode;
275 struct NamedIdentifierNode;
276 struct VcallThunkIdentifierNode;
277 struct IntrinsicFunctionIdentifierNode;
278 struct LiteralOperatorIdentifierNode
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 79 // Provide a command-line option to aggregate function arguments into a struct
989 // arguments (or appropriate addressing into struct) instead.
1124 // Emit a call to the new function, passing in: *pointer to struct (if
1133 // Add inputs as params, or to be filled into the struct
1162 AllocaInst *Struct = nullptr;
1168 // Allocate a struct at the beginning of this function
1170 Struct = new AllocaInst(StructArgTy, DL.getAllocaAddrSpace(), nullptr,
1173 params.push_back(Struct);
1180 StructArgTy, Struct, Idx, "gep_" + StructValues[i]->getName());
1218 StructArgTy, Struct, Idx, "gep_reload_" + outputs[i]->getName())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 2522 auto *Struct = llvm::ConstantStruct::getAnon(LLVMArgs);
2523 auto *GV = new llvm::GlobalVariable(getModule(), Struct->getType(), true,
2524 llvm::GlobalValue::PrivateLinkage, Struct,
2563 // Get the struct elements for these annotations.
2746 // FIXME: This may get padding wrong under esoteric struct layout rules.
2747 // MSVC appears to create a complete type 'struct __s_GUID' that it
2991 struct FunctionIsDirectlyRecursive
3025 struct DLLImportFunctionVisitor
3542 // type is an incomplete struct). Use a fake type instead, and make
5195 // The struct
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 87 struct MacroInstantiation {
101 struct ParseStatementInfo {
124 FT_STRUCT // Initializer: struct initializer, stored recursively.
127 struct FieldInfo;
128 struct StructInfo {
151 struct StructInitializer;
152 struct IntFieldInfo {
159 struct RealFieldInfo {
166 struct StructFieldInfo {
227 struct StructInfo Structure
    [all...]
  /src/sys/dev/ic/
mpt_mpilib.h 94 typedef struct _S64
100 typedef struct _U64
396 typedef struct _SGE_SIMPLE32
403 typedef struct _SGE_SIMPLE64
410 typedef struct _SGE_SIMPLE_UNION
425 typedef struct _SGE_CHAIN32
434 typedef struct _SGE_CHAIN64
443 typedef struct _SGE_CHAIN_UNION
460 typedef struct _SGE_TRANSACTION32
471 typedef struct _SGE_TRANSACTION6
    [all...]

Completed in 45 milliseconds