Lines Matching full:bytesencoder
39 type bytesEncoder []byte
41 func (b bytesEncoder) Len() int {
45 func (b bytesEncoder) Encode(dst []byte) {
170 return multiEncoder([]encoder{byteFFEncoder, bytesEncoder(bytes)}), nil
172 return bytesEncoder(bytes), nil
181 return multiEncoder([]encoder{byte00Encoder, bytesEncoder(bytes)}), nil
183 return bytesEncoder(bytes), nil
319 return bytesEncoder(dst), nil
330 return bytesEncoder(dst), nil
404 return bytesEncoder(nil), nil
440 return bytesEncoder(nil), nil
453 return bytesEncoder(stripTagAndLength(bytes)), nil
461 return bytesEncoder(nil), nil
478 return bytesEncoder(v.Bytes()), nil
485 return bytesEncoder(nil), nil
524 return bytesEncoder(nil), nil
532 return bytesEncoder(nil), nil
541 return bytesEncoder(nil), nil
548 return bytesEncoder(rv.FullBytes), nil
553 t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{rv.Class, rv.Tag, len(rv.Bytes), rv.IsCompound}))
554 t.body = bytesEncoder(rv.Bytes)
614 t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{class, tag, bodyLen, isCompound}))
620 tt.tag = bytesEncoder(appendTagAndLength(tt.scratch[:0], tagAndLength{
636 t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{class, tag, bodyLen, isCompound}))