Home
last modified time | relevance | path

Searched refs:bitset (Results 1 – 15 of 15) sorted by relevance

/frameworks/minikin/tests/unittest/
DSparseBitSetTest.cpp35 SparseBitSet bitset(range.data(), range.size() / 2); in TEST() local
43 ASSERT_FALSE(bitset.get(ch)) << std::hex << ch; in TEST()
46 ASSERT_TRUE(bitset.get(ch)) << std::hex << ch; in TEST()
50 ASSERT_FALSE(bitset.get(ch)) << std::hex << ch; in TEST()
/frameworks/base/core/java/android/content/pm/split/
DSplitDependencyLoader.java221 final BitSet bitset = new BitSet(); in createDependenciesFromPackage() local
225 bitset.clear(); in createDependenciesFromPackage()
228 if (bitset.get(splitIdx)) { in createDependenciesFromPackage()
233 bitset.set(splitIdx); in createDependenciesFromPackage()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java760 int supplicantValue, BitSet bitset, in supplicantMaskValueToWifiConfigurationBitSet() argument
762 bitset.set(bitSetPosition, (supplicantMask & supplicantValue) == supplicantValue); in supplicantMaskValueToWifiConfigurationBitSet()
768 BitSet bitset = new BitSet(); in supplicantToWifiConfigurationKeyMgmtMask() local
770 mask, ISupplicantStaNetwork.KeyMgmtMask.NONE, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
773 mask, ISupplicantStaNetwork.KeyMgmtMask.WPA_PSK, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
776 mask, ISupplicantStaNetwork.KeyMgmtMask.WPA_EAP, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
779 mask, ISupplicantStaNetwork.KeyMgmtMask.IEEE8021X, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
782 mask, ISupplicantStaNetwork.KeyMgmtMask.OSEN, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
785 mask, ISupplicantStaNetwork.KeyMgmtMask.FT_PSK, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
788 mask, ISupplicantStaNetwork.KeyMgmtMask.FT_EAP, bitset, in supplicantToWifiConfigurationKeyMgmtMask()
[all …]
/frameworks/native/vulkan/libvulkan/
Ddriver_gen.h97 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions);
100 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions);
Dapi_gen.h186 const std::bitset<driver::ProcHook::EXTENSION_COUNT>& extensions);
190 const std::bitset<driver::ProcHook::EXTENSION_COUNT>& extensions);
Ddriver.h78 std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions;
101 std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions;
Ddriver.cpp96 const std::bitset<ProcHook::EXTENSION_COUNT>& GetHookExtensions() const;
97 const std::bitset<ProcHook::EXTENSION_COUNT>& GetHalExtensions() const;
134 std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions_;
135 std::bitset<ProcHook::EXTENSION_COUNT> hal_extensions_;
325 const std::bitset<ProcHook::EXTENSION_COUNT>&
330 const std::bitset<ProcHook::EXTENSION_COUNT>&
Dcode-generator.tmpl40 #include <bitset>
70 const std::bitset<driver::ProcHook::EXTENSION_COUNT> &extensions);
74 const std::bitset<driver::ProcHook::EXTENSION_COUNT> &extensions);
124 const std::bitset<driver::ProcHook::EXTENSION_COUNT> &extensions) {
142 const std::bitset<driver::ProcHook::EXTENSION_COUNT> &extensions) {
220 #include <bitset>
253 const std::bitset<ProcHook::EXTENSION_COUNT> &extensions);
255 const std::bitset<ProcHook::EXTENSION_COUNT> &extensions);
336 const std::bitset<ProcHook::EXTENSION_COUNT> &extensions)
353 const std::bitset<ProcHook::EXTENSION_COUNT> &extensions)
Dstubhal.cpp45 static std::bitset<kMaxInstances> g_instance_used(false);
Ddriver_gen.cpp415 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions) { in InitDriverTable()
437 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions) { in InitDriverTable()
Dapi.cpp481 std::bitset<driver::ProcHook::EXTENSION_COUNT> enabled_extensions_;
Dapi_gen.cpp118 const std::bitset<driver::ProcHook::EXTENSION_COUNT>& extensions) { in InitDispatchTable()
149 const std::bitset<driver::ProcHook::EXTENSION_COUNT>& extensions) { in InitDispatchTable()
/frameworks/minikin/libs/minikin/
DFontFamily.cpp203 const std::unique_ptr<SparseBitSet>& bitset = mCmapFmt14Coverage[vsIndex]; in hasGlyph() local
204 if (bitset.get() == nullptr) { in hasGlyph()
208 return bitset->get(codepoint); in hasGlyph()
/frameworks/native/include/gui/
DFrameTimestamps.h201 std::bitset<FrameEvents::EVENT_COUNT> mBitset;
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
DExprModelTest.java1094 BitSet bitset = new BitSet(); in assertFlags() local
1096 bitset.set(flag); in assertFlags()
1098 assertEquals("flag test for " + a.getUniqueKey(), bitset, a.getShouldReadFlags()); in assertFlags()