Lines Matching refs:dict2
1527 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1528 assert(dict2 == dict); in OSConstPtrCastTests()
1532 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1533 assert(dict2 == dict); in OSConstPtrCastTests()
1537 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1538 assert(dict2 == nullptr); in OSConstPtrCastTests()
1542 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1543 assert(dict2 == nullptr); in OSConstPtrCastTests()
1550 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1552 assert(dict2 == oldDict); in OSConstPtrCastTests()
1556 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1558 assert(dict2 == nullptr); in OSConstPtrCastTests()