Lines Matching refs:vd
120 const char *name, u32 vd, char *value)
125 /* A negative 'vd' value indicates that only part of the new property
131 if (vd & 0x80000000) {
132 vd = ~vd + 1;
138 char *new_data = kzalloc(new_prop->length + vd, GFP_KERNEL);
143 memcpy(new_data + new_prop->length, value, vd);
147 new_prop->length += vd;
159 new_prop->length = vd;
167 memcpy(new_prop->value, value, vd);
189 u32 vd;
218 vd = be32_to_cpu(*(__be32 *)prop_data);
219 prop_data += vd + sizeof(vd);
228 vd = be32_to_cpu(*(__be32 *)prop_data);
229 prop_data += sizeof(vd);
231 switch (vd) {
244 vd, prop_data);
250 prop_data += vd;