Home | History | Annotate | Download | only in TcpDxe

Lines Matching defs:Value

19   Get a UINT16 value from buffer.

23 @return The UINT16 value obtained from the buffer.
31 UINT16 Value;
32 CopyMem (&Value, Buf, sizeof (UINT16));
33 return NTOHS (Value);
37 Get a UINT32 value from buffer.
41 @return The UINT32 value obtained from the buffer.
49 UINT32 Value;
50 CopyMem (&Value, Buf, sizeof (UINT32));
51 return NTOHL (Value);
55 Put a UINT32 value in buffer.
72 Compute the window scale value according to the given buffer size.
76 @return The scale value.
350 @param[in] TSVal The timestamp value.