PicoSDK
divmod_u32u32()
is only used within PicoSDK.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
PicoSDK
divmod_u32u32()
divmod_u32u32() function
Integer divide of two unsigned 32-bit values
Syntax
Show:
Summary
Declaration
Definition
from
divider.h:102
divmod_result_t
divmod_u32u32
(
uint32_t
a
,
uint32_t
b
)
;
Implemented in
divider_compiler.c:22
Arguments
Argument
Description
a
Dividend
b
Divisor
Return value
quotient in low word/r0, remainder in high word/r1
Examples
References
from
examples
Code
Location
Referrer
divmod_result_t
divmod_u32u32
(
uint32_t
a
,
uint32_t
b
)
{
divider_compiler.c:22
divmod_result_t
divmod_u32u32
(
uint32_t
a
,
uint32_t
b
)
;
divider.h:102
divmod_result_t
divmod_u32u32_unsafe
(
uint32_t
a
,
uint32_t
b
)
{
return
divmod_u32u32
(
a
,
b
)
;
}
divider_compiler.c:106
divmod_u32u32_unsafe()
Call Tree
from
examples
divmod_u32u32()
is called by 1 function and calls 1 function:
divmod_u32u32_unsafe()
All items filtered out
divmod_u32u32()
hw_divider_divmod_u32()
All items filtered out
Data Use
from
examples
divmod_u32u32()
:
All items filtered out
divmod_u32u32()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out