ESP-IDF
nvs::HashList::HashListNode
is only used within ESP-IDF.
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
ESP-IDF
nvs::HashList::HashListNode
nvs::HashList::HashListNode struct
Syntax
Show:
Summary
Declaration
from
nvs_item_hash_list.hpp:35
struct
HashListNode
{
HashListNode
(
)
:
mIndex
(
0xff
)
,
mHash
(
0
)
{
}
HashListNode
(
uint32_t
hash
,
size_t
index
)
:
mIndex
(
(
uint32_t
)
index
)
,
mHash
(
hash
)
{
}
uint32_t
mIndex
:
8
;
uint32_t
mHash
:
24
;
}
;
Fields
Field
Declared as
nvs::HashList::HashListNode::mIndex
uint32_t
:
8
nvs::HashList::HashListNode::mHash
uint32_t
:
24
Examples
References
from
examples
Code
Location
Referrer
struct
HashListNode
{
nvs_item_hash_list.hpp:35
block
.
mNodes
[
block
.
mCount
++
]
=
HashListNode
(
hash_24
,
index
)
;
nvs_item_hash_list.cpp:52
nvs::HashList::insert()
newBlock
->
mNodes
[
0
]
=
HashListNode
(
hash_24
,
index
)
;
nvs_item_hash_list.cpp:62
nvs::HashList::insert()
HashListNode
mNodes
[
ENTRY_COUNT
]
;
nvs_item_hash_list.hpp:57
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