Home
last modified time | relevance | path

Searched refs:o_sv_he (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/osfmk/vm/
H A Dvm_compressor.c3897 struct c_sv_hash_entry o_sv_he, n_sv_he; in c_segment_sv_hash_drop_ref() local
3900 o_sv_he.he_record = c_segment_sv_hash_table[hash_indx].he_record; in c_segment_sv_hash_drop_ref()
3902 n_sv_he.he_ref = o_sv_he.he_ref - 1; in c_segment_sv_hash_drop_ref()
3903 n_sv_he.he_data = o_sv_he.he_data; in c_segment_sv_hash_drop_ref()
3905 …if (OSCompareAndSwap64((UInt64)o_sv_he.he_record, (UInt64)n_sv_he.he_record, (UInt64 *) &c_segment… in c_segment_sv_hash_drop_ref()
3920 struct c_sv_hash_entry o_sv_he, n_sv_he; in c_segment_sv_hash_insert() local
3932 o_sv_he.he_record = c_segment_sv_hash_table[hash_sindx].he_record; in c_segment_sv_hash_insert()
3934 while (o_sv_he.he_data == data || o_sv_he.he_ref == 0) { in c_segment_sv_hash_insert()
3935 n_sv_he.he_ref = o_sv_he.he_ref + 1; in c_segment_sv_hash_insert()
3938 …if (OSCompareAndSwap64((UInt64)o_sv_he.he_record, (UInt64)n_sv_he.he_record, (UInt64 *) &c_segment… in c_segment_sv_hash_insert()
[all …]