Home
last modified time | relevance | path

Searched refs:node (Results 926 - 950 of 14418) sorted by relevance

1...<<31323334353637383940>>...577

/kernel/linux/linux-6.6/lib/
H A Dhashtable_test.c15 struct hlist_node node; member
43 hash_add(hash, &a.node, a.key); in hashtable_test_hash_empty()
56 hash_add(hash, &a.node, a.key); in hashtable_test_hash_hashed()
59 hash_add(hash, &b.node, b.key); in hashtable_test_hash_hashed()
61 KUNIT_EXPECT_TRUE(test, hash_hashed(&a.node)); in hashtable_test_hash_hashed()
62 KUNIT_EXPECT_TRUE(test, hash_hashed(&b.node)); in hashtable_test_hash_hashed()
74 hash_add(hash, &a.node, a.key); in hashtable_test_hash_add()
78 hash_add(hash, &b.node, b.key); in hashtable_test_hash_add()
80 hash_for_each(hash, bkt, x, node) { in hashtable_test_hash_add()
102 hash_add(hash, &a.node, in hashtable_test_hash_del()
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares__htable.c156 ares__llist_node_t *node; in ares__htable_all_buckets() local
157 for (node = ares__llist_node_first(htable->buckets[i]); node != NULL; in ares__htable_all_buckets()
158 node = ares__llist_node_next(node)) { in ares__htable_all_buckets()
159 out[cnt++] = ares__llist_node_val(node); in ares__htable_all_buckets()
177 ares__llist_node_t *node = NULL; in ares__htable_find() local
179 for (node = ares__llist_node_first(htable->buckets[idx]); node != NULL; in ares__htable_find()
180 node in ares__htable_find()
233 ares__llist_node_t *node; ares__htable_expand() local
316 ares__llist_node_t *node = NULL; ares__htable_insert() local
383 ares__llist_node_t *node; ares__htable_remove() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dbilateral_spring_adapter.cpp59 auto node = GetNode(controlIndex + index); in FlushAnimation() local
60 if (node) { in FlushAnimation()
61 node->OnAnimation(); in FlushAnimation()
65 auto node = GetNode(controlIndex - index); in FlushAnimation() local
66 if (node) { in FlushAnimation()
67 node->OnAnimation(); in FlushAnimation()
92 RefPtr<SpringNode> node; in SetDeltaValue() local
95 node = GetNode(controlIndex + index); in SetDeltaValue()
96 if (node) { in SetDeltaValue()
97 node in SetDeltaValue()
[all...]
/foundation/arkui/ace_engine/interfaces/native/
H A Dnative_node_napi.h21 * tree node operations, attribute setting, and event listening.
73 * @brief Obtain the ID of the Navigation component where the node is located.
75 * @param node The node.
85 * {@link ARKUI_ERROR_CODE_PARAM_INVALID} if the node, buffer or writeLength is null.
87 * this may be because the node is not in Navigation.
92 ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength);
95 * @brief Obtain the name of the NavDestination component where the node is located.
97 * @param node The node
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/
H A Drs_root_node_command.cpp29 auto node = std::shared_ptr<RSRootRenderNode>(new RSRootRenderNode(id, in Create() local
31 context.GetMutableNodeMap().RegisterRenderNode(node); in Create()
36 if (auto node = context.GetNodeMap().GetRenderNode<RSRootRenderNode>(id)) { in AttachRSSurfaceNode()
37 node->AttachRSSurfaceNode(surfaceNodeId); in AttachRSSurfaceNode()
38 context.GetGlobalRootRenderNode()->AddChild(node); in AttachRSSurfaceNode()
44 if (auto node = context.GetNodeMap().GetRenderNode<RSRootRenderNode>(id)) { in SetEnableRender()
45 node->SetEnableRender(flag); in SetEnableRender()
53 auto node = nodeMap.GetRenderNode<RSRootRenderNode>(id); in AttachToUniSurfaceNode() local
54 if (!parent || !node) { in AttachToUniSurfaceNode()
56 ":%{public}" PRIu64 ", parent valid:%{public}d, node vali in AttachToUniSurfaceNode()
[all...]
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/pipeline/
H A Drs_divided_render_util_test.cpp50 std::shared_ptr<RSSurfaceRenderNode> node = std::make_shared<RSSurfaceRenderNode>(config); in HWTEST_F() local
51 node->InitRenderParams(); in HWTEST_F()
54 auto param = RSDividedRenderUtil::CreateBufferDrawParam(*node, true); in HWTEST_F()
58 node->SetTotalMatrix(matrix); in HWTEST_F()
59 param = RSDividedRenderUtil::CreateBufferDrawParam(*node, false); in HWTEST_F()
72 std::shared_ptr<RSSurfaceRenderNode> node = std::make_shared<RSSurfaceRenderNode>(config); in HWTEST_F() local
73 node->InitRenderParams(); in HWTEST_F()
74 auto param = RSDividedRenderUtil::CreateBufferDrawParam(*node, false, true); in HWTEST_F()
77 param = RSDividedRenderUtil::CreateBufferDrawParam(*node, false, false); in HWTEST_F()
80 node in HWTEST_F()
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_divided_render_util_test.cpp50 std::shared_ptr<RSSurfaceRenderNode> node = std::make_shared<RSSurfaceRenderNode>(config); in HWTEST_F() local
51 node->InitRenderParams(); in HWTEST_F()
54 auto param = RSDividedRenderUtil::CreateBufferDrawParam(*node, true); in HWTEST_F()
58 node->SetTotalMatrix(matrix); in HWTEST_F()
59 param = RSDividedRenderUtil::CreateBufferDrawParam(*node, false); in HWTEST_F()
72 std::shared_ptr<RSSurfaceRenderNode> node = std::make_shared<RSSurfaceRenderNode>(config); in HWTEST_F() local
73 node->InitRenderParams(); in HWTEST_F()
74 auto param = RSDividedRenderUtil::CreateBufferDrawParam(*node, false, true); in HWTEST_F()
77 param = RSDividedRenderUtil::CreateBufferDrawParam(*node, false, false); in HWTEST_F()
80 node in HWTEST_F()
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dtopology.h39 #define nr_cpus_node(node) cpumask_weight(cpumask_of_node(node))
42 #define for_each_node_with_cpus(node) \
43 for_each_online_node(node) \
44 if (nr_cpus_node(node))
66 * The following tunable allows platforms to override the default node
101 static inline void set_numa_node(int node) in set_numa_node() argument
103 this_cpu_write(numa_node, node); in set_numa_node()
108 static inline void set_cpu_numa_node(int cpu, int node) in set_cpu_numa_node() argument
110 per_cpu(numa_node, cpu) = node; in set_cpu_numa_node()
136 set_numa_mem(int node) set_numa_mem() argument
158 set_cpu_numa_mem(int cpu, int node) set_cpu_numa_mem() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dmm.h46 struct nvkm_mm_node *node; in nvkm_mm_heap_size() local
48 list_for_each_entry(node, &mm->nodes, nl_entry) { in nvkm_mm_heap_size()
49 if (node->heap == heap) in nvkm_mm_heap_size()
50 size += node->length; in nvkm_mm_heap_size()
56 nvkm_mm_contiguous(struct nvkm_mm_node *node) in nvkm_mm_contiguous() argument
58 return !node->next; in nvkm_mm_contiguous()
62 nvkm_mm_addr(struct nvkm_mm_node *node) in nvkm_mm_addr() argument
64 if (WARN_ON(!nvkm_mm_contiguous(node))) in nvkm_mm_addr()
66 return node->offset; in nvkm_mm_addr()
70 nvkm_mm_size(struct nvkm_mm_node *node) in nvkm_mm_size() argument
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/hw/hfi1/
H A Dtrace_mmu.h18 TP_PROTO(struct mmu_rb_node *node),
19 TP_ARGS(node),
24 TP_fast_assign(__entry->addr = node->addr;
25 __entry->len = node->len;
26 __entry->refcount = kref_read(&node->refcount);
28 TP_printk("MMU node addr 0x%lx, len %lu, refcount %u",
36 TP_PROTO(struct mmu_rb_node *node),
37 TP_ARGS(node));
48 TP_printk("MMU node addr 0x%lx, len %lu",
55 TP_PROTO(struct mmu_rb_node *node),
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dmm.h46 struct nvkm_mm_node *node; in nvkm_mm_heap_size() local
48 list_for_each_entry(node, &mm->nodes, nl_entry) { in nvkm_mm_heap_size()
49 if (node->heap == heap) in nvkm_mm_heap_size()
50 size += node->length; in nvkm_mm_heap_size()
56 nvkm_mm_contiguous(struct nvkm_mm_node *node) in nvkm_mm_contiguous() argument
58 return !node->next; in nvkm_mm_contiguous()
62 nvkm_mm_addr(struct nvkm_mm_node *node) in nvkm_mm_addr() argument
64 if (WARN_ON(!nvkm_mm_contiguous(node))) in nvkm_mm_addr()
66 return node->offset; in nvkm_mm_addr()
70 nvkm_mm_size(struct nvkm_mm_node *node) in nvkm_mm_size() argument
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dcommon-operator-reducer.h36 Reduction Reduce(Node* node) final;
39 Reduction ReduceBranch(Node* node);
40 Reduction ReduceDeoptimizeConditional(Node* node);
41 Reduction ReduceMerge(Node* node);
42 Reduction ReduceEffectPhi(Node* node);
43 Reduction ReducePhi(Node* node);
44 Reduction ReduceReturn(Node* node);
45 Reduction ReduceSelect(Node* node);
46 Reduction ReduceSwitch(Node* node);
47 Reduction ReduceStaticAssert(Node* node);
[all...]
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_import.py21 Walks over all the names imported in a dotted_as_names node.
25 node = pending.pop()
26 if node.type == token.NAME:
27 yield node.value
28 elif node.type == syms.dotted_name:
29 yield "".join([ch.value for ch in node.children])
30 elif node.type == syms.dotted_as_name:
31 pending.append(node.children[0])
32 elif node.type == syms.dotted_as_names:
33 pending.extend(node
[all...]
/foundation/arkui/ace_engine/interfaces/native/node/
H A Dnative_node_napi.cpp19 #include "node/node_extened.h"
20 #include "node/node_model.h"
208 ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) in OH_ArkUI_GetNavigationId()
210 CHECK_NULL_RETURN(node, ARKUI_ERROR_CODE_PARAM_INVALID); in OH_ArkUI_GetNavigationId()
218 navigationAPI->getNavigationId(node->uiNodeHandle, buffer, bufferSize, writeLength); in OH_ArkUI_GetNavigationId()
223 ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) in OH_ArkUI_GetNavDestinationName()
225 CHECK_NULL_RETURN(node, ARKUI_ERROR_CODE_PARAM_INVALID); in OH_ArkUI_GetNavDestinationName()
233 navigationAPI->getNavDestinationName(node->uiNodeHandle, buffer, bufferSize, writeLength); in OH_ArkUI_GetNavDestinationName()
237 ArkUI_ErrorCode OH_ArkUI_GetNavStackLength(ArkUI_NodeHandle node, int32_t* length) in OH_ArkUI_GetNavStackLength() argument
239 CHECK_NULL_RETURN(node, ARKUI_ERROR_CODE_PARAM_INVALI in OH_ArkUI_GetNavStackLength()
207 OH_ArkUI_GetNavigationId( ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetNavigationId() argument
222 OH_ArkUI_GetNavDestinationName( ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetNavDestinationName() argument
250 OH_ArkUI_GetNavDestinationNameByIndex( ArkUI_NodeHandle node, int32_t index, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetNavDestinationNameByIndex() argument
265 OH_ArkUI_GetNavDestinationId( ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetNavDestinationId() argument
280 OH_ArkUI_GetNavDestinationState(ArkUI_NodeHandle node, ArkUI_NavDestinationState* state) OH_ArkUI_GetNavDestinationState() argument
297 OH_ArkUI_GetNavDestinationIndex(ArkUI_NodeHandle node, int32_t* index) OH_ArkUI_GetNavDestinationIndex() argument
314 OH_ArkUI_GetNavDestinationParam(ArkUI_NodeHandle node) OH_ArkUI_GetNavDestinationParam() argument
324 OH_ArkUI_GetRouterPageIndex(ArkUI_NodeHandle node, int32_t* index) OH_ArkUI_GetRouterPageIndex() argument
341 OH_ArkUI_GetRouterPageName( ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetRouterPageName() argument
356 OH_ArkUI_GetRouterPagePath( ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetRouterPagePath() argument
371 OH_ArkUI_GetRouterPageState(ArkUI_NodeHandle node, ArkUI_RouterPageState* state) OH_ArkUI_GetRouterPageState() argument
388 OH_ArkUI_GetRouterPageId( ArkUI_NodeHandle node, char* buffer, int32_t bufferSize, int32_t* writeLength) OH_ArkUI_GetRouterPageId() argument
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/src/serialization/
H A Dexporter.cpp71 ISerNode::Ptr node; in Export() local
72 auto r = ExportObject(object, node); in Export()
74 res.reset(new RootNode { EXPORTER_VERSION, BASE_NS::move(node) }); in Export()
80 ISerNode::Ptr Exporter::CreateObjectNode(const IObject::ConstPtr& object, BASE_NS::shared_ptr<MapNode> node) in CreateObjectNode() argument
88 object->GetClassId(), iid, BASE_NS::move(node))); in CreateObjectNode()
138 ISerNode::Ptr node; in AutoExportObjectMembers() local
139 auto res = ExportValue(Any<uint64_t>(flags->GetObjectFlags().GetValue()), node); in AutoExportObjectMembers()
140 if (res && node) { in AutoExportObjectMembers()
141 members.push_back(NamedNode { "__flags", node }); in AutoExportObjectMembers()
152 if (auto node in AutoExportObjectMembers()
186 ISerNode::Ptr node; ExportIContainer() local
213 ISerNode::Ptr node; ExportArray() local
312 ISerNode::Ptr node; ExportAny() local
376 ISerNode::Ptr node; Export() local
389 ISerNode::Ptr node; ExportAny() local
402 ISerNode::Ptr node; ExportWeakPtr() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvp5.c116 int comp, node; in vp5_parse_vector_models() local
130 for (node=0; node<7; node++) in vp5_parse_vector_models()
131 if (vp56_rac_get_prob_branchy(c, vp5_vmc_pct[comp][4 + node])) in vp5_parse_vector_models()
132 model->vector_pdv[comp][node] = vp56_rac_gets_nn(c, 7); in vp5_parse_vector_models()
140 int node, cg, ctx; in vp5_parse_coeff_models() local
147 for (node=0; node<11; node in vp5_parse_coeff_models()
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
H A Dload-actual.js13 const Node = require('../node.js')
26 // actual node more than one time.
31 // same node multiple times when symlinks attack.
38 // And, we know that it can ONLY be relevant when the node is a target of a
78 for (const node of tree.inventory.values()) {
79 node.extraneous = true
182 .then(node => this.#loadFSTree(node))
193 // try to find a node that is the parent in a fs tree sense, but not a
195 // resolve deps that node wil
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/
H A Daudio_policy_parser.cpp114 bool AudioPolicyParser::ParseInternal(xmlNode &node) in ParseInternal() argument
116 xmlNode *currNode = &node; in ParseInternal()
141 void AudioPolicyParser::ParseAdapters(xmlNode &node) in ParseAdapters() argument
144 currNode = node.xmlChildrenNode; in ParseAdapters()
296 void AudioPolicyParser::ParseAdapter(xmlNode &node) in ParseAdapter() argument
298 std::string adapterName = ExtractPropertyValue("name", node); in ParseAdapter()
300 AUDIO_ERR_LOG("No name provided for the adapter class %{public}s", node.name); in ParseAdapter()
309 adapterInfo.adaptersupportScene_ = ExtractPropertyValue("supportScene", node); in ParseAdapter()
311 xmlNode *currNode = node.xmlChildrenNode; in ParseAdapter()
331 void AudioPolicyParser::ParsePipes(xmlNode &node, AudioAdapterInf argument
360 ParsePipeInfos(xmlNode &node, PipeInfo &pipeInfo) ParsePipeInfos() argument
388 GetAdapterTypeAsInt(xmlNode &node) GetAdapterTypeAsInt() argument
399 GetPipeInfoTypeAsInt(xmlNode &node) GetPipeInfoTypeAsInt() argument
412 ParseStreamProps(xmlNode &node, PipeInfo &pipeInfo) ParseStreamProps() argument
451 ParseConfigs(xmlNode &node, PipeInfo &pipeInfo) ParseConfigs() argument
488 ParseDevices(xmlNode &node, AudioAdapterInfo &adapterInfo) ParseDevices() argument
519 ParseGroups(xmlNode &node, XmlNodeType type) ParseGroups() argument
532 ParseGroup(xmlNode &node, XmlNodeType type) ParseGroup() argument
546 ParseGroupSink(xmlNode &node, XmlNodeType type, std::string &groupName) ParseGroupSink() argument
564 ParseGlobalConfigs(xmlNode &node) ParseGlobalConfigs() argument
593 GetGlobalConfigTypeAsInt(xmlNode &node) GetGlobalConfigTypeAsInt() argument
608 ParsePAConfigs(xmlNode &node) ParsePAConfigs() argument
636 ParseDefaultMaxInstances(xmlNode &node) ParseDefaultMaxInstances() argument
659 ParseOutputMaxInstances(xmlNode &node) ParseOutputMaxInstances() argument
678 ParseInputMaxInstances(xmlNode &node) ParseInputMaxInstances() argument
697 ParseCommonConfigs(xmlNode &node) ParseCommonConfigs() argument
741 GetXmlNodeTypeAsInt(xmlNode &node) GetXmlNodeTypeAsInt() argument
756 ExtractPropertyValue(const std::string &propName, xmlNode &node) ExtractPropertyValue() argument
802 GetDefaultMaxInstanceTypeAsInt(xmlNode &node) GetDefaultMaxInstanceTypeAsInt() argument
813 GetStreamTypeAsInt(xmlNode &node) GetStreamTypeAsInt() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_list_item_modifier.cpp15 #include "core/interfaces/native/node/node_list_item_modifier.h"
17 #include "interfaces/native/node/list_option.h"
55 ListItemModelNG::SetDeleteArea(frameNode, reinterpret_cast<FrameNode*>(item->node), onAction, onEnterActionArea, in SetOptionBuilder()
63 void SetListItemSwiperAction(ArkUINodeHandle node, ArkUIListItemSwipeActionOptionHandle option) in SetListItemSwiperAction() argument
66 auto* frameNode = reinterpret_cast<FrameNode*>(node); in SetListItemSwiperAction()
82 void ResetListItemSwiperAction(ArkUINodeHandle node) in ResetListItemSwiperAction() argument
84 auto* frameNode = reinterpret_cast<FrameNode*>(node); in ResetListItemSwiperAction()
92 void SetListItemSelected(ArkUINodeHandle node, ArkUI_Bool selected) in SetListItemSelected() argument
94 auto* frameNode = reinterpret_cast<FrameNode*>(node); in SetListItemSelected()
99 void ResetListItemSelected(ArkUINodeHandle node) in ResetListItemSelected() argument
106 SetSelectable(ArkUINodeHandle node, ArkUI_Bool selectable) SetSelectable() argument
113 ResetSelectable(ArkUINodeHandle node) ResetSelectable() argument
135 SetListItemOnSelect(ArkUINodeHandle node, void* extraParam) SetListItemOnSelect() argument
150 ResetListItemOnSelect(ArkUINodeHandle node) ResetListItemOnSelect() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dpanel_composed_element.cpp70 auto node = GetInspectorNode(SlidingPanelElement::TypeId()); in GetPanelType() local
71 if (!node) { in GetPanelType()
74 auto renderPanel = AceType::DynamicCast<RenderSlidingPanel>(node); in GetPanelType()
89 auto node = GetInspectorNode(SlidingPanelElement::TypeId()); in GetPanelMode() local
90 if (!node) { in GetPanelMode()
93 auto renderPanel = AceType::DynamicCast<RenderSlidingPanel>(node); in GetPanelMode()
108 auto node = GetInspectorNode(SlidingPanelElement::TypeId()); in GetDragBar() local
109 if (!node) { in GetDragBar()
112 auto renderPanel = AceType::DynamicCast<RenderSlidingPanel>(node); in GetDragBar()
123 auto node in GetFullHeight() local
136 auto node = GetInspectorNode(SlidingPanelElement::TypeId()); GetHalfHeight() local
149 auto node = GetInspectorNode(SlidingPanelElement::TypeId()); GetMiniHeight() local
[all...]
/foundation/distributeddatamgr/data_share/frameworks/js/napi/observer/include/
H A Dnapi_subscriber_manager.h35 bool operator==(const NapiRdbObserverMapKey &node) const in operator ==()
37 return uri_ == node.uri_ && templateId_ == node.templateId_; in operator ==()
39 bool operator!=(const NapiRdbObserverMapKey &node) const in operator !=()
41 return !(node == *this); in operator !=()
43 bool operator<(const NapiRdbObserverMapKey &node) const in operator <()
45 if (uri_ != node.uri_) { in operator <()
46 return uri_ < node.uri_; in operator <()
48 return templateId_ < node.templateId_; in operator <()
80 bool operator==(const NapiPublishedObserverMapKey &node) cons in NapiPublishedObserverMapKey()
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-sunxi/
H A Dplatsmp.c44 struct device_node *node; in sun6i_smp_prepare_cpus() local
46 node = of_find_compatible_node(NULL, NULL, "allwinner,sun6i-a31-prcm"); in sun6i_smp_prepare_cpus()
47 if (!node) { in sun6i_smp_prepare_cpus()
48 pr_err("Missing A31 PRCM node in the device tree\n"); in sun6i_smp_prepare_cpus()
52 prcm_membase = of_iomap(node, 0); in sun6i_smp_prepare_cpus()
53 of_node_put(node); in sun6i_smp_prepare_cpus()
59 node = of_find_compatible_node(NULL, NULL, in sun6i_smp_prepare_cpus()
61 if (!node) { in sun6i_smp_prepare_cpus()
62 pr_err("Missing A31 CPU config node in the device tree\n"); in sun6i_smp_prepare_cpus()
66 cpucfg_membase = of_iomap(node, in sun6i_smp_prepare_cpus()
129 struct device_node *node; sun8i_smp_prepare_cpus() local
[all...]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Dnseval.c52 if (!info->node) { in acpi_ns_evaluate()
54 * Get the actual namespace node for the target object if we in acpi_ns_evaluate()
57 * 1) Null node, valid pathname from root (absolute path) in acpi_ns_evaluate()
63 ACPI_NS_NO_UPSEARCH, &info->node); in acpi_ns_evaluate()
70 * For a method alias, we must grab the actual method node so that in acpi_ns_evaluate()
73 if (acpi_ns_get_type(info->node) == ACPI_TYPE_LOCAL_METHOD_ALIAS) { in acpi_ns_evaluate()
74 info->node = in acpi_ns_evaluate()
76 info->node->object); in acpi_ns_evaluate()
82 info->node_flags = info->node->flags; in acpi_ns_evaluate()
83 info->obj_desc = acpi_ns_get_attached_object(info->node); in acpi_ns_evaluate()
[all...]
/kernel/linux/linux-6.6/arch/arm/mach-sunxi/
H A Dplatsmp.c42 struct device_node *node; in sun6i_smp_prepare_cpus() local
44 node = of_find_compatible_node(NULL, NULL, "allwinner,sun6i-a31-prcm"); in sun6i_smp_prepare_cpus()
45 if (!node) { in sun6i_smp_prepare_cpus()
46 pr_err("Missing A31 PRCM node in the device tree\n"); in sun6i_smp_prepare_cpus()
50 prcm_membase = of_iomap(node, 0); in sun6i_smp_prepare_cpus()
51 of_node_put(node); in sun6i_smp_prepare_cpus()
57 node = of_find_compatible_node(NULL, NULL, in sun6i_smp_prepare_cpus()
59 if (!node) { in sun6i_smp_prepare_cpus()
60 pr_err("Missing A31 CPU config node in the device tree\n"); in sun6i_smp_prepare_cpus()
64 cpucfg_membase = of_iomap(node, in sun6i_smp_prepare_cpus()
127 struct device_node *node; sun8i_smp_prepare_cpus() local
[all...]
/kernel/linux/linux-6.6/drivers/acpi/acpica/
H A Dnseval.c52 if (!info->node) { in acpi_ns_evaluate()
54 * Get the actual namespace node for the target object if we in acpi_ns_evaluate()
57 * 1) Null node, valid pathname from root (absolute path) in acpi_ns_evaluate()
63 ACPI_NS_NO_UPSEARCH, &info->node); in acpi_ns_evaluate()
70 * For a method alias, we must grab the actual method node so that in acpi_ns_evaluate()
73 if (acpi_ns_get_type(info->node) == ACPI_TYPE_LOCAL_METHOD_ALIAS) { in acpi_ns_evaluate()
74 info->node = in acpi_ns_evaluate()
76 info->node->object); in acpi_ns_evaluate()
82 info->node_flags = info->node->flags; in acpi_ns_evaluate()
83 info->obj_desc = acpi_ns_get_attached_object(info->node); in acpi_ns_evaluate()
[all...]

Completed in 11 milliseconds

1...<<31323334353637383940>>...577