Lines Matching defs:pn
182 prop_number_t pn;
191 pn = prop_dictionary_get(device_properties(dev), "x-resolution");
192 if (pn != NULL)
193 sc->sc_width = (u_int)prop_number_integer_value(pn);
195 pn = prop_dictionary_get(device_properties(dev), "y-resolution");
196 if (pn != NULL)
197 sc->sc_height = (u_int)prop_number_integer_value(pn);
199 pn = prop_dictionary_get(device_properties(dev), "stride-bytes");
200 if (pn != NULL)
201 sc->sc_stride = (u_int)prop_number_integer_value(pn);
203 pn = prop_dictionary_get(device_properties(dev), "bits-per-pixel");
204 if (pn != NULL)
205 sc->sc_bpp = (u_int)prop_number_integer_value(pn);