Lines Matching defs:intp
54 * guarantees. intp points to the OBP data, and n the number of bytes.
59 impl_di_prop_int_from_prom(uchar_t *intp, int n)
64 intp += n;
66 i = (i << 8) | *(--intp);
70 i = (i << 8) | *intp++;
120 int *intp;
154 if ((intp = malloc(cnt * sizeof (int))) == NULL) {
162 tmp = intp;
170 free(intp);
182 *(int **)data = intp;