Home
last modified time | relevance | path

Searched refs:NextSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2091 auto [Next, NextSize] = getCharAndSizeNoWarn(CurPtr + Size, LangOpts); in LexNumericConstant()
2098 CurPtr = ConsumeChar(CurPtr, NextSize, Result); in LexNumericConstant()
2163 auto [Next, NextSize] = in LexUDSuffix()
2178 Consumed += NextSize; in LexUDSuffix()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4578 Value *NextSize = Builder.CreateSub(SizePhi, ConstantInt::get(SizeTy, 1)); in EmitBuiltinExpr()
4580 Builder.CreateICmpEQ(NextSize, ConstantInt::get(SizeTy, 0)); in EmitBuiltinExpr()
4583 SizePhi->addIncoming(NextSize, Next); in EmitBuiltinExpr()
4633 Value *NextSize = Builder.CreateSub(SizePhi, ConstantInt::get(SizeTy, 1)); in EmitBuiltinExpr()
4635 Builder.CreateICmpEQ(NextSize, ConstantInt::get(SizeTy, 0)); in EmitBuiltinExpr()
4639 SizePhi->addIncoming(NextSize, Next); in EmitBuiltinExpr()
4574 Value *NextSize = Builder.CreateSub(SizePhi, ConstantInt::get(SizeTy, 1)); EmitBuiltinExpr() local
4629 Value *NextSize = Builder.CreateSub(SizePhi, ConstantInt::get(SizeTy, 1)); EmitBuiltinExpr() local
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp5082 int NextSize = VT.isVector() ? VT.getVectorNumElements() : 1; in CollectOpsToWiden() local
5085 NextSize *= 2; in CollectOpsToWiden()
5086 NextVT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NextSize); in CollectOpsToWiden()
5100 unsigned OpsToConcat = NextSize/VT.getVectorNumElements(); in CollectOpsToWiden()