/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/ |
D | HintManagerTest.cc | 451 std::vector<std::unique_ptr<Node>> nodes = in TEST_F() local 453 EXPECT_EQ(4u, nodes.size()); in TEST_F() 454 EXPECT_EQ("CPUCluster0MinFreq", nodes[0]->GetName()); in TEST_F() 455 EXPECT_EQ("CPUCluster1MinFreq", nodes[1]->GetName()); in TEST_F() 456 EXPECT_EQ(files_[0 + 2]->path, nodes[0]->GetPath()); in TEST_F() 457 EXPECT_EQ(files_[1 + 2]->path, nodes[1]->GetPath()); in TEST_F() 458 EXPECT_EQ("1512000", nodes[0]->GetValues()[0]); in TEST_F() 459 EXPECT_EQ("1134000", nodes[0]->GetValues()[1]); in TEST_F() 460 EXPECT_EQ("384000", nodes[0]->GetValues()[2]); in TEST_F() 461 EXPECT_EQ("1512000", nodes[1]->GetValues()[0]); in TEST_F() [all …]
|
/hardware/google/gfxstream/guest/mesa/src/util/tests/ |
D | rb_tree_test.cpp | 210 struct rb_test_node nodes[ARRAY_SIZE(test_numbers)]; in TEST() local 216 nodes[i].key = test_numbers[i]; in TEST() 217 rb_tree_insert(&tree, &nodes[i].node, rb_test_node_cmp); in TEST() 224 rb_tree_remove(&tree, &nodes[i].node); in TEST() 233 struct rb_test_node nodes[100]; in TEST() local 240 for (unsigned i = 0; i < ARRAY_SIZE(nodes); i++) { in TEST() 241 nodes[i].key = x; in TEST() 242 rb_tree_insert(&tree, &nodes[i].node, rb_test_node_cmp); in TEST() 254 struct rb_test_node nodes[3 * 33]; in TEST() local 260 for (i = 0; i < ARRAY_SIZE(nodes) / 3; i++) { in TEST() [all …]
|
D | dag_test.cpp | 79 init_nodes(struct dag *dag, struct node *nodes, unsigned num_nodes) in init_nodes() argument 82 dag_init_node(dag, static_cast<struct dag_node *>(&nodes[i])); in init_nodes() 83 nodes[i].val = i; in init_nodes()
|
/hardware/google/gfxstream/guest/mesa/src/util/ |
D | register_allocate.c | 516 int n1_class = g->nodes[n1].class; in ra_add_node_adjacency() 517 int n2_class = g->nodes[n2].class; in ra_add_node_adjacency() 518 g->nodes[n1].q_total += g->regs->classes[n1_class]->q[n2_class]; in ra_add_node_adjacency() 520 util_dynarray_append(&g->nodes[n1].adjacency_list, unsigned int, n2); in ra_add_node_adjacency() 529 int n1_class = g->nodes[n1].class; in ra_node_remove_adjacency() 530 int n2_class = g->nodes[n2].class; in ra_node_remove_adjacency() 531 g->nodes[n1].q_total -= g->regs->classes[n1_class]->q[n2_class]; in ra_node_remove_adjacency() 533 util_dynarray_delete_unordered(&g->nodes[n1].adjacency_list, unsigned int, in ra_node_remove_adjacency() 548 g->nodes = rerzalloc(g, g->nodes, struct ra_node, g->alloc, alloc); in ra_realloc_interference_graph() 555 struct ra_node* node = g->nodes + i; in ra_realloc_interference_graph() [all …]
|
D | libdrm.h | 47 char **nodes; /* DRM_NODE_MAX sized array */ member
|
D | register_allocate_internal.h | 132 struct ra_node *nodes; member
|
/hardware/google/pixel/power-libperfmgr/libperfmgr/ |
D | HintManager.cc | 335 std::vector<std::unique_ptr<Node>> nodes = ParseNodes(json_doc); in GetFromJSON() local 336 if (nodes.empty()) { in GetFromJSON() 345 std::unordered_map<std::string, Hint> actions = HintManager::ParseActions(json_doc, nodes); in GetFromJSON() 354 sp<NodeLooperThread> nm = new NodeLooperThread(std::move(nodes)); in GetFromJSON() 387 Json::Value nodes = root["Nodes"]; in ParseNodes() local 388 for (Json::Value::ArrayIndex i = 0; i < nodes.size(); ++i) { in ParseNodes() 389 std::string name = nodes[i]["Name"].asString(); in ParseNodes() 405 std::string path = nodes[i]["Path"].asString(); in ParseNodes() 422 std::string node_type = nodes[i]["Type"].asString(); in ParseNodes() 440 Json::Value values = nodes[i]["Values"]; in ParseNodes() [all …]
|
/hardware/google/graphics/gs101/libhwc2.1/libmaindisplay/ |
D | ExynosPrimaryDisplayModule.cpp | 302 Json::Value nodes = root[kAtcProfileModesStr]; in parseAtcProfile() local 305 for (Json::Value::ArrayIndex i = 0; i < nodes.size(); ++i) { in parseAtcProfile() 306 std::string name = nodes[i][kAtcProfileModeNameStr].asString(); in parseAtcProfile() 308 if (nodes[i][kAtcProfileLuxMapStr].size() != nodes[i][kAtcProfileAlMapStr].size() && in parseAtcProfile() 309 nodes[i][kAtcProfileAlMapStr].size() != nodes[i][kAtcProfileStMapStr].size()) { in parseAtcProfile() 314 uint32_t map_cnt = nodes[i][kAtcProfileLuxMapStr].size(); in parseAtcProfile() 318 mode.lux_map.emplace_back(atc_lux_map{nodes[i][kAtcProfileLuxMapStr][index].asUInt(), in parseAtcProfile() 319 nodes[i][kAtcProfileAlMapStr][index].asUInt(), in parseAtcProfile() 320 nodes[i][kAtcProfileStMapStr][index].asUInt()}); in parseAtcProfile() 323 if (!nodes[i][kAtcProfileStUpStepStr].empty()) in parseAtcProfile() [all …]
|
/hardware/interfaces/media/omx/1.0/ |
D | IOmxStore.hal | 83 * Optional node attributes for audio nodes to describe supported values: 87 * Optional node attributes for video nodes to describe supported values: 98 * Required node attributes for video nodes that are required by Android to 149 * Information about nodes provided for a supported node role 166 * Whether to prefer platform nodes for this role. 170 * List of nodes that support this role, ordered by preference. 172 vec<NodeInfo> nodes; 176 * Return the prefix of names of supported nodes. 178 * @return prefix The prefix of the names of all nodes supported by this 187 * List roles of supported nodes.
|
D | IOmx.hal | 29 * IOmx has the ability to create OMX nodes.
|
/hardware/libhardware/modules/camera/3_4/ |
D | v4l2_camera_hal.cpp | 65 std::vector<std::string> nodes; in V4L2CameraHAL() local 72 nodes.push_back(std::string("/dev/") + ent->d_name); in V4L2CameraHAL() 73 HAL_LOGV("Found video node %s.", nodes.back().c_str()); in V4L2CameraHAL() 83 for (const auto& node : nodes) { in V4L2CameraHAL()
|
D | README.md | 58 On creation, it searches /dev/video* nodes for ones with the necessary
|
/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/ |
D | NodeLooperThread.h | 58 explicit NodeLooperThread(std::vector<std::unique_ptr<Node>> nodes) in NodeLooperThread() argument 59 : Thread(false), nodes_(std::move(nodes)) {} in NodeLooperThread()
|
D | HintManager.h | 159 const std::string &json_doc, const std::vector<std::unique_ptr<Node>> &nodes);
|
/hardware/google/pixel/power-libperfmgr/libperfmgr/tools/ |
D | ConfigVerifier.cc | 40 std::vector<std::unique_ptr<Node>> nodes = ParseNodes(json_doc); in VerifyNodes() local 41 if (nodes.empty()) { in VerifyNodes()
|
/hardware/interfaces/media/omx/1.0/vts/functional/store/ |
D | VtsHalMediaOmxV1_0TargetStoreTest.cpp | 280 for (const IOmxStore::NodeInfo& node : role.nodes) { in TEST_P() 302 for (const auto& [owner, nodes] : ownerToNodes) { in TEST_P() 329 if (nodes.find(node.mName) == nodes.end()) { in TEST_P() 351 std::set_difference(nodes.begin(), nodes.end(), nodeKeys.begin(), nodeKeys.end(), in TEST_P()
|
/hardware/interfaces/power/stats/1.0/ |
D | IPowerStats.hal | 26 * feature is not enabled or FILESYSTEM_ERROR on filesystem nodes 41 * feature is not enabled or FILESYSTEM_ERROR on filesystem nodes 93 * nodes access or NOT_SUPPORTED if feature is not enabled or
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/ |
D | executiongraphs.adoc | 154 There must: be no two nodes in the pipeline that share both the same 158 There must: be no two nodes in the pipeline that share the same shader 161 There must: be no two nodes in the pipeline that share the same name but 164 There must: be no two nodes in the pipeline that share the same name 167 There must: be no two nodes in the pipeline that share the same name 221 applications can dynamically select different nodes to execute. 374 slink:VkDispatchGraphCountInfoAMDX structure defining the nodes which 377 When this command is executed, the nodes specified in pname:pCountInfo are 442 slink:VkDispatchGraphCountInfoAMDX structure defining the nodes which 445 When this command is executed, the nodes specified in pname:pCountInfo are [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_EXT_physical_device_drm.adoc | 19 devices, enabling users to match Vulkan physical devices with DRM nodes on
|
/hardware/interfaces/power/1.1/ |
D | IPower.hal | 32 * nodes access error.
|
/hardware/google/pixel/presubmit_tests/schemas/ |
D | powerhint-schema.proto | 20 repeated Node nodes = 1 [ json_name = "Nodes" ]; field
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | extdependency.py | 47 def nodes(self): member in DiGraph
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/ |
D | VK_AMDX_shader_enqueue.adoc | 79 …y `pStages` and any pipelines in `pLibraryInfo->pLibraries` define the possible nodes of the graph. 80 The linkage between nodes however is defined wholly in shader code. 131 …t relationship is implementation dependent, reducing the number of unique nodes (different name st… 190 Each of the above commands enqueues an array of nodes in the bound execution graph pipeline with se… 214 There is no guarantee of how payloads will be consumed by `CoalescingAMDX` nodes. 269 …* `maxExecutionGraphShaderOutputNodes` specifies the maximum number of unique nodes that can be di… 449 …e useful when a shader may output some large number of payloads but to potentially different nodes. 566 ### RESOLVED: For compute nodes, can the input payload be modified? If so what sees that modificati…
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/contrib/ |
D | render-a11y-string.mjs | 589 // Although there are nodes of type "size" in the parse tree, they have 627 // All infix nodes are replace with other nodes.
|
/hardware/interfaces/power/1.0/ |
D | IPower.hal | 85 * nodes access error.
|