Home
last modified time | relevance | path

Searched refs:MaxIndex (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DTypes.cpp40 uint64_t MaxIndex = Size; in getMinimalTypeForEnumBitfield() local
41 if (MaxIndex > 0) in getMinimalTypeForEnumBitfield()
42 MaxIndex--; in getMinimalTypeForEnumBitfield()
43 assert(MaxIndex <= 64 && "Too many bits"); in getMinimalTypeForEnumBitfield()
44 return getMinimalTypeForRange(1ULL << MaxIndex); in getMinimalTypeForEnumBitfield()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
Dxray-color-helper.cpp191 size_t MaxIndex = ColorMap.size() - 1; in getColorTuple() local
194 double SectionWidth = IntervalWidth / static_cast<double>(MaxIndex); in getColorTuple()
199 auto &RGBColor1 = ColorMap[std::min(SectionNo + 1, MaxIndex)]; in getColorTuple()
/external/ImageMagick/coders/
Dcut.c90 unsigned MaxIndex; member
478 PalHeader.MaxIndex=ReadBlobLSBShort(palette); in ReadCUTImage()
486 if(PalHeader.MaxIndex<1) goto ErasePalette; in ReadCUTImage()
487 image->colors=PalHeader.MaxIndex+1; in ReadCUTImage()
494 for(i=0;i<=(int) PalHeader.MaxIndex;i++) in ReadCUTImage()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DAttributes.cpp925 unsigned MaxIndex = Attrs.back().first; in get() local
928 if (MaxIndex == FunctionIndex && Attrs.size() > 1) in get()
929 MaxIndex = Attrs[Attrs.size() - 2].first; in get()
931 SmallVector<AttributeSet, 4> AttrVec(attrIdxToArrayIdx(MaxIndex) + 1); in get()
1089 unsigned MaxIndex = attrIdxToArrayIdx(ArgNos.back() + FirstArgIndex); in addParamAttribute() local
1090 if (MaxIndex >= AttrSets.size()) in addParamAttribute()
1091 AttrSets.resize(MaxIndex + 1); in addParamAttribute()
/external/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp945 unsigned MaxIndex = 0; in lower() local
949 MaxIndex = std::max(MaxIndex, TypeIdIndices[MI->get<Metadata *>()]); in lower()
951 Sets.emplace_back(I, MaxIndex); in lower()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dx86-cmov-converter.ll15 ;; 3. MaxIndex:
54 ;;int MaxIndex(int n, int *a) {
167 ; CHECK-LABEL: MaxIndex
171 define i32 @MaxIndex(i32 %n, i32* nocapture readonly %a) #0 {
/external/llvm/utils/TableGen/
DAsmMatcherEmitter.cpp2397 uint64_t MaxIndex = Info.SubtargetFeatures.size(); in getMinimalRequiredFeaturesType() local
2398 if (MaxIndex > 0) in getMinimalRequiredFeaturesType()
2399 MaxIndex--; in getMinimalRequiredFeaturesType()
2400 return getMinimalTypeForRange(1ULL << MaxIndex); in getMinimalRequiredFeaturesType()
/external/mesa3d/src/intel/blorp/
Dblorp_genX_exec.h290 vb[0].MaxIndex = 2; in blorp_emit_vertex_buffers()
311 vb[1].MaxIndex = 0; in blorp_emit_vertex_buffers()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DSimplifyCFG.cpp2379 unsigned MaxIndex = 0; in SimplifyUnreachable() local
2384 (I->second.first == MaxPop && MaxIndex > I->second.second)) { in SimplifyUnreachable()
2386 MaxIndex = I->second.second; in SimplifyUnreachable()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h8128 uint32_t MaxIndex = MaxSize == NoSizeLimit
8131 return TypeForSize[std::min(TyIndex, MaxIndex)];
8141 uint32_t MaxIndex = MaxSize == NoSizeLimit
8144 return TypeForSize[std::min(TyIndex, MaxIndex)];
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp15751 unsigned MaxIndex = 0; in reduceBuildVecToShuffle() local
15763 MaxIndex = std::max(MaxIndex, Index); in reduceBuildVecToShuffle()
15766 NearestPow2 = PowerOf2Ceil(MaxIndex); in reduceBuildVecToShuffle()
15767 if (InVT.isSimple() && NearestPow2 > 2 && MaxIndex < NearestPow2 && in reduceBuildVecToShuffle()