Searched refs:bitset (Results 1 – 15 of 15) sorted by relevance
/frameworks/minikin/tests/unittest/ |
D | SparseBitSetTest.cpp | 35 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/ |
D | SplitDependencyLoader.java | 221 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/ |
D | SupplicantStaNetworkHal.java | 760 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/ |
D | driver_gen.h | 97 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions); 100 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions);
|
D | api_gen.h | 186 const std::bitset<driver::ProcHook::EXTENSION_COUNT>& extensions); 190 const std::bitset<driver::ProcHook::EXTENSION_COUNT>& extensions);
|
D | driver.h | 78 std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions; 101 std::bitset<ProcHook::EXTENSION_COUNT> hook_extensions;
|
D | driver.cpp | 96 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>&
|
D | code-generator.tmpl | 40 #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)
|
D | stubhal.cpp | 45 static std::bitset<kMaxInstances> g_instance_used(false);
|
D | driver_gen.cpp | 415 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions) { in InitDriverTable() 437 const std::bitset<ProcHook::EXTENSION_COUNT>& extensions) { in InitDriverTable()
|
D | api.cpp | 481 std::bitset<driver::ProcHook::EXTENSION_COUNT> enabled_extensions_;
|
D | api_gen.cpp | 118 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/ |
D | FontFamily.cpp | 203 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/ |
D | FrameTimestamps.h | 201 std::bitset<FrameEvents::EVENT_COUNT> mBitset;
|
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/ |
D | ExprModelTest.java | 1094 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()
|