8 references to HttpUtilitiesGeneratorHelpers
CodeGenerator (8)
HttpUtilities\HttpUtilities.cs (8)
42var mask = HttpUtilitiesGeneratorHelpers.SearchKeyByLookThroughMaskCombinations(methodsAsciiStringAsLong, 0, sizeof(ulong) * 8, maskLength); 133var hexMaskString = HttpUtilitiesGeneratorHelpers.GeHexString(maskArray, "0x", ", "); 197var shifts = HttpUtilitiesGeneratorHelpers.GetShifts(mask); 199var maskHexString = HttpUtilitiesGeneratorHelpers.MaskToHexString(mask); 205var bitsCount = HttpUtilitiesGeneratorHelpers.CountBits(mask); 215tmpReturn += string.Format(CultureInfo.InvariantCulture, "(tmp >> {1})", HttpUtilitiesGeneratorHelpers.MaskToHexString(item.Mask), item.Shift); 220string returnString = string.Format(CultureInfo.InvariantCulture, "return ({0}) & {1};", tmpReturn, HttpUtilitiesGeneratorHelpers.MaskToHexString(mask2)); 222bodyString = string.Format(CultureInfo.InvariantCulture, " const int magicNumer = {0};\r\n var tmp = (int)value & magicNumer;\r\n {1}", HttpUtilitiesGeneratorHelpers.MaskToHexString(mask), returnString);