Lines Matching refs:dict2
1482 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1483 assert(dict2 == dict); in OSConstPtrCastTests()
1487 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1488 assert(dict2 == dict); in OSConstPtrCastTests()
1492 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests() local
1493 assert(dict2 == nullptr); in OSConstPtrCastTests()
1497 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests() local
1498 assert(dict2 == nullptr); in OSConstPtrCastTests()
1505 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1507 assert(dict2 == oldDict); in OSConstPtrCastTests()
1511 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests() local
1513 assert(dict2 == nullptr); in OSConstPtrCastTests()