Home | History | Annotate | Download | only in nvpair

Lines Matching defs:n_curr

2452 	 * buffer.)  n_curr is a pointer that lies between n_base and n_end.
2454 * The amount of data left in the buffer is equal to n_end - n_curr.
2459 caddr_t n_curr;
2471 native->n_curr = native->n_base = buf;
2478 native->n_curr = native->n_base = native->n_end = NULL;
2497 if (native->n_curr + size > native->n_end)
2506 bcopy(buf, native->n_curr, size);
2509 bcopy(native->n_curr, buf, size);
2515 native->n_curr += size;
2573 if (native->n_curr + sizeof (int) > native->n_end)
2576 bzero(native->n_curr, sizeof (int));
2577 native->n_curr += sizeof (int);
2589 (native->n_curr - nvp->nvp_size + NVP_VALOFF(nvp));
2607 char *value = native->n_curr - nvp->nvp_size + NVP_VALOFF(nvp);
2638 (native->n_curr - nvp->nvp_size + NVP_VALOFF(nvp));
2765 if (native->n_curr + sizeof (int32_t) > native->n_end)
2767 bcopy(native->n_curr, &decode_len, sizeof (int32_t));
2771 decode_len > native->n_end - native->n_curr)
2782 native->n_curr += sizeof (int32_t);