HomeSort by: relevance | last modified time | path
    Searched refs:TI (Results 1 - 25 of 294) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/playstation2/include/
types.h 6 typedef int int128_t __attribute__((__mode__(TI)));
7 typedef unsigned int u_int128_t __attribute__((__mode__(TI)));
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InitPreprocessor.cpp 177 const TargetInfo &TI, MacroBuilder &Builder) {
178 DefineTypeSize(MacroName, TI.getTypeWidth(Ty), TI.getTypeConstantSuffix(Ty),
179 TI.isTypeSigned(Ty), Builder);
183 const TargetInfo &TI, MacroBuilder &Builder) {
184 bool IsSigned = TI.isTypeSigned(Ty);
185 StringRef FmtModifier = TI.getTypeFormatModifier(Ty);
198 const TargetInfo &TI, MacroBuilder &Builder) {
199 Builder.defineMacro(MacroName, Twine(TI.getTypeWidth(Ty)));
203 const TargetInfo &TI, MacroBuilder &Builder)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeIndex.cpp 70 StringRef TypeIndex::simpleTypeName(TypeIndex TI) {
71 assert(TI.isNoneType() || TI.isSimple());
73 if (TI.isNoneType())
76 if (TI == TypeIndex::NullptrT())
81 if (SimpleTypeName.Kind == TI.getSimpleKind()) {
82 if (TI.getSimpleMode() == SimpleTypeMode::Direct)
93 TypeIndex TI, TypeCollection &Types) {
95 if (!TI.isNoneType()) {
96 if (TI.isSimple()
    [all...]
TypeHashing.cpp 55 for (TypeIndex TI : Indices) {
57 if (TI.isSimple() || TI.isNoneType()) {
58 const uint8_t *IndexBytes = reinterpret_cast<const uint8_t *>(&TI);
61 if (TI.toArrayIndex() >= Prev.size() ||
62 Prev[TI.toArrayIndex()].empty()) {
67 BytesToHash = Prev[TI.toArrayIndex()].Hash;
LazyRandomTypeCollection.cpp 150 Error LazyRandomTypeCollection::ensureTypeExists(TypeIndex TI) {
151 if (contains(TI))
154 return visitRangeForType(TI);
170 Error LazyRandomTypeCollection::visitRangeForType(TypeIndex TI) {
171 assert(!TI.isSimple());
173 return fullScanForType(TI);
175 auto Next = llvm::upper_bound(PartialOffsets, TI,
205 TypeIndex TI = TypeIndex::fromArrayIndex(0);
206 if (auto EC = ensureTypeExists(TI)) {
210 return TI;
    [all...]
  /src/tests/usr.bin/xlint/lint1/
platform_lp64.c 123 __attribute__((__mode__(TI))) typedef unsigned attr_typedef_type_identifier;
124 typedef __attribute__((__mode__(TI))) unsigned typedef_attr_type_identifier;
125 typedef unsigned __attribute__((__mode__(TI))) typedef_type_attr_identifier;
126 typedef unsigned typedef_type_identifier_attr __attribute__((__mode__(TI)));
127 __attribute__(()) __attribute__((__mode__(TI))) typedef unsigned attr_attr_typedef_type_identifier;
128 typedef __attribute__(()) __attribute__((__mode__(TI))) unsigned typedef_attr_attr_type_identifier;
129 typedef unsigned __attribute__(()) __attribute__((__mode__(TI))) typedef_type_attr_attr_identifier;
130 typedef unsigned typedef_type_identifier_attr_attr __attribute__(()) __attribute__((__mode__(TI)));
156 __attribute__((__mode__(TI))) unsigned attr_type_identifier = 0;
157 unsigned __attribute__((__mode__(TI))) type_attr_identifier = 0
    [all...]
msg_267.c 26 function(unsigned __attribute__((mode(TI))) arg)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeEnumTypes.cpp 27 Optional<TypeIndex> TI = Types.getFirst();
28 while (TI) {
29 CVType CVT = Types.getType(*TI);
34 Matches.push_back(*TI);
43 Matches.push_back(*TI);
46 TI = Types.getNext(*TI);
NativeTypeVTShape.cpp 8 codeview::TypeIndex TI,
10 : NativeRawSymbol(Session, PDB_SymType::VTableShape, Id), TI(TI),
NativeTypePointer.cpp 20 codeview::TypeIndex TI)
21 : NativeRawSymbol(Session, PDB_SymType::PointerType, Id), TI(TI) {
22 assert(TI.isSimple());
23 assert(TI.getSimpleMode() != SimpleTypeMode::Direct);
27 codeview::TypeIndex TI,
29 : NativeRawSymbol(Session, PDB_SymType::PointerType, Id), TI(TI),
82 switch (TI.getSimpleMode()) {
102 TypeIndex Referent = Record ? Record->ReferentType : TI.makeDirect()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeTypePointer.h 25 codeview::TypeIndex TI);
29 codeview::TypeIndex TI, codeview::PointerRecord PR);
53 codeview::TypeIndex TI;
NativeTypeVTShape.h 25 codeview::TypeIndex TI, codeview::VFTableShapeRecord SR);
38 codeview::TypeIndex TI;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
TypeReferenceTracker.h 37 bool isTypeReferenced(codeview::TypeIndex TI) {
38 return TI.toArrayIndex() <= NumTypeRecords &&
39 TypeReferenced.test(TI.toArrayIndex());
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeSymbolEmitter.h 30 virtual void writeUserDefinedType(TypeIndex TI, StringRef Name) = 0;
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-modes.def 70 VECTOR_MODE (INT, TI, 1); /* V1TI */
84 PARTIAL_INT_MODE (TI, 128, PTI);
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-modes.def 70 VECTOR_MODE (INT, TI, 1); /* V1TI */
84 PARTIAL_INT_MODE (TI, 128, PTI);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
EscapeEnumerator.cpp 40 Instruction *TI = CurBB->getTerminator();
41 if (!isa<ReturnInst>(TI) && !isa<ResumeInst>(TI))
45 TI = CI;
46 Builder.SetInsertPoint(TI);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Threading.inc 52 SyncThreadInfo *TI = static_cast<SyncThreadInfo *>(Arg);
53 TI->UserFn(TI->UserData);
  /src/external/gpl3/gcc/dist/libgcc/config/i386/64/
sfp-machine.h 6 typedef int TItype __attribute__ ((mode (TI)));
7 typedef unsigned int UTItype __attribute__ ((mode (TI)));
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/64/
sfp-machine.h 6 typedef int TItype __attribute__ ((mode (TI)));
7 typedef unsigned int UTItype __attribute__ ((mode (TI)));
  /src/external/gpl2/groff/font/devlbp/
Makefile 10 TB TBI TI TR CR CB CI ER EB EI
  /src/external/gpl3/gcc/dist/gcc/
machmode.def 203 /* Basic integer modes. We go up to TI in generic code (128 bits).
213 INT_MODE (TI, 16);
222 INT_N (TI, 128);
  /src/external/gpl3/gcc.old/dist/gcc/
machmode.def 202 /* Basic integer modes. We go up to TI in generic code (128 bits).
212 INT_MODE (TI, 16);
221 INT_N (TI, 128);
  /src/external/gpl3/gcc/dist/gcc/config/gcn/
gcn-modes.def 27 VECTOR_MODE (INT, TI, 64); /* V64TI */
37 VECTOR_MODE (INT, TI, 32); /* V32TI */
45 VECTOR_MODE (INT, TI, 16); /* V16TI */
53 VECTOR_MODE (INT, TI, 8); /* V8TI */
61 VECTOR_MODE (INT, TI, 4); /* V4TI */
69 VECTOR_MODE (INT, TI, 2); /* V2TI */
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLateEHPrepare.cpp 157 MachineInstr *TI = &*Pos;
158 if (TI->getOpcode() == WebAssembly::CATCHRET)
235 MachineInstr *TI = &*Pos;
237 switch (TI->getOpcode()) {
240 MachineBasicBlock *TBB = TI->getOperand(0).getMBB();
242 BuildMI(MBB, TI, TI->getDebugLoc(), TII.get(WebAssembly::BR))
244 TI->eraseFromParent();
251 BuildMI(MBB, TI, TI->getDebugLoc(), TII.get(WebAssembly::RETHROW)
    [all...]

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>