func github.com/jackc/pgx/v5/internal/pgio.AppendUint32
32 uses
github.com/jackc/pgx/v5/internal/pgio (current package)
write.go#L7: func AppendUint32(buf []byte, n uint32) []byte {
write.go#L23: return AppendUint32(buf, uint32(n))
github.com/jackc/pgx/v5/pgproto3
authentication_cleartext_password.go#L39: dst = pgio.AppendUint32(dst, AuthTypeCleartextPassword)
authentication_gss.go#L32: dst = pgio.AppendUint32(dst, AuthTypeGSS)
authentication_gss_continue.go#L36: dst = pgio.AppendUint32(dst, AuthTypeGSSCont)
authentication_md5_password.go#L43: dst = pgio.AppendUint32(dst, AuthTypeMD5Password)
authentication_ok.go#L39: dst = pgio.AppendUint32(dst, AuthTypeOk)
authentication_sasl.go#L53: dst = pgio.AppendUint32(dst, AuthTypeSASL)
authentication_sasl_continue.go#L43: dst = pgio.AppendUint32(dst, AuthTypeSASLContinue)
authentication_sasl_final.go#L43: dst = pgio.AppendUint32(dst, AuthTypeSASLFinal)
backend_key_data.go#L36: dst = pgio.AppendUint32(dst, src.ProcessID)
cancel_request.go#L50: dst = pgio.AppendUint32(dst, src.ProcessID)
execute.go#L43: dst = pgio.AppendUint32(dst, src.MaxRows)
function_call.go#L99: dst = pgio.AppendUint32(dst, src.Function)
negotiate_protocol_version.go#L58: dst = pgio.AppendUint32(dst, src.NewestMinorProtocol)
negotiate_protocol_version.go#L59: dst = pgio.AppendUint32(dst, uint32(len(src.UnrecognizedOptions)))
notification_response.go#L50: dst = pgio.AppendUint32(dst, src.PID)
parameter_description.go#L52: dst = pgio.AppendUint32(dst, oid)
parse.go#L70: dst = pgio.AppendUint32(dst, oid)
row_description.go#L114: dst = pgio.AppendUint32(dst, fd.TableOID)
row_description.go#L116: dst = pgio.AppendUint32(dst, fd.DataTypeOID)
startup_message.go#L75: dst = pgio.AppendUint32(dst, src.ProtocolVersion)
github.com/jackc/pgx/v5/pgtype
array.go#L92: buf = pgio.AppendUint32(buf, src.ElementOID)
composite.go#L480: b.buf = pgio.AppendUint32(b.buf, oid)
composite.go#L492: b.buf = pgio.AppendUint32(b.buf, oid)
float4.go#L136: return pgio.AppendUint32(buf, math.Float32bits(n)), nil
float4.go#L158: return pgio.AppendUint32(buf, math.Float32bits(float32(n.Float64))), nil
float4.go#L174: return pgio.AppendUint32(buf, math.Float32bits(f)), nil
tid.go#L114: buf = pgio.AppendUint32(buf, tid.BlockNumber)
uint32.go#L143: return pgio.AppendUint32(buf, v), nil
uint32.go#L158: return pgio.AppendUint32(buf, v.Uint32), nil
uint32.go#L180: return pgio.AppendUint32(buf, uint32(v.Int64)), nil