Home | History | Annotate | Download | only in gob

Lines Matching refs:Are

228 // The callers to the individual decoders are expected to have used decAlloc.
311 // Floating-point numbers are transmitted as uint64s holding the bits
312 // of the underlying representation. They are sent byte-reversed, with
370 // uint8 slices are encoded as an unsigned count followed by the raw bytes.
388 // Strings are encoded as an unsigned count followed by the raw bytes.
427 // Such values are preceded by a zero, making them have the memory layout of a
556 // Maps are encoded as a length followed by key:value pairs.
557 // Because the internals of maps are not visible to us, we must
612 // Slices are encoded as an unsigned length followed by the elements.
639 // Interfaces are encoded as the name of a concrete type followed by a value.
965 // compatibleType asks: Are these two gob Types compatible?
968 // Structs are considered ok; fields will be checked later.
981 // The parentheses look odd but are correct.