Searched defs:node_type (Results 1 - 21 of 21) sorted by relevance

/external/iproute2/rdma/
H A Ddev.c153 static const char *node_type_to_str(uint8_t node_type) argument
159 if (node_type < ARRAY_SIZE(node_type_str))
160 return node_type_str[node_type];
167 uint8_t node_type; local
172 node_type = mnl_attr_get_u8(tb[RDMA_NLDEV_ATTR_DEV_NODE_TYPE]);
173 node_str = node_type_to_str(node_type);
175 jsonw_string_field(rd->jw, "node_type", node_str);
177 pr_out("node_type %s ", node_str);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A Dilist_node.h205 typedef ilist_node_impl<OptionsT> node_type; typedef in struct:llvm::ilist_detail::SpecificNodeAccess
207 static node_type *getNodePtr(pointer N) {
210 static const node_type *getNodePtr(const_pointer N) {
213 static pointer getValuePtr(node_type *N) {
216 static const_pointer getValuePtr(const node_type *N) {
/external/v8/src/compiler/
H A Dvalue-numbering-reducer.cc167 Type* node_type = NodeProperties::GetType(node); local
168 if (!replacement_type->Is(node_type)) {
170 // {node_type} here. However, typing of NumberConstants assigns different
174 if (node_type->Is(replacement_type)) {
175 NodeProperties::SetType(replacement, node_type);
H A Dtyped-optimization.cc254 Type* const node_type = NodeProperties::GetType(node); local
255 if (!node_type->Is(type)) {
256 type = Type::Intersect(node_type, type, graph()->zone());
304 Type* const node_type = NodeProperties::GetType(node); local
305 if (!node_type->Is(type)) {
306 type = Type::Intersect(node_type, type, graph()->zone());
H A Dload-elimination.cc736 Type* const node_type = NodeProperties::GetType(node); local
737 if (!NodeProperties::GetType(replacement)->Is(node_type)) {
738 replacement = graph()->NewNode(common()->TypeGuard(node_type),
740 NodeProperties::SetType(replacement, node_type);
806 Type* const node_type = NodeProperties::GetType(node); local
807 if (!NodeProperties::GetType(replacement)->Is(node_type)) {
808 replacement = graph()->NewNode(common()->TypeGuard(node_type),
810 NodeProperties::SetType(replacement, node_type);
H A Djs-typed-lowering.cc243 Type* node_type = NodeProperties::GetType(node_); local
244 NodeProperties::SetType(node_, Type::Intersect(node_type, type, zone()));
297 Type* node_type = NodeProperties::GetType(node_); local
299 Type::Intersect(node_type, upper_bound, zone()));
/external/adhd/cras/src/server/
H A Dcras_loopback_iodev.c285 enum CRAS_NODE_TYPE node_type; local
289 node_type = CRAS_NODE_TYPE_POST_MIX_PRE_DSP;
292 node_type = CRAS_NODE_TYPE_POST_DSP;
305 node->type = node_type;
H A Dcras_dbus_control.c424 const char *node_type = node->type; local
458 DBUS_TYPE_STRING_AS_STRING, &node_type))
/external/syslinux/core/lwip/src/include/lwip/
H A Dsnmp_structs.h118 u8_t node_type; member in struct:mib_node
136 u8_t node_type; member in struct:mib_array_node
154 u8_t node_type; member in struct:mib_ram_array_node
180 u8_t node_type; member in struct:mib_list_rootnode
200 u8_t node_type; member in struct:mib_external_node
/external/syslinux/core/lwip/src/core/snmp/
H A Dmib_structs.c189 lrn->node_type = MIB_NODE_LR;
362 if (n->nptr->node_type == MIB_NODE_LR)
454 u8_t node_type, ext_level; local
460 node_type = node->node_type;
461 if ((node_type == MIB_NODE_AR) || (node_type == MIB_NODE_RA))
509 else if(node_type == MIB_NODE_LR)
556 else if(node_type == MIB_NODE_EX)
606 else if (node_type
642 u8_t node_type; local
685 u8_t node_type, ext_level, climb_tree; local
[all...]
/external/tensorflow/tensorflow/core/graph/
H A Dgraph_test.cc91 Node* FromNodeDef(const string& name, const string& node_type, argument
93 auto builder = NodeDefBuilder(name, node_type);
/external/tensorflow/tensorflow/core/util/
H A Dstat_summarizer.cc342 const string& node_type = detail.type; local
344 (*node_type_map_count)[node_type] += 1;
345 (*node_type_map_time)[node_type] += curr_time_val;
346 (*node_type_map_memory)[node_type] += curr_memory_val;
347 (*node_type_map_times_called)[node_type] += detail.times_called / run_count;
372 for (const auto& node_type : node_type_map_time) {
373 const int64 mem_used = node_type_map_memory[node_type.first];
374 timings.emplace(node_type.second,
375 std::pair<string, int64>(node_type.first, mem_used));
392 const string node_type local
[all...]
/external/iproute2/include/uapi/rdma/
H A Drdma_netlink.h57 __u8 node_type; member in struct:rdma_cm_id_stats
/external/kernel-headers/original/uapi/rdma/
H A Drdma_netlink.h57 __u8 node_type; member in struct:rdma_cm_id_stats
/external/libxml2/
H A Dc14n.c185 xmlC14NErrInvalidNode(const char *node_type, const char *extra) argument
190 "Node %s is invalid here : %s\n", node_type, extra);
200 xmlC14NErrUnknownNode(int node_type, const char *extra) argument
205 "Unknown node type %d found : %s\n", node_type, extra);
/external/tensorflow/tensorflow/core/kernels/
H A Dremote_fused_graph_execute_utils.cc1203 const RemoteFusedGraphExecuteInfo::NodeType node_type = local
1209 switch (node_type) {
1464 const RemoteFusedGraphExecuteInfo::NodeType node_type, const int port,
1466 return strings::StrCat(static_cast<int>(node_type), ",", port, ",", index,
1471 const RemoteFusedGraphExecuteInfo::NodeType node_type, const int port,
1473 return strings::StrCat(static_cast<int>(node_type), ",", port, ",", index);
1477 const RemoteFusedGraphExecuteInfo::NodeType node_type) {
1478 return strings::StrCat(static_cast<int>(node_type));
1463 BuildNodeTypeAttr( const RemoteFusedGraphExecuteInfo::NodeType node_type, const int port, const int index, const string& executor_name, const string& node_name) argument
1470 BuildNodeTypeAttr( const RemoteFusedGraphExecuteInfo::NodeType node_type, const int port, const int index) argument
1476 BuildNodeTypeAttr( const RemoteFusedGraphExecuteInfo::NodeType node_type) argument
/external/libdrm/
H A Dxf86drm.c3294 const char *node, int node_type,
3302 dev = drmDeviceAlloc(node_type, node, sizeof(drmPciBusInfo),
3403 int node_type, int maj, int min,
3410 dev = drmDeviceAlloc(node_type, node, sizeof(drmUsbBusInfo),
3509 const char *node, int node_type,
3517 dev = drmDeviceAlloc(node_type, node, sizeof(drmPlatformBusInfo),
3616 const char *node, int node_type,
3624 dev = drmDeviceAlloc(node_type, node, sizeof(drmHost1xBusInfo),
3662 int node_type, i, j; local
3668 node_type
3293 drmProcessPciDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) argument
3402 drmProcessUsbDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) argument
3508 drmProcessPlatformDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) argument
3615 drmProcessHost1xDevice(drmDevicePtr *device, const char *node, int node_type, int maj, int min, bool fetch_deviceinfo, uint32_t flags) argument
3709 int node_type, subsystem_type; local
3936 int node_type, subsystem_type; local
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dib_mad.h76 uint8_t node_type; member in struct:ib_node_info
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.h664 enum node_type { enum in namespace:r600_sb
767 node(node_type nt, node_subtype nst, node_flags flags = NF_EMPTY)
778 node_type type;
862 container_node(node_type nt = NT_LIST, node_subtype nst = NST_LIST,
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp3191 int node_type; local
3197 node_type = CV_NODE_TYPE(src->tag);
3198 if( node_type == CV_NODE_INT || node_type == CV_NODE_REAL )
3206 else if( node_type == CV_NODE_SEQ )
3210 else if( node_type == CV_NODE_NONE )
/external/v8/src/ast/
H A Dast.h193 NodeType node_type() const { return NodeTypeField::decode(bit_field_); } function in class:v8::internal::AstNode
3034 switch (node->node_type()) { \
3617 NodeType mine = node_type(); \
3622 ->node_type(); \
3626 NodeType mine = node_type(); \
3632 mine = result->node_type(); \
3637 NodeType mine = node_type(); \
3643 mine = result->node_type(); \

Completed in 914 milliseconds