Lines Matching defs:pd_count
91 unsigned int pd_count;
360 _PROP_ASSERT(pd->pd_count <= pd->pd_capacity);
365 if (pd->pd_count == 0) {
376 po = pd->pd_array[pd->pd_count - 1].pde_objref;
394 --pd->pd_count;
395 pdk = pd->pd_array[pd->pd_count].pde_key;
426 _PROP_ASSERT(pd->pd_count != 0);
427 --pd->pd_count;
429 pdk = pd->pd_array[pd->pd_count].pde_key;
483 if (pd->pd_count == 0) {
507 pdi->pdi_index < pd->pd_count ?
559 if (dict1->pd_count != dict2->pd_count)
562 if (idx == dict1->pd_count) {
567 _PROP_ASSERT(idx < dict1->pd_count);
614 pd->pd_count = 0;
661 _PROP_ASSERT(pdi->pdi_index <= pd->pd_count);
663 if (pdi->pdi_index == pd->pd_count)
753 pd = _prop_dictionary_alloc(opd->pd_count);
755 for (idx = 0; idx < opd->pd_count; idx++) {
765 pd->pd_count = opd->pd_count;
819 rv = pd->pd_count;
900 array = prop_array_create_with_capacity(pd->pd_count);
904 for (idx = 0; idx < pd->pd_count; idx++) {
931 for (idx = 0, base = 0, distance = pd->pd_count; distance != 0;
1033 _PROP_ASSERT(pd->pd_count <= pd->pd_capacity);
1054 if (pd->pd_count == pd->pd_capacity &&
1064 if (pd->pd_count == 0) {
1067 pd->pd_count++;
1087 pd->pd_count * sizeof(*pde));
1090 pd->pd_count++;
1099 (pd->pd_count - (idx + 1)) * sizeof(*pde));
1102 pd->pd_count++;
1141 _PROP_ASSERT(pd->pd_count != 0);
1142 _PROP_ASSERT(idx < pd->pd_count);
1147 (pd->pd_count - idx) * sizeof(*pde));
1148 pd->pd_count--;