> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ShapeSignedToHighU16

> ShapeSignedToHighU16

# ShapeSignedToHighU16

Takes a signed 32-bit integer and returns the value in the upper 16 bits of an unsigned 32-bit integer.

## Syntax

```cpp theme={null}
UINT32 ShapeSignedToHighU16(  
         INT32 value  
)  
```

### Parameters

*value*   \
Type: INT32

A signed 32-bit integer.

### Return value

Type: UINT32

An unsigned 32-bit integer, with the input value in the upper 16 bits.

## Remarks

This function changes a signed 32-bit integer into a unsigned 32-bit integer, with the original value in the upper 16 bits.

To place the original value in the *lower* 16 bits, use [ShapeSignedToLowU16](/reference/audio/shapeeqcompcontext/functions/shapesignedtolowu16).

`ShapeSignedToHighU16` is functionally equivalent to [ShapeSignedToU16](/reference/audio/shapeeqcompcontext/functions/shapesignedtou16).

## Requirements

**Header:** shapeeqcompcontext.h

**Supported platforms:** XBOX One family consoles and XBOX Series consoles

## See also

[ShapeEqCompContext](/reference/audio/shapeeqcompcontext/shapeeqcompcontext_members)


## Related topics

- [ShapeSignedToLowU16](/reference/audio/shapeeqcompcontext/functions/shapesignedtolowu16.md)
- [ShapeSignedToU16](/reference/audio/shapeeqcompcontext/functions/shapesignedtou16.md)
- [ShapeSignedToHighU8](/reference/audio/shapeeqcompcontext/functions/shapesignedtohighu8.md)
- [ShapeUnsignedToU16](/reference/audio/shapeeqcompcontext/functions/shapeunsignedtou16.md)
- [ShapeEqCompContext](/reference/audio/shapeeqcompcontext/shapeeqcompcontext_members.md)
