Home
last modified time | relevance | path

Searched refs:Type (Results 51 – 75 of 5094) sorted by relevance

12345678910>>...204

/netbsd/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_atomic_clang.h45 INLINE typename T::Type atomic_fetch_add(volatile T *a, in atomic_fetch_add()
46 typename T::Type v, memory_order mo) { in atomic_fetch_add()
53 INLINE typename T::Type atomic_fetch_sub(volatile T *a, in atomic_fetch_sub()
54 typename T::Type v, memory_order mo) { in atomic_fetch_sub()
61 INLINE typename T::Type atomic_exchange(volatile T *a, in atomic_exchange()
62 typename T::Type v, memory_order mo) { in atomic_exchange()
76 typedef typename T::Type Type; in atomic_compare_exchange_strong() typedef
77 Type cmpv = *cmp; in atomic_compare_exchange_strong()
78 Type prev; in atomic_compare_exchange_strong()
87 typename T::Type *cmp, in atomic_compare_exchange_weak()
[all …]
/netbsd/external/gpl2/diffutils/dist/lib/
H A Dxalloc.h61 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items))) argument
62 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items))) argument
63 # define XREALLOC(Ptr, Type, N_items) \ argument
64 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
67 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1) argument
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddeclaration.h120 Type *type;
181 Type *getType();
206 Type *getType();
316 Type *tinfo;
318 TypeInfoDeclaration(Type *tinfo);
394 TypeInfoEnumDeclaration(Type *tinfo);
457 TypeInfoWildDeclaration(Type *tinfo);
477 ThisDeclaration(Loc loc, Type *t);
563 Type *tintro;
649 bool parametersIntersect(Type *t);
[all …]
H A Ddeclaration.c398 Type *oldtype = type; in aliasSemantic()
418 type = Type::terror; in aliasSemantic()
424 type = Type::terror; in aliasSemantic()
428 Type *t; in aliasSemantic()
458 type = Type::terror; in aliasSemantic()
647 type = Type::terror; in toAlias()
992 type = Type::terror; in semantic()
998 type = Type::terror; in semantic()
1386 Type *tv = type; in semantic()
1763 t = Type::tvoidptr; in setFieldOffset()
[all …]
H A Dtarget.h23 class Type; variable
64 static unsigned alignsize(Type* type);
65 static unsigned fieldalign(Type* type);
67 static Type *va_listType(); // get type of va_list
68 static int isVectorTypeSupported(int sz, Type *type);
69 static bool isVectorOpSupported(Type *type, TOK op, Type *t2 = NULL);
73 static const char *cppTypeMangle(Type *t);
74 static Type *cppParameterType(Parameter *p);
75 static bool cppFundamentalType(const Type *t, bool& isFundamental);
77 static TypeTuple *toArgTypes(Type *t);
/netbsd/external/gpl2/grep/dist/lib/
H A Dxalloc.h66 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items))) argument
67 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items))) argument
68 # define XREALLOC(Ptr, Type, N_items) \ argument
69 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
72 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1) argument
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h33 unsigned Type; // The type of the relocation. member
41 : Offset(Offset), Symbol(Symbol), Type(Type), Addend(Addend), in ELFRelocationEntry()
118 uint8_t getRType(uint32_t Type) const { in getRType() argument
119 return (unsigned)((Type >> R_TYPE_SHIFT) & 0xff); in getRType()
121 uint8_t getRType2(uint32_t Type) const { in getRType2() argument
122 return (unsigned)((Type >> R_TYPE2_SHIFT) & 0xff); in getRType2()
124 uint8_t getRType3(uint32_t Type) const { in getRType3() argument
125 return (unsigned)((Type >> R_TYPE3_SHIFT) & 0xff); in getRType3()
127 uint8_t getRSsym(uint32_t Type) const { in getRSsym() argument
128 return (unsigned)((Type >> R_SSYM_SHIFT) & 0xff); in getRSsym()
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-target.cc168 Type::tsize_t = Type::basic[Tsize_t]; in _init()
169 Type::tptrdiff_t = Type::basic[Tptrdiff_t]; in _init()
170 Type::thash_t = Type::tsize_t; in _init()
198 Target::alignsize (Type *type) in alignsize()
240 Type *
243 return Type::tvalist; in va_listType()
257 if (type == Type::tvoid) in isVectorTypeSupported()
258 type = Type::tuns8; in isVectorTypeSupported()
280 Target::isVectorOpSupported (Type *type, TOK op, Type *) in isVectorOpSupported() argument
369 Type *
[all …]
/netbsd/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/
H A Dsanitizer_wrappers.cc66 GetTypes<__VA_ARGS__>::Arg<0>::Type) __attribute__((weak)); \
68 GetTypes<__VA_ARGS__>::Arg<0>::Type arg0) { \
74 GetTypes<__VA_ARGS__>::Arg<0>::Type, \
75 GetTypes<__VA_ARGS__>::Arg<1>::Type) __attribute__((weak)); \
77 GetTypes<__VA_ARGS__>::Arg<0>::Type arg0, \
78 GetTypes<__VA_ARGS__>::Arg<1>::Type arg1) { \
84 GetTypes<__VA_ARGS__>::Arg<0>::Type, \
85 GetTypes<__VA_ARGS__>::Arg<1>::Type, \
86 GetTypes<__VA_ARGS__>::Arg<2>::Type) __attribute__((weak)); \
88 GetTypes<__VA_ARGS__>::Arg<0>::Type arg0, \
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp24 msgpack::DocNode &Node, msgpack::Type SKind, in verifyScalar()
33 if (Node.getKind() != msgpack::Type::String) in verifyScalar()
46 if (!verifyScalar(Node, msgpack::Type::UInt)) in verifyInteger()
47 if (!verifyScalar(Node, msgpack::Type::Int)) in verifyInteger()
78 msgpack::Type SKind, in verifyScalarEntry()
98 msgpack::Type::String)) in verifyKernelArgs()
101 msgpack::Type::String)) in verifyKernelArgs()
108 msgpack::Type::String, in verifyKernelArgs()
133 msgpack::Type::String, in verifyKernelArgs()
146 msgpack::Type::String, in verifyKernelArgs()
[all …]
H A DMsgPackDocument.cpp152 case Type::Nil: in readFromBlob()
155 case Type::Int: in readFromBlob()
158 case Type::UInt: in readFromBlob()
164 case Type::Float: in readFromBlob()
170 case Type::Map: in readFromBlob()
173 case Type::Array: in readFromBlob()
255 case Type::Array: in writeToBlob()
260 case Type::Map: in writeToBlob()
265 case Type::Nil: in writeToBlob()
271 case Type::Int: in writeToBlob()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiELFObjectWriter.cpp30 unsigned Type) const override;
43 unsigned Type; in getRelocType() local
47 Type = ELF::R_LANAI_21; in getRelocType()
50 Type = ELF::R_LANAI_21_F; in getRelocType()
53 Type = ELF::R_LANAI_25; in getRelocType()
57 Type = ELF::R_LANAI_32; in getRelocType()
60 Type = ELF::R_LANAI_HI16; in getRelocType()
63 Type = ELF::R_LANAI_LO16; in getRelocType()
66 Type = ELF::R_LANAI_NONE; in getRelocType()
72 return Type; in getRelocType()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmtype.d470 Type t = cast(Type)mem.xmalloc(sizeTy[ty]); in copy()
483 Type t = cast(Type)o; in equals()
1107 Type t = cast(Type)mem.xmalloc(sz); in nullAttributes()
2379 Type unqualThis = cast(Type) this; in toHeadMutable()
3939 extern (D) this(Type t, Type index) in this()
3945 static TypeAArray create(Type t, Type index) in create()
5378 Type tx = cast(Type)id; in syntaxCopyHelper()
6391 extern (D) this(Type t1, Type t2) in this()
6409 static TypeTuple create(Type t1, Type t2) in create()
6429 Type t = cast(Type)o; in equals()
[all …]
H A Ddeclaration.c398 Type *oldtype = type; in aliasSemantic()
418 type = Type::terror; in aliasSemantic()
424 type = Type::terror; in aliasSemantic()
428 Type *t; in aliasSemantic()
458 type = Type::terror; in aliasSemantic()
647 type = Type::terror; in toAlias()
992 type = Type::terror; in semantic()
998 type = Type::terror; in semantic()
1386 Type *tv = type; in semantic()
1763 t = Type::tvoidptr; in setFieldOffset()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h41 InstructionCost getIntImmCost(const APInt &Imm, Type *Ty,
45 const APInt &Imm, Type *Ty,
49 const APInt &Imm, Type *Ty,
78 bool hasDivRemOp(Type *DataType, bool IsSigned);
85 unsigned Opcode, Type *Ty,
96 unsigned getVectorTruncCost(Type *SrcTy, Type *DstTy);
97 unsigned getVectorBitmaskConversionCost(Type *SrcTy, Type *DstTy);
100 InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
104 InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
108 InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val,
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DRustDemangle.cpp276 Type = BasicType::I8; in parseBasicType()
285 Type = BasicType::F64; in parseBasicType()
288 Type = BasicType::Str; in parseBasicType()
291 Type = BasicType::F32; in parseBasicType()
294 Type = BasicType::U8; in parseBasicType()
303 Type = BasicType::I32; in parseBasicType()
306 Type = BasicType::U32; in parseBasicType()
344 switch (Type) { in printBasicType()
427 BasicType Type; in demangleType() local
530 BasicType Type; in demangleConst() local
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DELF.cpp26 switch (Type) { in getELFRelocationTypeName()
33 switch (Type) { in getELFRelocationTypeName()
41 switch (Type) { in getELFRelocationTypeName()
48 switch (Type) { in getELFRelocationTypeName()
55 switch (Type) { in getELFRelocationTypeName()
62 switch (Type) { in getELFRelocationTypeName()
70 switch (Type) { in getELFRelocationTypeName()
77 switch (Type) { in getELFRelocationTypeName()
84 switch (Type) { in getELFRelocationTypeName()
91 switch (Type) { in getELFRelocationTypeName()
[all …]
/netbsd/sys/external/bsd/acpica/dist/namespace/
H A Dnsaccess.c156 NewNode->Type = InitVal->Type; in AcpiNsRootInitialize()
205 switch (InitVal->Type) in AcpiNsRootInitialize()
274 InitVal->Type)); in AcpiNsRootInitialize()
283 ObjDesc->Common.Type); in AcpiNsRootInitialize()
333 ACPI_OBJECT_TYPE Type, in AcpiNsLookup() argument
412 TypeToCheckFor = Type; in AcpiNsLookup()
537 Type = ThisNode->Type; in AcpiNsLookup()
610 ThisSearchType = Type; in AcpiNsLookup()
774 if (Type == ACPI_TYPE_ANY) in AcpiNsLookup()
776 Type = ThisNode->Type; in AcpiNsLookup()
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp31 static llvm::Type *getCommonType(llvm::Type *first, llvm::Type *second) { in getCommonType()
327 Entries[index].Type = nullptr; in addEntry()
350 if (Entries[index].Type && Entries[index].Type->isVectorTy()) { in addEntry()
357 Entries[index].Type = nullptr; in addEntry()
393 Entries[index].Type = nullptr; in addEntry()
410 Entries[index].Type = eltTy; in splitVectorEntry()
484 Entries[i].Type = nullptr; in finish()
506 if (orig[i].Type != nullptr) { in finish()
597 elts.push_back(entry.Type); in getCoerceAndExpandTypes()
611 elts.push_back(entry.Type); in getCoerceAndExpandTypes()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DVNCoercion.h32 class Type; variable
37 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
46 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
54 int analyzeLoadFromClobberingStore(Type *LoadTy, Value *LoadPtr,
70 int analyzeLoadFromClobberingMemInst(Type *LoadTy, Value *LoadPtr,
76 Value *getStoreValueForLoad(Value *SrcVal, unsigned Offset, Type *LoadTy,
81 Type *LoadTy, const DataLayout &DL);
87 Value *getLoadValueForLoad(LoadInst *SrcVal, unsigned Offset, Type *LoadTy,
92 Type *LoadTy, const DataLayout &DL);
99 Type *LoadTy, Instruction *InsertPt,
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DInheritViz.cpp43 void WriteGraph(QualType Type) { in WriteGraph() argument
44 Out << "digraph \"" << llvm::DOT::EscapeString(Type.getAsString()) in WriteGraph()
46 WriteNode(Type, false); in WriteGraph()
53 void WriteNode(QualType Type, bool FromVirtual);
58 raw_ostream& WriteNodeReference(QualType Type, bool FromVirtual);
63 QualType CanonType = Context.getCanonicalType(Type); in WriteNode()
76 WriteNodeReference(Type, FromVirtual); in WriteNode()
79 std::string TypeName = Type.getAsString(); in WriteNode()
108 WriteNodeReference(Type, FromVirtual); in WriteNode()
124 InheritanceHierarchyWriter::WriteNodeReference(QualType Type, in WriteNodeReference() argument
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h51 getGEPCost(Type *PointeeType, const Value *Ptr,
286 bool isTruncateFree(Type *Ty1, Type *Ty2) const { return false; } in isTruncateFree()
346 InstructionCost getFPOpCost(Type *Ty) const { in getFPOpCost()
351 Type *Ty) const { in getIntImmCodeSizeCost()
477 InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, in getCastInstrCost()
530 InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, in getCmpSelInstrCost()
664 return Type::getInt8Ty(Context); in getMemcpyLoopLoweringType()
872 Type *TargetType = nullptr;
937 Type *Ty = U->getType(); in getUserCost()
938 Type *OpTy = in getUserCost()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp30 void WebAssemblyTargetStreamer::emitValueType(wasm::ValType Type) { in emitValueType() argument
31 Streamer.emitIntValue(uint8_t(Type), 1); in emitValueType()
44 for (auto Type : Types) { in printTypes() local
49 OS << WebAssembly::typeToString(Type); in printTypes()
82 const wasm::WasmTableType &Type = Sym->getTableType(); in emitTableType() local
86 if (Type.Limits.Minimum != 0 || HasMaximum) { in emitTableType()
87 OS << ", " << Type.Limits.Minimum; in emitTableType()
89 OS << ", " << Type.Limits.Maximum; in emitTableType()
125 for (auto Type : Types) { in emitLocal() local
126 if (Grouped.empty() || Grouped.back().first != Type) in emitLocal()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp70 template <> class parser<Type*> final : public basic_parser<Type*> {
156 Type* ArgsTy[] = { in GenEmptyFunction()
277 Type *pickType() { in pickType()
282 Type *pickPointerType() { in pickPointerType()
283 Type *Ty = pickType(); in pickPointerType()
293 Type *Ty; in pickVectorType()
306 Type *pickScalarType() { in pickScalarType()
420 Type *Ty = pickType(); in Act()
471 Type *Tp = pickType(); in Act()
506 Type *I32 = Type::getInt32Ty(BB->getContext()); in Act()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSectionELF.cpp133 if (Type == ELF::SHT_INIT_ARRAY) in PrintSwitchToSection()
135 else if (Type == ELF::SHT_FINI_ARRAY) in PrintSwitchToSection()
137 else if (Type == ELF::SHT_PREINIT_ARRAY) in PrintSwitchToSection()
139 else if (Type == ELF::SHT_NOBITS) in PrintSwitchToSection()
141 else if (Type == ELF::SHT_NOTE) in PrintSwitchToSection()
143 else if (Type == ELF::SHT_PROGBITS) in PrintSwitchToSection()
145 else if (Type == ELF::SHT_X86_64_UNWIND) in PrintSwitchToSection()
147 else if (Type == ELF::SHT_MIPS_DWARF) in PrintSwitchToSection()
151 else if (Type == ELF::SHT_LLVM_ODRTAB) in PrintSwitchToSection()
159 else if (Type == ELF::SHT_LLVM_SYMPART) in PrintSwitchToSection()
[all …]

12345678910>>...204