Lines Matching defs:encoder
140 type encoder struct { struct
141 p []byte // encoded program
142 s []byte // strings member
143 tmp [binary.MaxVarintLen64]byte
146 func (e *encoder) int(x int) {
150 func (e *encoder) int64(x int64) {
155 func (e *encoder) uint64(x uint64) {
160 func (e *encoder) string(s string) {
165 func (e *encoder) bytes(b []byte) {
170 func (e *encoder) binding(bind Binding) {
176 func (e *encoder) bindings(binds []Binding) {
183 func (e *encoder) function(fn *Funcode) {