misc: Rename the (De|En)codeVarint function _(De|En)codeVarint32.
authorGabe Black <gabeblack@google.com>
Thu, 5 Oct 2017 02:22:56 +0000 (19:22 -0700)
committerGabe Black <gabeblack@google.com>
Thu, 5 Oct 2017 09:15:14 +0000 (09:15 +0000)
commit000cda556c4264c0f931bda12ed41d200ac19b81
tree73d82cafc3482e432ca281f92ce6d8103c0e16a9
parent2243430eac4f6049d2f943627ad993e74eca31eb
misc: Rename the (De|En)codeVarint function _(De|En)codeVarint32.

DecodeVarint implicitly truncates its inputs to 32 bits, and that should be
obvious from its name, and so not a surprise to the caller. EncodeVarint also
has the suffix added for consistency. Both functions are only used in
protolib.py, so add a _ to make it private (in the python sense) to the
module.

Change-Id: I835295717bb51672351b963fe1227ed619836f22
Reviewed-on: https://gem5-review.googlesource.com/5001
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
util/protolib.py