Home
last modified time | relevance | path

Searched full:leaf (Results 1 – 25 of 129) sorted by relevance

123456

/openbmc/libbej/test/
H A Dbej_tree_test.cpp83 EXPECT_THAT(child1.leaf.nodeAttr.sibling, &child2); in TEST()
95 EXPECT_THAT(child.leaf.nodeAttr.name, name); in TEST()
96 EXPECT_THAT(child.leaf.nodeAttr.format.principalDataType, bejInteger); in TEST()
97 EXPECT_THAT(child.leaf.nodeAttr.format.deferredBinding, 0); in TEST()
98 EXPECT_THAT(child.leaf.nodeAttr.format.readOnlyProperty, 0); in TEST()
99 EXPECT_THAT(child.leaf.nodeAttr.format.nullableProperty, 0); in TEST()
100 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
128 EXPECT_THAT(child.leaf.nodeAttr.name, name); in TEST()
129 EXPECT_THAT(child.leaf.nodeAttr.format.principalDataType, bejEnum); in TEST()
130 EXPECT_THAT(child.leaf.nodeAttr.format.deferredBinding, 0); in TEST()
[all …]
/openbmc/qemu/include/hw/xen/interface/arch-x86/
H A Dcpuid.h29 * Leaf 1 (0x40000x00)
30 * EAX: Largest Xen-information leaf. All leaves up to an including @EAX
40 * Leaf 2 (0x40000x01)
47 * Leaf 3 (0x40000x02)
60 * Leaf 4 (0x40000x03)
61 * Sub-leaf 0: EAX: bit 0: emulated tsc
68 * Sub-leaf 1: EAX: tsc offset low part
72 * Sub-leaf 2: EAX: host tsc frequency in kHz
76 * Leaf 5 (0x40000x04)
78 * Sub-leaf 0: EAX: Features
[all …]
/openbmc/libbej/src/
H A Dbej_encoder_metadata.c192 dictionaries, parentDictionary, &node->leaf.nodeAttr, nodeIndex, in bejUpdateIntMetaData()
194 node->leaf.metaData.sequenceNumber = sequenceNumber; in bejUpdateIntMetaData()
198 node->leaf.metaData.sflSize = bejNnintEncodingSizeOfUInt(sequenceNumber); in bejUpdateIntMetaData()
200 node->leaf.metaData.sflSize += BEJ_TUPLE_F_SIZE; in bejUpdateIntMetaData()
202 node->leaf.metaData.sflSize += BEJ_TUPLE_L_SIZE_FOR_BEJ_INTEGER; in bejUpdateIntMetaData()
204 node->leaf.metaData.vSize = bejIntLengthOfValue(node->value); in bejUpdateIntMetaData()
215 dictionaries, parentDictionary, &(node->leaf.nodeAttr), nodeIndex, in bejUpdateStringMetaData()
217 node->leaf.metaData.sequenceNumber = sequenceNumber; in bejUpdateStringMetaData()
221 node->leaf.metaData.sflSize = bejNnintEncodingSizeOfUInt(sequenceNumber); in bejUpdateStringMetaData()
223 node->leaf.metaData.sflSize += BEJ_TUPLE_F_SIZE; in bejUpdateStringMetaData()
[all …]
H A Dbej_encoder_core.c67 bejEncodeNnint(node->leaf.metaData.sequenceNumber, output)); in bejEncodeBejInteger()
69 RETURN_IF_IERROR(bejEncodeFormat(&node->leaf.nodeAttr.format, output)); in bejEncodeBejInteger()
71 RETURN_IF_IERROR(bejEncodeNnint(node->leaf.metaData.vSize, output)); in bejEncodeBejInteger()
84 bejEncodeNnint(node->leaf.metaData.sequenceNumber, output)); in bejEncodeBejEnum()
86 RETURN_IF_IERROR(bejEncodeFormat(&node->leaf.nodeAttr.format, output)); in bejEncodeBejEnum()
88 RETURN_IF_IERROR(bejEncodeNnint(node->leaf.metaData.vSize, output)); in bejEncodeBejEnum()
98 bejEncodeNnint(node->leaf.metaData.sequenceNumber, output)); in bejEncodeBejString()
100 RETURN_IF_IERROR(bejEncodeFormat(&node->leaf.nodeAttr.format, output)); in bejEncodeBejString()
102 RETURN_IF_IERROR(bejEncodeNnint(node->leaf.metaData.vSize, output)); in bejEncodeBejString()
104 return output->recvOutput((void*)node->value, node->leaf.metaData.vSize, in bejEncodeBejString()
[all …]
/openbmc/qemu/include/qemu/
H A Dcpuid.h19 /* Leaf 1, %edx */
27 /* Leaf 1, %ecx */
44 /* Leaf 7, %ebx */
67 /* Leaf 7, %ecx */
72 /* Leaf 0x80000001, %ecx */
78 * Signatures for different CPU implementations as returned from Leaf 0.
/openbmc/u-boot/fs/btrfs/
H A Dctree.h73 * every tree block (leaf or node) starts with this header.
218 * A leaf is full of items. offset and size tell us where to find
219 * the item in the leaf (relative to the start of the data area)
240 * all non-leaf blocks are nodes, they hold only keys and pointers to
256 struct btrfs_leaf leaf; member
286 return &p->nodes[0]->leaf.items[p->slots[0]].key; in btrfs_path_leaf_key()
313 return p->nodes[0]->leaf.items[p->slots[0]].size; in btrfs_path_item_size()
316 static inline void *btrfs_leaf_data(struct btrfs_leaf *leaf, u32 slot) in btrfs_leaf_data() argument
318 return ((u8 *) leaf) + sizeof(struct btrfs_header) in btrfs_leaf_data()
319 + leaf->items[slot].offset; in btrfs_leaf_data()
[all …]
H A Dctree.c78 addr = p->leaf.items; in btrfs_bin_search()
144 btrfs_item_to_cpu(&res->leaf.items[i]); in read_tree_node()
273 struct btrfs_leaf *leaf = &p->nodes[0]->leaf; in btrfs_next_slot() local
275 if (p->slots[0] + 1 >= leaf->header.nritems) in btrfs_next_slot()
/openbmc/phosphor-user-manager/test/
H A Djson_serializer_test.cpp93 auto leaf = s.getLeafNode("foo/bar/baz"); in TEST_F() local
94 EXPECT_TRUE(leaf.has_value()); in TEST_F()
95 if (leaf.has_value()) in TEST_F()
97 EXPECT_EQ(*leaf, "value"); in TEST_F()
100 leaf = s.getLeafNode("foo/bar/nonexistent"); in TEST_F()
101 EXPECT_FALSE(leaf.has_value()); in TEST_F()
/openbmc/libbej/include/libbej/
H A Dbej_tree.h38 * @brief Holds info needed to encode a leaf type in the JSON tree.
88 * @brief Used to store leaf type property info.
90 * Every type that doesn't belong to parent type are considered as a leaf
91 * property within a JSON tree. Each specific leaf type has its own struct.
105 struct RedfishPropertyLeaf leaf; member
113 struct RedfishPropertyLeaf leaf; member
122 struct RedfishPropertyLeaf leaf; member
134 struct RedfishPropertyLeaf leaf; member
143 struct RedfishPropertyLeaf leaf; member
154 struct RedfishPropertyLeaf leaf; member
/openbmc/u-boot/test/py/tests/
H A Dtest_bind.py10 leaf = ' ' * 4 * depth;
12 leaf = leaf + '\|'
14 leaf = leaf + '`'
15 leaf = leaf + '-- ' + name
17 .format(uclass, drv, leaf))
H A Dtest_fit.py117 def make_fname(leaf): argument
121 leaf: Leaf name of file to create (within temporary directory)
126 return os.path.join(cons.config.build_dir, leaf)
/openbmc/bmcweb/redfish-core/include/utils/
H A Dcollection.hpp67 std::string leaf = path.filename(); in handleCollectionMembers() local
68 if (leaf.empty()) in handleCollectionMembers()
72 pathNames.push_back(leaf); in handleCollectionMembers()
78 for (const std::string& leaf : pathNames) in handleCollectionMembers() local
81 crow::utility::appendUrlPieces(url, leaf); in handleCollectionMembers()
/openbmc/u-boot/board/imgtec/boston/
H A Dlowlevel_init.S22 LEAF(lowlevel_init)
39 LEAF(lowlevel_display)
/openbmc/bmcweb/features/openbmc_rest/
H A Dimage_upload.hpp90 std::string leaf = path.filename(); in uploadImageHandler() local
91 if (leaf.empty()) in uploadImageHandler()
93 leaf = path.str; in uploadImageHandler()
96 asyncResp->res.jsonValue["data"] = leaf; in uploadImageHandler()
/openbmc/phosphor-user-manager/
H A Djson_serializer.hpp65 auto leaf = getLeafNode(key); in deserialize() local
66 if (leaf) in deserialize()
68 value = *leaf; in deserialize()
/openbmc/rest-dbus/resources/
H A Djstree.style.css1leaf>.jstree-ocl{cursor:default}.jstree .jstree-open>.jstree-children{display:block}.jstree .jstre…
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DSecurityPolicy.v1_0_3.json203leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
218leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
473leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
479leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
/openbmc/u-boot/fs/ubifs/
H A Dtnc.c288 * lnc_add - add a leaf node to the leaf node cache.
290 * @zbr: zbranch of leaf node
291 * @node: leaf node
293 * Leaf nodes are non-index nodes directory entry nodes or data nodes. The
294 * purpose of the leaf node cache is to save re-reading the same leaf node over
297 * present implementation of the leaf node cache is extremely simple, and
314 ubifs_assert(!zbr->leaf); in lnc_add()
330 zbr->leaf = lnc_node; in lnc_add()
335 * lnc_add_directly - add a leaf node to the leaf-node-cache.
337 * @zbr: zbranch of leaf node
[all …]
/openbmc/u-boot/fs/reiserfs/
H A Dreiserfs.c361 * which is simultanously leaf and root */ in reiserfs_mount()
362 memcpy (LEAF, ROOT, INFO->blocksize); in reiserfs_mount()
374 * 1 LEAF node (if the ROOT is also a LEAF it is copied here
443 if (ih == &ITEMHEAD[__le16_to_cpu(BLOCKHEAD (LEAF)->blk_nr_item)]) in next_key()
446 /* The last item, was the last in the leaf node. in next_key()
455 ih = (struct item_head *) &BLOCKHEAD (LEAF)->blk_right_delim_key; in next_key()
497 INFO->current_item = &LEAF[__le16_to_cpu(ih->ih_item_location)]; in next_key()
562 /* cache == LEAF */ in search_stat()
563 nr_item = __le16_to_cpu(BLOCKHEAD (LEAF)->blk_nr_item); in search_stat()
576 INFO->current_item = &LEAF[__le16_to_cpu(ih->ih_item_location)]; in search_stat()
/openbmc/u-boot/arch/mips/mach-pic32/
H A Dlowlevel_init.S12 LEAF(lowlevel_init)
/openbmc/u-boot/arch/mips/mach-mscc/
H A Dlowlevel_init.S15 LEAF(lowlevel_init)
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DSecurityPolicy_v1.xml135leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
140leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
214leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
219leaf certificates, partial certificate chains, or complete certificate chains, where a partial cer…
/openbmc/u-boot/include/zfs/
H A Ddsl_dir.h21 * how much space our children are accounting for; for leaf
/openbmc/u-boot/arch/mips/cpu/
H A Dcm_init.S14 LEAF(mips_cm_map)
/openbmc/u-boot/arch/mips/include/asm/
H A Dasm.h52 * LEAF - declare leaf routine
54 #define LEAF(symbol) \ macro

123456