/external/libcxx/test/std/containers/container.node/ |
D | node_handle.pass.cpp | 25 …is_same_v<typename map<K, T, C1, A_map>::node_type, typename map<K, T, C2, A_map>::n… 26 …is_same_v<typename map<K, T, C1, A_map>::node_type, typename multimap<K, T, C2, A_ma… 27 …is_same_v<typename set<K, C1, A_set>::node_type, typename set<K, C2, A_set>::node… 28 …is_same_v<typename set<K, C1, A_set>::node_type, typename multiset<K, C2, A_set>:… 29 …ypename unordered_map<K, T, H1, E1, A_map>::node_type, typename unordered_map<K, T, H2, E2, A_map>… 30 …name unordered_map<K, T, H1, E1, A_map>::node_type, typename unordered_multimap<K, T, H2, E2, A_ma… 31 …v<typename unordered_set<K, H1, E1, A_set>::node_type, typename unordered_set<K, H2, E2, A_set>… 32 …ypename unordered_set<K, H1, E1, A_set>::node_type, typename unordered_multiset<K, H2, E2, A_se… 101 typename Container::node_type nt1, nt2 = c.extract(c.emplace().first); in test_node_handle_operations() 115 typename Container::node_type nt1, nt2 = c.extract(c.emplace()); in test_node_handle_operations_multi()
|
/external/autotest/client/cros/chameleon/ |
D | audio_widget.py | 101 node_type = None 103 node_type = audio_test_utils.cros_port_id_to_cras_node_type( 106 self.handler.start_recording(node_type=node_type, block_size=block_size) 116 node_type = None 118 node_type = audio_test_utils.cros_port_id_to_cras_node_type( 122 node_type=node_type) 314 node_type = None 316 node_type = audio_test_utils.cros_port_id_to_cras_node_type( 320 self._remote_playback_path, blocking, node_type=node_type, 698 def start_recording(self, node_type=None, block_size=None): argument [all …]
|
/external/autotest/client/cros/multimedia/ |
D | audio_facade_native.py | 214 def playback(self, file_path, data_format, blocking=False, node_type=None, argument 245 if node_type: 247 node_type, False)) 260 def start_recording(self, data_format, node_type=None, block_size=None): argument 289 if node_type is None: 291 node_type = cras_utils.get_selected_input_device_type() 292 if node_type is None: 296 node_type, True)) 298 if node_type in self._recorders: 300 'Node %s is already ocuppied' % node_type) [all …]
|
/external/tensorflow/tensorflow/core/util/ |
D | stats_calculator.cc | 165 const std::string& node_type = detail.type; in ComputeStatsByType() local 167 (*node_type_map_count)[node_type] += 1; in ComputeStatsByType() 168 (*node_type_map_time)[node_type] += curr_time_val; in ComputeStatsByType() 169 (*node_type_map_memory)[node_type] += curr_memory_val; in ComputeStatsByType() 170 (*node_type_map_times_called)[node_type] += detail.times_called / run_count; in ComputeStatsByType() 196 for (const auto& node_type : node_type_map_time) { in GetStatsByNodeType() local 197 const int64_t mem_used = node_type_map_memory[node_type.first]; in GetStatsByNodeType() 198 timings.emplace(node_type.second, in GetStatsByNodeType() 199 std::pair<std::string, int64_t>(node_type.first, mem_used)); in GetStatsByNodeType() 220 const std::string node_type = entry.second.first; in GetStatsByNodeType() local [all …]
|
/external/autotest/client/cros/audio/ |
D | cras_utils.py | 291 def node_type_is_plugged(node_type, nodes_info): argument 314 match = re.search(r'string "Type"\s+variant\s+string "%s"' % node_type, 345 node_type = str(node['Type']) 346 if node_type not in CRAS_NODE_TYPES: 348 node_type) 350 input_node_types.append(node_type) 352 output_node_types.append(node_type) 465 def set_single_selected_output_node(node_type): argument 479 if node['Type'] == node_type: 485 def set_single_selected_input_node(node_type): argument [all …]
|
/external/libtextclassifier/abseil-cpp/absl/container/internal/ |
D | btree.h | 877 using node_type = Node; 926 : node(const_cast<node_type *>(other.node)), position(other.position) {} 1016 using node_type = btree_node<Params>; 1019 using field_type = typename node_type::field_type; 1025 struct alignas(node_type::Alignment()) EmptyNodeType : node_type { 1026 using field_type = typename node_type::field_type; 1027 node_type *parent; 1033 field_type max_count = node_type::kInternalNodeMaxCount + 1; 1039 constexpr EmptyNodeType(node_type *p) : parent(p) {} 1043 static node_type *EmptyNode() { [all …]
|
/external/arm-trusted-firmware/drivers/arm/ccn/ |
D | ccn.c | 499 static unsigned int get_region_id_for_node(node_types_t node_type, in get_region_id_for_node() argument 506 assert(node_type < NUM_NODE_TYPES); in get_region_id_for_node() 509 switch (node_type) { in get_region_id_for_node() 523 ERROR("Un-supported Node Type = %d.\n", node_type); in get_region_id_for_node() 536 mn_reg_off = MN_RNF_NODEID_OFFSET + (node_type << 4); in get_region_id_for_node() 561 if (node_type == NODE_TYPE_RNI) in get_region_id_for_node() 574 void ccn_write_node_reg(node_types_t node_type, unsigned int node_id, in ccn_write_node_reg() argument 577 unsigned int region_id = get_region_id_for_node(node_type, node_id); in ccn_write_node_reg() 599 unsigned long long ccn_read_node_reg(node_types_t node_type, in ccn_read_node_reg() argument 604 unsigned int region_id = get_region_id_for_node(node_type, node_id); in ccn_read_node_reg()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/ |
D | btree.h | 930 using node_type = Node; 978 : node(const_cast<node_type *>(other.node)), position(other.position) {} 1068 using node_type = btree_node<Params>; 1071 using field_type = typename node_type::field_type; 1075 struct alignas(node_type::Alignment()) EmptyNodeType : node_type { 1076 using field_type = typename node_type::field_type; 1077 node_type *parent; 1083 field_type max_count = node_type::kInternalNodeMaxCount + 1; 1089 constexpr EmptyNodeType(node_type *p) : parent(p) {} 1093 static node_type *EmptyNode() { [all …]
|
/external/openscreen/third_party/abseil/src/absl/container/internal/ |
D | btree.h | 914 using node_type = Node; 963 : node(const_cast<node_type *>(other.node)), position(other.position) {} 1053 using node_type = btree_node<Params>; 1056 using field_type = typename node_type::field_type; 1062 struct alignas(node_type::Alignment()) EmptyNodeType : node_type { 1063 using field_type = typename node_type::field_type; 1064 node_type *parent; 1070 field_type max_count = node_type::kInternalNodeMaxCount + 1; 1076 constexpr EmptyNodeType(node_type *p) : parent(p) {} 1080 static node_type *EmptyNode() { [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/container/internal/ |
D | btree.h | 948 using node_type = Node; 996 : node(const_cast<node_type *>(other.node)), position(other.position) {} 1086 using node_type = btree_node<Params>; 1089 using field_type = typename node_type::field_type; 1093 struct alignas(node_type::Alignment()) EmptyNodeType : node_type { 1094 using field_type = typename node_type::field_type; 1095 node_type *parent; 1101 field_type max_count = node_type::kInternalNodeMaxCount + 1; 1107 constexpr EmptyNodeType(node_type *p) : parent(p) {} 1111 static node_type *EmptyNode() { [all …]
|
/external/abseil-cpp/absl/container/internal/ |
D | btree.h | 948 using node_type = Node; 996 : node(const_cast<node_type *>(other.node)), position(other.position) {} 1086 using node_type = btree_node<Params>; 1089 using field_type = typename node_type::field_type; 1093 struct alignas(node_type::Alignment()) EmptyNodeType : node_type { 1094 using field_type = typename node_type::field_type; 1095 node_type *parent; 1101 field_type max_count = node_type::kInternalNodeMaxCount + 1; 1107 constexpr EmptyNodeType(node_type *p) : parent(p) {} 1111 static node_type *EmptyNode() { [all …]
|
/external/autotest/server/cros/multimedia/ |
D | audio_facade_adapter.py | 45 node_type=None, block_size=None): argument 64 client_path, data_format, blocking, node_type, block_size) 87 def start_recording(self, data_format, node_type=None, block_size=None): argument 104 self._audio_proxy.start_recording(data_format, node_type, block_size) 108 def stop_recording(self, node_type=None): argument 119 path = self._audio_proxy.stop_recording(node_type)
|
/external/angle/third_party/abseil-cpp/absl/container/internal/ |
D | btree.h | 1048 using node_type = Node; 1164 : node_(const_cast<node_type *>(other.node_)), 1226 using node_type = btree_node<Params>; 1229 using field_type = typename node_type::field_type; 1233 struct alignas(node_type::Alignment()) EmptyNodeType : node_type { 1234 using field_type = typename node_type::field_type; 1235 node_type *parent; 1244 field_type max_count = node_type::kInternalNodeMaxCount + 1; 1250 constexpr EmptyNodeType(node_type *p) : parent(p) {} 1254 static node_type *EmptyNode() { [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/ |
D | snippet.py | 220 node_type = node[0] 222 if node_type >= token.NT_OFFSET: 225 return Symbol(node_type, children) 236 if node_type == token.NEWLINE: 239 return TokenSnippet(node_type, grabbed_tokens) 243 assert tokens[0].type == token.OP or node_type == tokens[0].type 246 return TokenSnippet(node_type, grabbed_tokens)
|
/external/libcxx/test/std/containers/unord/unord.multiset/ |
D | insert_node_type.pass.cpp | 23 typename Container::node_type 38 typename Container::node_type node = nf(i); in test() 50 typename Container::node_type def; in test() 57 typename Container::node_type dupl = nf(0); in test()
|
/external/libcxx/test/std/containers/associative/multiset/ |
D | insert_node_type.pass.cpp | 23 typename Container::node_type 38 typename Container::node_type node = nf(i); in test() 50 typename Container::node_type def; in test() 57 typename Container::node_type dupl = nf(0); in test()
|
/external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/ |
D | insert_node_type.pass.cpp | 23 typename Container::node_type 39 typename Container::node_type node = nf(i, i + 1); in test() 49 typename Container::node_type def; in test() 56 typename Container::node_type dupl = nf(0, 42); in test()
|
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/ |
D | insert_node_type.pass.cpp | 22 typename Container::node_type 38 typename Container::node_type node = nf(i, i + 1); in test() 49 typename Container::node_type def; in test() 56 typename Container::node_type dupl = nf(0, 42); in test()
|
/external/libcxx/test/std/containers/unord/unord.set/ |
D | insert_node_type.pass.cpp | 23 typename Container::node_type 39 typename Container::node_type node = nf(i); in test() 51 typename Container::node_type def; in test() 60 typename Container::node_type dupl = nf(0); in test()
|
/external/libcxx/test/std/containers/associative/set/ |
D | insert_node_type.pass.cpp | 23 typename Container::node_type 39 typename Container::node_type node = nf(i); in test() 51 typename Container::node_type def; in test() 60 typename Container::node_type dupl = nf(0); in test()
|
/external/autotest/client/common_lib/cros/cfm/ |
D | cras_input_node.py | 7 def __init__(self, node_id, node_name, gain, node_type, device_id, argument 12 self.node_type = node_type
|
D | cras_output_node.py | 7 def __init__(self, node_id, node_type, node_name, volume, device_id, argument 10 self.node_type = node_type
|
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
D | insert_node_type.pass.cpp | 23 typename Container::node_type 40 typename Container::node_type node = nf(i, i + 1); in test() 52 typename Container::node_type def; in test() 61 typename Container::node_type dupl = nf(0, 42); in test()
|
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/ |
D | insert_node_type.pass.cpp | 22 typename Container::node_type 39 typename Container::node_type node = nf(i, i + 1); in test() 51 typename Container::node_type def; in test() 60 typename Container::node_type dupl = nf(0, 42); in test()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | auto_mixed_precision.cc | 557 const NodeTypeId& node_type = node_type_attrs_.at(node_type_idx); in InitializeFromGraph() local 559 node_type_map.GetInputPorts(*node_type.node, node_type.type_attr); in InitializeFromGraph() 562 const string& input = node_type.node->input(port); in InitializeFromGraph() 569 "Non-existent input ", input, " in node ", node_type.node->name()); in InitializeFromGraph() 1012 bool SupportsF16(const NodeTypeId& node_type) const; 1013 bool SupportsF16DataType(const NodeTypeId& node_type) const; 1014 bool IsQuantized(const NodeTypeId& node_type) const; 1190 bool IsFloat32(const NodeTypeId& node_type) { in IsFloat32() argument 1191 return GetDataType(*node_type.node, node_type.type_attr) == in IsFloat32() 1215 bool AutoMixedPrecisionImpl::SupportsF16(const NodeTypeId& node_type) const { in SupportsF16() [all …]
|