/ohos5.0/drivers/peripheral/camera/vdi_base/common/pipeline_core/pipeline_impl/src/strategy/ |
H A D | stream_pipeline_strategy.cpp | 124 G_PIPELINE_SPEC_DATA_TYPE& pipeSpecPtr, NodeSpec& nodeSpec, int nodeIndex, int portIndex) in SetNodeSpec() argument 127 .name_ = std::string(pipeSpecPtr->nodeSpec[nodeIndex].portSpec[portIndex].name), in SetNodeSpec() 128 … .peerPortName_ = std::string(pipeSpecPtr->nodeSpec[nodeIndex].portSpec[portIndex].peerPortName), in SetNodeSpec() 129 ….peerPortNodeName_ = std::string(pipeSpecPtr->nodeSpec[nodeIndex].portSpec[portIndex].peerPortNode… in SetNodeSpec() 133 …std::optional<int32_t> typeId = GetTypeId(std::string(pipeSpecPtr->nodeSpec[nodeIndex].streamType), in SetNodeSpec() 140 PortFormat f = SetPortFormat(pipeSpecPtr, typeId, nodeIndex, portIndex, hostStreamInfo); in SetNodeSpec() 146 } else if (pipeSpecPtr->nodeSpec[nodeIndex].portSpec[portIndex].direction == 1) { in SetNodeSpec() 157 .direction_ = pipeSpecPtr->nodeSpec[nodeIndex].portSpec[portIndex].direction, in SetNodeSpec()
|
H A D | stream_pipeline_strategy.h | 45 NodeSpec& nodeSpec, int nodeIndex, int portIndex);
|
/ohos5.0/foundation/ai/neural_network_runtime/example/deep_learning_framework/tflite/delegates/nnrt_delegate/ |
H A D | nnrt_delegate_kernel.cpp | 75 for (auto nodeIndex : TfLiteIntArrayView(params->nodes_to_replace)) { in Init() local 76 m_delegateNodes.emplace_back(nodeIndex); in Init() 248 for (int32_t nodeIndex : m_delegateNodes) { in AddOpsAndTensors() local 252 …context->GetNodeAndRegistration(context, nodeIndex, &node, ®)); // Obtain the op and registrati… in AddOpsAndTensors() 266 NnrtOpMappingArgs opMappingArgs = { context, &builder, node, nodeIndex }; in AddOpsAndTensors() 283 …ENSURE_STATUS(builder.FinalizeAddOperation(static_cast<OH_NN_OperationType>(nnOpType), nodeIndex)); in AddOpsAndTensors()
|
H A D | nnrt_delegate.cpp | 154 for (auto nodeIndex : TfLiteIntArrayView(executionPlan)) { in GetSupportedNodes() local 157 … TF_LITE_ENSURE_STATUS(context->GetNodeAndRegistration(context, nodeIndex, &node, ®istration)); in GetSupportedNodes() 159 supportedNodes.emplace_back(nodeIndex); in GetSupportedNodes()
|
H A D | nnrt_op_builder.h | 43 int32_t nodeIndex {-1};
|
/ohos5.0/drivers/hdf_core/framework/model/network/wifi/platform/src/message/ |
H A D | message_router.c | 39 uint8_t nodeIndex; member 266 g_servicesIndex[remoteService->serviceId].nodeIndex = nodeId; in DoRegistService() 387 …if (g_servicesIndex[serviceId].nodeIndex != nodeId || g_servicesIndex[serviceId].dispatcherId != d… in UnregistServiceInner() 398 g_servicesIndex[serviceId].nodeIndex = NO_SUCH_NODE_INDEX; in UnregistServiceInner() 573 g_servicesIndex[i].nodeIndex = NO_SUCH_NODE_INDEX; in DoStartMessageRouter() 663 g_servicesIndex[i].nodeIndex = NO_SUCH_NODE_INDEX; in DoShutdownMessageRouter()
|
/ohos5.0/foundation/ai/neural_network_runtime/example/deep_learning_framework/ |
H A D | README_zh.md | 103 for (auto nodeIndex : TfLiteIntArrayView(executionPlan)) { 106 … TF_LITE_ENSURE_STATUS(context->GetNodeAndRegistration(context, nodeIndex, &node, ®istration)); 108 supportedNodes.emplace_back(nodeIndex);
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/ |
H A D | gltf2_exporter.cpp | 701 …if (auto const nodeIndex = FindHandleIndex(entities.nodes, static_cast<Entity>(trackComponent.targ… in GetAnimationTarget() local 702 nodeIndex < nodes.size()) { in GetAnimationTarget() 703 target = nodes[nodeIndex].get(); in GetAnimationTarget() 1409 … if (auto const nodeIndex = FindObjectIndex(data.nodes, *track.channel.node); 0 <= nodeIndex) { in ExportAnimations() local 1410 jsonTarget["node"] = nodeIndex; in ExportAnimations() 2383 …Parent(const ISceneNode& node, const IEcs& ecs, Scene& scene, Node& exportNode, uint32_t nodeIndex, in AttachParent() argument 2394 exportNode.parent->tmpChildren.push_back(nodeIndex); in AttachParent() 2442 auto const nodeIndex = FindOrAddIndex(nodeEntities, nodeEntity); in RecursivelyExportNode() local 2443 auto& exportNode = GetNode(data.nodes, nodeIndex); in RecursivelyExportNode() 2460 AttachParent(node, ecs, scene, exportNode, nodeIndex, nodeEntities, data.nodes); in RecursivelyExportNode()
|
H A D | gltf2_importer.cpp | 1803 …if (size_t const nodeIndex = FindIndex(data.nodes, &node); nodeIndex != GLTF2::GLTF_INVALID_INDEX)… in RecursivelyCreateEntities() local 1805 sceneEntities[nodeIndex] = entityManager.Create(); in RecursivelyCreateEntities() 1815 Entity FindEntity(unordered_map<size_t, Entity> const& sceneEntities, size_t nodeIndex) in FindEntity() argument 1817 if (auto const pos = sceneEntities.find(nodeIndex); pos != sceneEntities.end()) { in FindEntity() 1943 size_t const nodeIndex = FindIndex(data.nodes, &node); in RecursivelyCreateComponents() local 1944 …CORE_ASSERT_MSG(nodeIndex != GLTF2::GLTF_INVALID_INDEX, "Cannot find node: %s", node.name.c_str()); in RecursivelyCreateComponents() 1946 Entity const entity = FindEntity(sceneEntities, nodeIndex); in RecursivelyCreateComponents() 2028 size_t const nodeIndex = FindIndex(data.nodes, node.get()); in CreateSkinComponents() local 2029 Entity const entity = FindEntity(sceneEntities, nodeIndex); in CreateSkinComponents() 2065 size_t const nodeIndex = FindIndex(data.nodes, node.get()); in CreateMorphComponents() local [all …]
|
H A D | gltf2_loader.cpp | 2258 const auto parseNodes = [&scene](LoadResult& loadResult, const json::value& nodeIndex) -> bool { in PrimitiveAttributes() argument 2259 if (!nodeIndex.is_number()) { in PrimitiveAttributes() 2263 const size_t index = nodeIndex.as_number<size_t>(); in PrimitiveAttributes()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar_picker/ |
H A D | calendar_dialog_pattern.h | 140 void HandleTitleArrowsClickEvent(int32_t nodeIndex);
|
H A D | calendar_dialog_pattern.cpp | 1000 void CalendarDialogPattern::HandleTitleArrowsClickEvent(int32_t nodeIndex) in HandleTitleArrowsClickEvent() argument 1012 switch (nodeIndex) { in HandleTitleArrowsClickEvent()
|