• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/MacOS/GetHTTPS.src/

Lines Matching defs:byteCount

993 long		handleMaxLength,handleCurrentLength,stringLength,byteCount;
1031 byteCount = handleCurrentLength + stringLength + 1;
1033 if (byteCount > handleMaxLength)
1049 if (byteCount > handleMaxLength)
1078 long handleMaxLength,handleCurrentLength,byteCount;
1114 byteCount = handleCurrentLength + numChars + 1;
1116 if (byteCount > handleMaxLength)
1132 if (byteCount > handleMaxLength)
1701 long byteCount;
1706 byteCount = CStrLength(theSrcCStr) + CStrLength(theInsertCStr) + 32;
1708 *theHandle = NewHandle(byteCount);
1718 CopyCStrAndInsertCStrLongIntIntoCStr(theSrcCStr,theInsertCStr,theNum,**theHandle,byteCount);
1740 int byteCount;
1803 byteCount = 0;
1808 if (byteCount >= maxDstCStrLength - 1 || *srcCharPtr == '\0' || *srcCharPtr == ' ' || *srcCharPtr == '\t' || *srcCharPtr == '\r' || *srcCharPtr == '\n')
1816 byteCount++;
1837 int byteCount;
1891 for (byteCount = 0;;byteCount++)
1893 if (srcCharPtr[byteCount] == ' ' || srcCharPtr[byteCount] == '\t' || srcCharPtr[byteCount] == '\r' || srcCharPtr[byteCount] == '\n' || srcCharPtr[byteCount] == '\0')
1900 *outTheHandle = NewHandle(byteCount + 1);
1908 ::BlockMove(srcCharPtr,**outTheHandle,byteCount);
1910 (**outTheHandle)[byteCount] = '\0';
2036 int byteCount;
2075 byteCount = 0;
2077 while (theSrcCStr[theCurrentLineOffset + byteCount] != '\r' && theSrcCStr[theCurrentLineOffset + byteCount] != '\0')
2079 byteCount++;
2083 *outNewHandle = NewHandle(byteCount + 1);
2090 ::BlockMove(theSrcCStr + theCurrentLineOffset,**outNewHandle,byteCount);
2092 (**outNewHandle)[byteCount] = '\0';