Lines Matching refs:pd_array
89 struct _prop_dict_entry *pd_array; member
353 _PROP_ASSERT((pd->pd_capacity == 0 && pd->pd_array == NULL) || in _prop_dictionary_free()
354 (pd->pd_capacity != 0 && pd->pd_array != NULL)); in _prop_dictionary_free()
358 if (pd->pd_array != NULL) in _prop_dictionary_free()
359 _PROP_FREE(pd->pd_array, M_PROP_DICT); in _prop_dictionary_free()
368 po = pd->pd_array[pd->pd_count - 1].pde_objref; in _prop_dictionary_free()
387 pdk = pd->pd_array[pd->pd_count].pde_key; in _prop_dictionary_free()
421 pdk = pd->pd_array[pd->pd_count].pde_key; in _prop_dictionary_emergency_free()
527 *next_obj1 = dict1->pd_array[idx].pde_objref; in _prop_dictionary_equals()
528 *next_obj2 = dict2->pd_array[idx].pde_objref; in _prop_dictionary_equals()
530 if (!prop_dictionary_keysym_equals(dict1->pd_array[idx].pde_key, in _prop_dictionary_equals()
531 dict2->pd_array[idx].pde_key)) in _prop_dictionary_equals()
567 pd->pd_array = array; in _prop_dictionary_alloc()
588 oarray = pd->pd_array; in _prop_dictionary_expand()
595 pd->pd_array = array; in _prop_dictionary_expand()
621 pdk = pd->pd_array[pdi->pdi_index].pde_key; in _prop_dictionary_iterator_next_object_locked()
711 pdk = opd->pd_array[idx].pde_key; in prop_dictionary_copy()
712 po = opd->pd_array[idx].pde_objref; in prop_dictionary_copy()
717 pd->pd_array[idx].pde_key = pdk; in prop_dictionary_copy()
718 pd->pd_array[idx].pde_objref = po; in prop_dictionary_copy()
860 rv = prop_array_add(array, pd->pd_array[idx].pde_key); in prop_dictionary_all_keys()
889 pde = &pd->pd_array[idx]; in _prop_dict_lookup()
1020 pd->pd_array[0].pde_key = pdk; in prop_dictionary_set()
1021 pd->pd_array[0].pde_objref = po; in prop_dictionary_set()
1028 pde = &pd->pd_array[idx]; in prop_dictionary_set()
1041 memmove(&pd->pd_array[1], &pd->pd_array[0], in prop_dictionary_set()
1043 pd->pd_array[0].pde_key = pdk; in prop_dictionary_set()
1044 pd->pd_array[0].pde_objref = po; in prop_dictionary_set()
1053 memmove(&pd->pd_array[idx + 2], &pd->pd_array[idx + 1], in prop_dictionary_set()
1055 pd->pd_array[idx + 1].pde_key = pdk; in prop_dictionary_set()
1056 pd->pd_array[idx + 1].pde_objref = po; in prop_dictionary_set()
1098 _PROP_ASSERT(pde == &pd->pd_array[idx]); in _prop_dictionary_remove()
1101 memmove(&pd->pd_array[idx - 1], &pd->pd_array[idx], in _prop_dictionary_remove()