Lines Matching refs:dict2
770 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
771 assert(dict2 == dict); in OSConstPtrCastTests()
775 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
776 assert(dict2 == dict); in OSConstPtrCastTests()
780 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
781 assert(dict2 == nullptr); in OSConstPtrCastTests()
785 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
786 assert(dict2 == nullptr); in OSConstPtrCastTests()
793 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
795 assert(dict2 == oldDict); in OSConstPtrCastTests()
799 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
801 assert(dict2 == nullptr); in OSConstPtrCastTests()