Lines Matching defs:numBytes
9588 int numBytes;
9600 numColons = numBytes = value = digitsProcessed = zeroFillStart = 0;
9620 if (!numBytes && (ptr + 1) < limit && *(ptr + 1) == ' ')
9631 zeroFillStart = numBytes;
9645 if (numBytes > 13) { LogMsg("GetValueForIPv6Addr:1: numBytes is %d", numBytes); return mDNSNULL; }
9647 v6addr[numBytes++] = (mDNSu8) ((value >> 8) & 0xFF);
9648 v6addr[numBytes++] = (mDNSu8) (value & 0xFF);
9652 if (numBytes > 14) { LogMsg("GetValueForIPv6Addr:2: numBytes is %d", numBytes); return mDNSNULL; }
9661 LogMsg("GetValueForIPv6Addr: no trailing bytes after colon, numBytes is %d", numBytes);
9665 if (numBytes > 14) { LogMsg("GetValueForIPv6Addr:3: numBytes is %d", numBytes); return mDNSNULL; }
9666 v6addr[numBytes++] = (mDNSu8) ((value >> 8) & 0xFF);
9667 v6addr[numBytes++] = (mDNSu8) (value & 0xFF);
9674 for (j = i, n = 0; n < 16 - numBytes; j++, n++)
9679 else if (numBytes == 16)
9683 LogMsg("GetValueForIPv6addr: Not enough bytes for IPv6 address, numBytes is %d", numBytes);