Lines Matching refs:dict2
1483 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1484 assert(dict2 == dict); in OSConstPtrCastTests()
1488 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1489 assert(dict2 == dict); in OSConstPtrCastTests()
1493 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1494 assert(dict2 == nullptr); in OSConstPtrCastTests()
1498 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1499 assert(dict2 == nullptr); in OSConstPtrCastTests()
1506 __assert_only OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1508 assert(dict2 == oldDict); in OSConstPtrCastTests()
1512 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1514 assert(dict2 == nullptr); in OSConstPtrCastTests()