Home
last modified time | relevance | path

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

/dports/ports-mgmt/hs-panopticum/panopticum-3e29a6b2b989855a8e0dd5e93fcda5ba7b748999/src/
H A DUtils.hs30 makeCombinations len = map (toBoolList len) [0 .. numCombs]
39 go x = toBoolList len x : go (x `div` 2)
42 toBoolList :: Int -> Int -> [Bool]
43 toBoolList len x = flip map [(len - 1), (len - 2) .. 0] $ \b -> x `testBit` b function
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Utils/
H A DSmallSet.hs143 toBoolList :: SmallSetElement a => SmallSet a -> [Bool]
144 toBoolList = Array.elems . theSmallSet function
148 toBoolListZipWith f s t = zipWith f (toBoolList s) (toBoolList t)
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/torch_glow/src/
H A DGlowIValue.cpp164 const std::vector<bool> &vecA = *EXIT_ON_ERR(ivalA.toBoolList()); in equal()
165 const std::vector<bool> &vecB = *EXIT_ON_ERR(ivalB.toBoolList()); in equal()
253 Expected<std::vector<bool> *> GlowIValue::toBoolList() { in toBoolList() function in glow::GlowIValue
258 Expected<const std::vector<bool> *> GlowIValue::toBoolList() const { in toBoolList() function in glow::GlowIValue
411 const auto ivalBools = ival.toBoolList(); in fromIValue()
H A DGlowIValue.h164 Expected<std::vector<bool> *> toBoolList();
167 Expected<const std::vector<bool> *> toBoolList() const;
H A DPyTorchModelLoader.cpp3667 ASSIGN_VALUE_OR_RETURN_ERR(bools, glowIVal.toBoolList()); in loadConstant()
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/qscriptvaluegenerated/testgen/
H A Dtestgenerator.cpp587 QList<QPair<QString, bool> > toBoolList; in generateTest() local
707 toBoolList.append(QPair<QString, bool>(dataTag, toBoolRes)); in generateTest()
777 tmp.append(generateToXXXDef<bool>("toBool", toBoolList)); in generateTest()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/torch_glow/tests/unittests/
H A DGlowIValueTests.cpp117 ASSIGN_VALUE_OR_FAIL_TEST(res, ival.toBoolList()); in TEST()