Lines Matching refs:pd_array

88           struct _prop_dict_entry       *pd_array;  member
352 _PROP_ASSERT((pd->pd_capacity == 0 && pd->pd_array == NULL) || in _prop_dictionary_free()
353 (pd->pd_capacity != 0 && pd->pd_array != NULL)); in _prop_dictionary_free()
357 if (pd->pd_array != NULL) in _prop_dictionary_free()
358 _PROP_FREE(pd->pd_array, M_PROP_DICT); in _prop_dictionary_free()
367 po = pd->pd_array[pd->pd_count - 1].pde_objref; in _prop_dictionary_free()
386 pdk = pd->pd_array[pd->pd_count].pde_key; in _prop_dictionary_free()
420 pdk = pd->pd_array[pd->pd_count].pde_key; in _prop_dictionary_emergency_free()
526 *next_obj1 = dict1->pd_array[idx].pde_objref; in _prop_dictionary_equals()
527 *next_obj2 = dict2->pd_array[idx].pde_objref; in _prop_dictionary_equals()
529 if (!prop_dictionary_keysym_equals(dict1->pd_array[idx].pde_key, in _prop_dictionary_equals()
530 dict2->pd_array[idx].pde_key)) in _prop_dictionary_equals()
566 pd->pd_array = array; in _prop_dictionary_alloc()
587 oarray = pd->pd_array; in _prop_dictionary_expand()
594 pd->pd_array = array; in _prop_dictionary_expand()
620 pdk = pd->pd_array[pdi->pdi_index].pde_key; in _prop_dictionary_iterator_next_object_locked()
710 pdk = opd->pd_array[idx].pde_key; in prop_dictionary_copy()
711 po = opd->pd_array[idx].pde_objref; in prop_dictionary_copy()
716 pd->pd_array[idx].pde_key = pdk; in prop_dictionary_copy()
717 pd->pd_array[idx].pde_objref = po; in prop_dictionary_copy()
859 rv = prop_array_add(array, pd->pd_array[idx].pde_key); in prop_dictionary_all_keys()
888 pde = &pd->pd_array[idx]; in _prop_dict_lookup()
1017 pd->pd_array[0].pde_key = pdk; in prop_dictionary_set()
1018 pd->pd_array[0].pde_objref = po; in prop_dictionary_set()
1025 pde = &pd->pd_array[idx]; in prop_dictionary_set()
1038 memmove(&pd->pd_array[1], &pd->pd_array[0], in prop_dictionary_set()
1040 pd->pd_array[0].pde_key = pdk; in prop_dictionary_set()
1041 pd->pd_array[0].pde_objref = po; in prop_dictionary_set()
1050 memmove(&pd->pd_array[idx + 2], &pd->pd_array[idx + 1], in prop_dictionary_set()
1052 pd->pd_array[idx + 1].pde_key = pdk; in prop_dictionary_set()
1053 pd->pd_array[idx + 1].pde_objref = po; in prop_dictionary_set()
1095 _PROP_ASSERT(pde == &pd->pd_array[idx]); in _prop_dictionary_remove()
1098 memmove(&pd->pd_array[idx - 1], &pd->pd_array[idx], in _prop_dictionary_remove()