func github.com/jackc/pgx/v5/internal/pgio.AppendInt32

46 uses

	github.com/jackc/pgx/v5/internal/pgio (current package)
		write.go#L22: func AppendInt32(buf []byte, n int32) []byte {

	github.com/jackc/pgx/v5
		copy_from.go#L171: 		buf = pgio.AppendInt32(buf, 0)
		copy_from.go#L172: 		buf = pgio.AppendInt32(buf, 0)
		values.go#L29: 	buf = pgio.AppendInt32(buf, -1)

	github.com/jackc/pgx/v5/pgproto3
		bind.go#L135: 			dst = pgio.AppendInt32(dst, -1)
		bind.go#L139: 		dst = pgio.AppendInt32(dst, int32(len(p)))
		cancel_request.go#L48: 	dst = pgio.AppendInt32(dst, msgLen)
		cancel_request.go#L49: 	dst = pgio.AppendInt32(dst, cancelRequestCode)
		data_row.go#L74: 			dst = pgio.AppendInt32(dst, -1)
		data_row.go#L78: 		dst = pgio.AppendInt32(dst, int32(len(v)))
		function_call.go#L115: 			dst = pgio.AppendInt32(dst, -1)
		function_call.go#L117: 			dst = pgio.AppendInt32(dst, int32(len(argument)))
		function_call_response.go#L46: 		dst = pgio.AppendInt32(dst, -1)
		function_call_response.go#L48: 		dst = pgio.AppendInt32(dst, int32(len(src.Result)))
		gss_enc_request.go#L34: 	dst = pgio.AppendInt32(dst, 8)
		gss_enc_request.go#L35: 	dst = pgio.AppendInt32(dst, gssEncReqNumber)
		pgproto3.go#L107: 	dst = pgio.AppendInt32(dst, -1)
		row_description.go#L118: 		dst = pgio.AppendInt32(dst, fd.TypeModifier)
		sasl_initial_response.go#L51: 	dst = pgio.AppendInt32(dst, int32(len(src.Data)))
		ssl_request.go#L34: 	dst = pgio.AppendInt32(dst, 8)
		ssl_request.go#L35: 	dst = pgio.AppendInt32(dst, sslRequestNumber)
		startup_message.go#L73: 	dst = pgio.AppendInt32(dst, -1)

	github.com/jackc/pgx/v5/pgtype
		array.go#L84: 	buf = pgio.AppendInt32(buf, int32(len(src.Dimensions)))
		array.go#L90: 	buf = pgio.AppendInt32(buf, containsNull)
		array.go#L95: 		buf = pgio.AppendInt32(buf, src.Dimensions[i].Length)
		array.go#L96: 		buf = pgio.AppendInt32(buf, src.Dimensions[i].LowerBound)
		array_codec.go#L194: 		buf = pgio.AppendInt32(buf, -1)
		bits.go#L102: 	buf = pgio.AppendInt32(buf, bits.Len)
		composite.go#L481: 		b.buf = pgio.AppendInt32(b.buf, -1)
		composite.go#L494: 	b.buf = pgio.AppendInt32(b.buf, -1)
		date.go#L175: 	return pgio.AppendInt32(buf, daysSinceDateEpoch), nil
		hstore.go#L101: 	buf = pgio.AppendInt32(buf, int32(len(hstore)))
		hstore.go#L104: 		buf = pgio.AppendInt32(buf, int32(len(k)))
		hstore.go#L108: 			buf = pgio.AppendInt32(buf, -1)
		hstore.go#L110: 			buf = pgio.AppendInt32(buf, int32(len(*v)))
		int.go#L722: 	return pgio.AppendInt32(buf, int32(n)), nil
		int.go#L751: 	return pgio.AppendInt32(buf, int32(n.Int64)), nil
		interval.go#L113: 	buf = pgio.AppendInt32(buf, interval.Days)
		interval.go#L114: 	buf = pgio.AppendInt32(buf, interval.Months)
		multirange.go#L150: 	buf = pgio.AppendInt32(buf, int32(elementCount))
		multirange.go#L156: 		buf = pgio.AppendInt32(buf, -1)
		path.go#L111: 	buf = pgio.AppendInt32(buf, int32(len(path.P)))
		polygon.go#L104: 	buf = pgio.AppendInt32(buf, int32(len(polygon.P)))
		range_codec.go#L114: 		buf = pgio.AppendInt32(buf, -1)
		range_codec.go#L138: 		buf = pgio.AppendInt32(buf, -1)
		tsvector.go#L168: 	buf = pgio.AppendInt32(buf, int32(len(tsv.Lexemes)))