Lines Matching refs:vd
91 const char *name, u32 vd, char *value)
96 /* A negative 'vd' value indicates that only part of the new property
102 if (vd & 0x80000000) {
103 vd = ~vd + 1;
109 char *new_data = kzalloc(new_prop->length + vd, GFP_KERNEL);
114 memcpy(new_data + new_prop->length, value, vd);
118 new_prop->length += vd;
130 new_prop->length = vd;
138 memcpy(new_prop->value, value, vd);
160 u32 vd;
189 vd = be32_to_cpu(*(__be32 *)prop_data);
190 prop_data += vd + sizeof(vd);
199 vd = be32_to_cpu(*(__be32 *)prop_data);
200 prop_data += sizeof(vd);
202 switch (vd) {
215 vd, prop_data);
221 prop_data += vd;