Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/core/
Dbitmap_test.cc27 size_t NextSize(size_t n) { return n + ((n < 75) ? 1 : 25); } in NextSize() function
38 for (size_t n = 0; n < 200; n = NextSize(n)) { in TEST()
58 for (size_t n = 0; n < 200; n = NextSize(n)) { in TEST()
/external/clang/lib/Lex/
DLexer.cpp1627 unsigned NextSize; in LexNumericConstant() local
1628 char Next = getCharAndSizeNoWarn(CurPtr + Size, NextSize, getLangOpts()); in LexNumericConstant()
1633 CurPtr = ConsumeChar(CurPtr, NextSize, Result); in LexNumericConstant()
1698 unsigned NextSize; in LexUDSuffix() local
1699 char Next = getCharAndSizeNoWarn(CurPtr + Consumed, NextSize, in LexUDSuffix()
1714 Consumed += NextSize; in LexUDSuffix()
/external/llvm-project/clang/lib/Lex/
DLexer.cpp1792 unsigned NextSize; in LexNumericConstant() local
1793 char Next = getCharAndSizeNoWarn(CurPtr + Size, NextSize, getLangOpts()); in LexNumericConstant()
1798 CurPtr = ConsumeChar(CurPtr, NextSize, Result); in LexNumericConstant()
1863 unsigned NextSize; in LexUDSuffix() local
1864 char Next = getCharAndSizeNoWarn(CurPtr + Consumed, NextSize, in LexUDSuffix()
1879 Consumed += NextSize; in LexUDSuffix()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp2289 int NextSize = VT.isVector() ? VT.getVectorNumElements() : 1; in WidenVecRes_BinaryCanTrap() local
2292 NextSize *= 2; in WidenVecRes_BinaryCanTrap()
2293 NextVT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NextSize); in WidenVecRes_BinaryCanTrap()
2310 unsigned OpsToConcat = NextSize/VT.getVectorNumElements(); in WidenVecRes_BinaryCanTrap()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp2915 int NextSize = VT.isVector() ? VT.getVectorNumElements() : 1; in CollectOpsToWiden() local
2918 NextSize *= 2; in CollectOpsToWiden()
2919 NextVT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NextSize); in CollectOpsToWiden()
2936 unsigned OpsToConcat = NextSize/VT.getVectorNumElements(); in CollectOpsToWiden()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp3077 int NextSize = VT.isVector() ? VT.getVectorNumElements() : 1; in CollectOpsToWiden() local
3080 NextSize *= 2; in CollectOpsToWiden()
3081 NextVT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NextSize); in CollectOpsToWiden()
3097 unsigned OpsToConcat = NextSize/VT.getVectorNumElements(); in CollectOpsToWiden()
/external/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp3251 Value *NextSize = Builder.CreateSub(SizePhi, ConstantInt::get(SizeTy, 1)); in EmitBuiltinExpr() local
3253 Builder.CreateICmpEQ(NextSize, ConstantInt::get(SizeTy, 0)); in EmitBuiltinExpr()
3257 SizePhi->addIncoming(NextSize, Next); in EmitBuiltinExpr()