Lines Matching refs:dict2
1545 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1546 assert(dict2 == dict); in OSConstPtrCastTests()
1550 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1551 assert(dict2 == dict); in OSConstPtrCastTests()
1555 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1556 assert(dict2 == nullptr); in OSConstPtrCastTests()
1560 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1561 assert(dict2 == nullptr); in OSConstPtrCastTests()
1568 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1570 assert(dict2 == oldDict); in OSConstPtrCastTests()
1574 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1576 assert(dict2 == nullptr); in OSConstPtrCastTests()