Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <stdint.h>

Typedef int8_t

Interface status: externallyDefinedApi

typedef __int8_t int8_t;

Description

denotes a signed integer type with a width of exactly 8 bits.

[Top]


Typedef int16_t

Interface status: externallyDefinedApi

typedef __int16_t int16_t;

Description

denotes a signed integer type with a width of exactly 16 bits.

[Top]


Typedef int32_t

Interface status: externallyDefinedApi

typedef __int32_t int32_t;

Description

denotes a signed integer type with a width of exactly 32 bits.

[Top]


Typedef int64_t

Interface status: externallyDefinedApi

typedef __int64_t int64_t;

Description

denotes a signed integer type with a width of exactly 64 bits.

[Top]


Typedef uint64_t

Interface status: externallyDefinedApi

typedef __uint64_t uint64_t;

Description

denotes a unsigned integer type with a width of exactly 64 bits.

[Top]


Typedef int_least8_t

Interface status: externallyDefinedApi

typedef __int_least8_t int_least8_t;

Description

denotes an signed integer type with a width of at least 8 bits.

[Top]


Typedef int_least16_t

Interface status: externallyDefinedApi

typedef __int_least16_t int_least16_t;

Description

denotes an signed integer type with a width of at least 16 bits.

[Top]


Typedef int_least32_t

Interface status: externallyDefinedApi

typedef __int_least32_t int_least32_t;

Description

denotes an signed integer type with a width of at least 32 bits.

[Top]


Typedef int_least64_t

Interface status: externallyDefinedApi

typedef __int_least64_t int_least64_t;

Description

denotes an signed integer type with a width of at least 64 bits.

[Top]


Typedef uint_least8_t

Interface status: externallyDefinedApi

typedef __uint_least8_t uint_least8_t;

Description

denotes an unsigned integer type with a width of at least 8 bits.

[Top]


Typedef uint_least16_t

Interface status: externallyDefinedApi

typedef __uint_least16_t uint_least16_t;

Description

denotes an unsigned integer type with a width of at least 16 bits.

[Top]


Typedef uint_least32_t

Interface status: externallyDefinedApi

typedef __uint_least32_t uint_least32_t;

Description

denotes an unsigned integer type with a width of at least 32 bits.

[Top]


Typedef uint_least64_t

Interface status: externallyDefinedApi

typedef __uint_least64_t uint_least64_t;

Description

denotes an unsigned integer type with a width of at least 64 bits.

[Top]


Typedef int_fast8_t

Interface status: externallyDefinedApi

typedef __int_fast8_t int_fast8_t;

Description

designates the fastest signed integer type with a width of at least 8 bits.

[Top]


Typedef int_fast16_t

Interface status: externallyDefinedApi

typedef __int_fast16_t int_fast16_t;

Description

designates the fastest signed integer type with a width of at least 16 bits.

[Top]


Typedef int_fast32_t

Interface status: externallyDefinedApi

typedef __int_fast32_t int_fast32_t;

Description

designates the fastest signed integer type with a width of at least 32 bits.

[Top]


Typedef int_fast64_t

Interface status: externallyDefinedApi

typedef __int_fast64_t int_fast64_t;

Description

designates the fastest signed integer type with a width of at least 64 bits.

[Top]


Typedef uint_fast8_t

Interface status: externallyDefinedApi

typedef __uint_fast8_t uint_fast8_t;

Description

designates the fastest unsigned integer type with a width of at least 8 bits.

[Top]


Typedef uint_fast16_t

Interface status: externallyDefinedApi

typedef __uint_fast16_t uint_fast16_t;

Description

designates the fastest unsigned integer type with a width of at least 16 bits.

[Top]


Typedef uint_fast32_t

Interface status: externallyDefinedApi

typedef __uint_fast32_t uint_fast32_t;

Description

designates the fastest unsigned integer type with a width of at least 32 bits.

[Top]


Typedef uint_fast64_t

Interface status: externallyDefinedApi

typedef __uint_fast64_t uint_fast64_t;

Description

designates the fastest unsigned integer type with a width of at least 64 bits.

[Top]


Typedef intmax_t

Interface status: externallyDefinedApi

typedef __intmax_t intmax_t;

Description

designates a signed integer type capable of representing any value of any signed integer type

[Top]


Typedef uintmax_t

Interface status: externallyDefinedApi

typedef __uintmax_t uintmax_t;

Description

designates an unsigned integer type capable of representing any value of any unsigned integer type

[Top]


Typedef intptr_t

Interface status: externallyDefinedApi

typedef __intptr_t intptr_t;

Description

designates a signed integer type with the property that any valid pointer to void can be converted to this type, then converted back to a pointer to void, and the result will compare equal to the original pointer.

[Top]


Typedef uintptr_t

Interface status: externallyDefinedApi

typedef __uintptr_t uintptr_t;

Description

designates an unsigned integer type with the property that any valid pointer to void can be converted to this type, then converted back to a pointer to void, and the result will compare equal to the original pointer