Lines Matching refs:flSize
446 U32 const flSize = 1 + (srcSize > 31) + (srcSize > 4095);
448 if (srcSize + flSize > dstCapacity)
451 switch (flSize) {
454 default: /*note : should not be necessary : flSize is within {1,2,3} */
458 memcpy(ostart + flSize, src, srcSize);
459 return srcSize + flSize;
465 U32 const flSize = 1 + (srcSize > 31) + (srcSize > 4095);
469 switch (flSize) {
472 default: /*note : should not be necessary : flSize is necessarily within {1,2,3} */
476 ostart[flSize] = *(const BYTE *)src;
477 return flSize + 1;