Lines Matching defs:piOffset
437 size_t *piOffset, int *piByte) {
440 if (piOffset != NULL) {
441 if ((*piOffset+1) > maxlen)
443 offset = *piOffset;
444 *piOffset += 1;
452 size_t *piOffset, unsigned short *piSht) {
455 if (piOffset != NULL) {
456 if ((*piOffset+2) > maxlen)
458 offset = *piOffset;
459 *piOffset += 2;
472 size_t *piOffset, unsigned int *piInt) {
475 if (piOffset != NULL) {
476 if ((*piOffset+4) > maxlen)
478 offset = *piOffset;
479 *piOffset += 4;
491 size_t *piOffset, char **ppcString) {
496 err = slp_get_sht(pcBuf, iMaxLen, piOffset, &iLen);
499 if ((iLen+*piOffset) > iMaxLen)
506 (void) memcpy(*ppcString, pcBuf + *piOffset, iLen);
508 *piOffset += iLen;