i80_controller sample
FLAGS_UPPERCASE
is only used within i80_controller sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
i80_controller sample
FLAGS_UPPERCASE
FLAGS_UPPERCASE macro
Syntax
Show:
Summary
Declaration
from
lv_sprintf_builtin.c:102
#define
FLAGS_UPPERCASE
(
1U
<
<
5U
)
Examples
References
from
examples
Code
Location
#define
FLAGS_UPPERCASE
(
1U
<
<
5U
)
lv_sprintf_builtin.c:102
if
(
(
base
==
16U
)
&&
!
(
flags
&
FLAGS_UPPERCASE
)
&&
(
len
<
PRINTF_NTOA_BUFFER_SIZE
)
)
{
lv_sprintf_builtin.c:226
else
if
(
(
base
==
16U
)
&&
(
flags
&
FLAGS_UPPERCASE
)
&&
(
len
<
PRINTF_NTOA_BUFFER_SIZE
)
)
{
lv_sprintf_builtin.c:229
buf
[
len
++
]
=
digit
<
10
?
'0'
+
digit
:
(
flags
&
FLAGS_UPPERCASE
?
'A'
:
'a'
)
+
digit
-
10
;
lv_sprintf_builtin.c:271
buf
[
len
++
]
=
digit
<
10
?
'0'
+
digit
:
(
flags
&
FLAGS_UPPERCASE
?
'A'
:
'a'
)
+
digit
-
10
;
lv_sprintf_builtin.c:296
flags
|=
FLAGS_UPPERCASE
;
lv_sprintf_builtin.c:722
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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