HomeSort by: relevance | last modified time | path
    Searched defs:CT (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SerialSnippetGenerator.cpp 103 CodeTemplate CT;
104 CT.Execution = ExecutionModeBit;
105 CT.Info = std::string(ExecutionClassDescription);
106 CT.Instructions.push_back(std::move(Variant));
107 CodeTemplates.push_back(std::move(CT));
125 CodeTemplate CT;
126 CT.Execution = ExecutionModeBit;
127 CT.Info = std::string(ExecutionClassDescription);
128 CT.Instructions.push_back(std::move(Variant));
129 CodeTemplates.push_back(std::move(CT));
    [all...]
SnippetGenerator.cpp 27 std::vector<CodeTemplate> getSingleton(CodeTemplate &&CT) {
29 Result.push_back(std::move(CT));
73 for (CodeTemplate &CT : Templates) {
77 BC.Info = CT.Info;
78 for (InstructionTemplate &IT : CT.Instructions) {
83 if (CT.ScratchSpacePointerInReg)
84 BC.LiveIns.push_back(CT.ScratchSpacePointerInReg);
86 computeRegisterInitialValues(CT.Instructions);
87 BC.Key.Config = CT.Config;
150 CodeTemplate &CT = Result.back()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprClassification.cpp 645 CanQualType CT = Ctx.getCanonicalType(E->getType());
647 if (CT.isConstQualified())
650 CT.getQualifiers().getAddressSpace() == LangAS::opencl_constant)
654 if (CT->isArrayType())
657 if (CT->isIncompleteType())
661 if (const RecordType *R = CT->getAs<RecordType>())
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid64_quantize.c 45 UINT128 CT;
148 __mul_64x64_to_128 (CT, coefficient_x,
153 C64 = CT.w[1] >> amount;
169 remainder_h = remainder_h & CT.w[1];
172 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits])) {
181 remainder_h = CT.w[1] << (64 - amount);
187 && (CT.w[0] < reciprocals10_64[extra_digits]))
192 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
198 __add_carry_out (tmp, carry, CT.w[0],
bid64_add.c 122 UINT128 CA, CT, CT_new;
403 __mul_64x64_to_128 (CT, coefficient_a,
408 C64 = CT.w[1] >> amount;
456 __mul_64x64_to_128 (CT, coefficient_b,
461 C0_64 = CT.w[1] >> amount;
495 __mul_64x64_to_128 (CT, coefficient_b,
500 C0_64 = CT.w[1] >> amount;
528 CT = CT_new;
549 remainder_h = CT.w[1] << (64 - amount);
552 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
    [all...]
bid64_fma.c 69 UINT128 P, PU, CT, CZ;
395 __add_128_128 (CT, CZ, P);
397 (CT, power10_table_128[16 + extra_digits])) {
407 __sub_128_128 (CT, CZ, P);
408 if (((SINT64) CT.w[1]) < 0) {
410 CT.w[0] = 0 - CT.w[0];
411 CT.w[1] = 0 - CT.w[1];
412 if (CT.w[0]
    [all...]
bid64_sqrt.c 66 UINT128 CA, CT;
151 CT = power10_table_128[scale];
152 __mul_64x128_short (CA, coefficient_x, CT);
bid64_div.c 84 UINT128 CA, CT;
362 __mul_64x64_to_128 (CT, Q, reciprocals10_64[nzeros]);
366 Q = CT.w[1] >> amount;
411 __mul_64x64_to_128 (CT, Q, reciprocals10_64[nzeros]);
415 Q = CT.w[1] >> amount;
bid_inline_add.h 78 UINT128 CA, CT, CT_new;
260 __mul_64x64_to_128 (CT, coefficient_a,
265 C64 = CT.w[1] >> amount;
323 __mul_64x64_to_128 (CT, coefficient_b,
328 C0_64 = CT.w[1] >> amount;
367 __mul_64x64_to_128 (CT, coefficient_b,
372 C0_64 = CT.w[1] >> amount;
400 CT = CT_new;
421 remainder_h = CT.w[1] << (64 - amount);
424 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid64_quantize.c 45 UINT128 CT;
148 __mul_64x64_to_128 (CT, coefficient_x,
153 C64 = CT.w[1] >> amount;
169 remainder_h = remainder_h & CT.w[1];
172 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits])) {
181 remainder_h = CT.w[1] << (64 - amount);
187 && (CT.w[0] < reciprocals10_64[extra_digits]))
192 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
198 __add_carry_out (tmp, carry, CT.w[0],
bid64_add.c 122 UINT128 CA, CT, CT_new;
403 __mul_64x64_to_128 (CT, coefficient_a,
408 C64 = CT.w[1] >> amount;
456 __mul_64x64_to_128 (CT, coefficient_b,
461 C0_64 = CT.w[1] >> amount;
495 __mul_64x64_to_128 (CT, coefficient_b,
500 C0_64 = CT.w[1] >> amount;
528 CT = CT_new;
549 remainder_h = CT.w[1] << (64 - amount);
552 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
    [all...]
bid64_fma.c 69 UINT128 P, PU, CT, CZ;
395 __add_128_128 (CT, CZ, P);
397 (CT, power10_table_128[16 + extra_digits])) {
407 __sub_128_128 (CT, CZ, P);
408 if (((SINT64) CT.w[1]) < 0) {
410 CT.w[0] = 0 - CT.w[0];
411 CT.w[1] = 0 - CT.w[1];
412 if (CT.w[0]
    [all...]
bid64_sqrt.c 66 UINT128 CA, CT;
151 CT = power10_table_128[scale];
152 __mul_64x128_short (CA, coefficient_x, CT);
bid64_div.c 84 UINT128 CA, CT;
362 __mul_64x64_to_128 (CT, Q, reciprocals10_64[nzeros]);
366 Q = CT.w[1] >> amount;
411 __mul_64x64_to_128 (CT, Q, reciprocals10_64[nzeros]);
415 Q = CT.w[1] >> amount;
bid_inline_add.h 78 UINT128 CA, CT, CT_new;
260 __mul_64x64_to_128 (CT, coefficient_a,
265 C64 = CT.w[1] >> amount;
323 __mul_64x64_to_128 (CT, coefficient_b,
328 C0_64 = CT.w[1] >> amount;
367 __mul_64x64_to_128 (CT, coefficient_b,
372 C0_64 = CT.w[1] >> amount;
400 CT = CT_new;
421 remainder_h = CT.w[1] << (64 - amount);
424 if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 191 CanQualType CT = ACtx.getCanonicalType(VD->getType());
192 if (!CT.isConstQualified()) {
193 const RecordType *RTy = CT->getAs<RecordType>();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/
Target.cpp 294 CodeTemplate CT;
295 CT.Instructions.push_back(std::move(IT));
296 CT.Config = formatv("{3}(%{0}, %{1}, {2})", RegInfo.getName(BaseReg),
299 Result.push_back(std::move(CT));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 1058 CanThrowResult CT = CT_Cannot;
1063 CT = mergeCanThrow(CT, Self.canThrow(Init));
1070 CT = mergeCanThrow(
1071 CT, Sema::canCalleeThrow(Self, nullptr, Dtor, VD->getLocation()));
1080 CT = mergeCanThrow(CT, canVarDeclThrow(Self, HD));
1082 return CT;
1138 CanThrowResult CT = canDynamicCastThrow(CE);
1139 if (CT == CT_Can
    [all...]
SemaPseudoObject.cpp 1086 QualType CT = Conversion->getConversionType().getNonReferenceType();
1087 if (CT->isIntegralOrEnumerationType()) {
1091 else if (CT->isObjCIdType() ||CT->isBlockPointerType()) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 162 CXType CT = { TK, { TK == CXType_Invalid ? nullptr
164 return CT;
169 static inline QualType GetQualType(CXType CT) {
170 return QualType::getFromOpaquePtr(CT.data[0]);
173 static inline CXTranslationUnit GetTU(CXType CT) {
174 return static_cast<CXTranslationUnit>(CT.data[1]);
291 CXString clang_getTypeSpelling(CXType CT) {
292 QualType T = GetQualType(CT);
296 CXTranslationUnit TU = GetTU(CT);
389 CXType clang_getCanonicalType(CXType CT) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 301 CatchableType CT;
302 CT.Flags = DataPtr[0];
303 CT.NonVirtualBaseAdjustmentOffset = DataPtr[2];
304 CT.VirtualBasePointerOffset = DataPtr[3];
305 CT.VirtualBaseAdjustmentOffset = DataPtr[4];
306 CT.Size = DataPtr[5];
307 StringRef *I = std::begin(CT.Symbols), *E = std::end(CT.Symbols);
309 CTs[SymName] = CT;
436 const CatchableType &CT = CTPair.second
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 160 const auto *CT =
163 PSE.addPredicate(*SE->getEqualPredicate(U, CT));
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 187 void addTypeRef(MDString &UUID, DICompositeType &CT);
277 if (DICompositeType *CT = OldTypeRefs.Final.lookup(Ref.first))
278 Ref.second->replaceAllUsesWith(CT);
304 DICompositeType &CT) {
305 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID");
306 if (CT.isForwardDecl())
307 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT));
309 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT));
317 if (auto *CT = OldTypeRefs.Final.lookup(UUID))
318 return CT;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUInstPrinter.cpp 1499 unsigned CT = MI->getOperand(OpNo).getImm();
1500 switch (CT) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonLoopIdiomRecognition.cpp 1802 const SCEV *CT = SE.getBackedgeTakenCount(CurLoop);
1803 if (isa<SCEVCouldNotCompute>(CT))
1805 if (auto *CV = dyn_cast<SCEVConstant>(CT))

Completed in 59 milliseconds

1 2