Lines Matching refs:ctx

303         internal static float? ReadFloatWrapperLittleEndian(ref ParseContext ctx)
305 return ParsingPrimitivesWrappers.ReadFloatWrapperLittleEndian(ref ctx.buffer, ref ctx.state);
308 internal static float? ReadFloatWrapperSlow(ref ParseContext ctx)
310 return ParsingPrimitivesWrappers.ReadFloatWrapperSlow(ref ctx.buffer, ref ctx.state);
313 internal static double? ReadDoubleWrapperLittleEndian(ref ParseContext ctx)
315 return ParsingPrimitivesWrappers.ReadDoubleWrapperLittleEndian(ref ctx.buffer, ref ctx.state);
318 internal static double? ReadDoubleWrapperSlow(ref ParseContext ctx)
320 return ParsingPrimitivesWrappers.ReadDoubleWrapperSlow(ref ctx.buffer, ref ctx.state);
323 internal static bool? ReadBoolWrapper(ref ParseContext ctx)
325 return ParsingPrimitivesWrappers.ReadBoolWrapper(ref ctx.buffer, ref ctx.state);
328 internal static uint? ReadUInt32Wrapper(ref ParseContext ctx)
330 return ParsingPrimitivesWrappers.ReadUInt32Wrapper(ref ctx.buffer, ref ctx.state);
333 internal static int? ReadInt32Wrapper(ref ParseContext ctx)
335 return ParsingPrimitivesWrappers.ReadInt32Wrapper(ref ctx.buffer, ref ctx.state);
338 internal static ulong? ReadUInt64Wrapper(ref ParseContext ctx)
340 return ParsingPrimitivesWrappers.ReadUInt64Wrapper(ref ctx.buffer, ref ctx.state);
343 internal static ulong? ReadUInt64WrapperSlow(ref ParseContext ctx)
345 return ParsingPrimitivesWrappers.ReadUInt64WrapperSlow(ref ctx.buffer, ref ctx.state);
348 internal static long? ReadInt64Wrapper(ref ParseContext ctx)
350 return ParsingPrimitivesWrappers.ReadInt64Wrapper(ref ctx.buffer, ref ctx.state);