/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/ |
D | transform_op_optimizer.cc | 68 for (auto e_id : nodes_[edge_from].out_edges) { in BfsSetDepth() local 69 auto edge_to = edges_[e_id].to; in BfsSetDepth() 70 if (edges_[e_id].capacity > 0 && nodes_[edge_to].depth == 0) { in BfsSetDepth() 82 for (size_t e_id : nodes_[node].out_edges) { in DfsMaxFlow() local 83 … if ((edges_[e_id].capacity > 0) && (nodes_[node].depth + 1 == nodes_[edges_[e_id].to].depth)) { in DfsMaxFlow() 84 auto tmp_flow = DfsMaxFlow(edges_[e_id].to, std::min(flow, edges_[e_id].capacity)); in DfsMaxFlow() 88 edges_[e_id].capacity -= tmp_flow; in DfsMaxFlow() 89 edges_[e_id ^ 1].capacity += tmp_flow; in DfsMaxFlow()
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | ext4_acl.h | 29 __le32 e_id; member 48 __le32 e_id; member
|
D | ext_attr.c | 572 disk_entry->e_id = entry->e_id; in convert_posix_acl_to_disk_buffer() 621 entry->e_id = 0; in convert_disk_buffer_to_posix_acl() 627 entry->e_id = disk_entry->e_id; in convert_disk_buffer_to_posix_acl()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
D | dpp_reconfig.c | 50 struct wpabuf *a_nonce = NULL, *e_id = NULL; in dpp_build_reconfig_announcement() local 88 e_id = crypto_ec_key_get_pubkey_point(id->e_prime_id, 0); in dpp_build_reconfig_announcement() 89 if (!a_nonce || !e_id) in dpp_build_reconfig_announcement() 95 attr_len += 4 + wpabuf_len(e_id); in dpp_build_reconfig_announcement() 117 wpabuf_put_le16(msg, wpabuf_len(e_id)); in dpp_build_reconfig_announcement() 118 wpabuf_put_buf(msg, e_id); in dpp_build_reconfig_announcement() 124 wpabuf_free(e_id); in dpp_build_reconfig_announcement() 230 struct crypto_ec_point *e_id; in dpp_reconfig_init() local 263 e_id = dpp_decrypt_e_id(conf->pp_key, a_nonce, e_prime_id); in dpp_reconfig_init() 266 if (!e_id) { in dpp_reconfig_init() [all …]
|
D | dpp_crypto.c | 2207 struct crypto_ec_point *e_id = NULL; in dpp_gen_reconfig_id() local 2224 e_id = crypto_ec_point_init(ec); in dpp_gen_reconfig_id() 2228 if (!e_id || !bn || !q || !generator || in dpp_gen_reconfig_id() 2230 crypto_ec_point_mul(ec, generator, bn, e_id)) in dpp_gen_reconfig_id() 2233 crypto_ec_point_debug_print(ec, e_id, in dpp_gen_reconfig_id() 2242 id->e_id = e_id; in dpp_gen_reconfig_id() 2243 e_id = NULL; in dpp_gen_reconfig_id() 2249 crypto_ec_point_deinit(e_id, 1); in dpp_gen_reconfig_id() 2280 crypto_ec_point_add(id->ec, id->e_id, e_prime_id, e_prime_id)) in dpp_update_reconfig_id() 2308 crypto_ec_point_deinit(id->e_id, 1); in dpp_free_reconfig_id() [all …]
|
D | dpp_i.h | 144 struct crypto_ec_point *e_id; /* E-id */ member
|
D | dpp_tcp.c | 874 const u8 *csign_hash, *fcgroup, *a_nonce, *e_id; in dpp_controller_rx_reconfig_announcement() local 916 e_id = dpp_get_attr(buf, len, DPP_ATTR_E_PRIME_ID, &e_id_len); in dpp_controller_rx_reconfig_announcement() 919 a_nonce, a_nonce_len, e_id, e_id_len); in dpp_controller_rx_reconfig_announcement()
|
/third_party/libnl/tests/ |
D | check-ematch-tree-clone.c | 65 child->e_id = id++; in build_children() 85 result[*index] = pos->e_id; in dump_ematch_list()
|
/third_party/libnl/lib/route/cls/ |
D | ematch.c | 301 new->e_id = pos->e_id; in clone_ematch_list() 489 ematch->e_id = hdr->matchid; in rtnl_ematch_parse_attr() 610 .matchid = e->e_id, in fill_ematch_sequence()
|
/third_party/f2fs-tools/fsck/ |
D | xattr.h | 55 __le32 e_id; member
|
D | mount.c | 171 le32_to_cpu(entry->e_id)); in print_acl() 179 le32_to_cpu(entry->e_id)); in print_acl()
|
/third_party/boost/boost/graph/ |
D | minimum_degree_ordering.hpp | 481 size_type e_id = element_neighbor.top(); in eliminate() local 482 vertex_t element = get(index_vertex_map, e_id); in eliminate()
|
/third_party/e2fsprogs/misc/ |
D | fuse2fs.c | 116 u_int32_t e_id; member 154 __u32 e_id; member 224 e->e_id = ext2fs_cpu_to_le32(a->e_id); in fuse_to_ext4_acl() 278 a->e_id = ext2fs_le32_to_cpu(e->e_id); in ext4_to_fuse_acl()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | dpp_hostapd.c | 1339 const u8 *csign_hash, *fcgroup, *a_nonce, *e_id; in hostapd_dpp_rx_reconfig_announcement() local 1387 e_id = dpp_get_attr(buf, len, DPP_ATTR_E_PRIME_ID, &e_id_len); in hostapd_dpp_rx_reconfig_announcement() 1391 e_id, e_id_len); in hostapd_dpp_rx_reconfig_announcement()
|
/third_party/libnl/include/netlink-private/ |
D | types.h | 637 uint16_t e_id; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | dpp_supplicant.c | 2126 const u8 *csign_hash, *fcgroup, *a_nonce, *e_id; in wpas_dpp_rx_reconfig_announcement() local 2172 e_id = dpp_get_attr(buf, len, DPP_ATTR_E_PRIME_ID, &e_id_len); in wpas_dpp_rx_reconfig_announcement() 2175 a_nonce, a_nonce_len, e_id, e_id_len); in wpas_dpp_rx_reconfig_announcement()
|
/third_party/curl/lib/vtls/ |
D | openssl.c | 1316 const char *e_id = ENGINE_get_id(e); in ossl_set_engine() local 1317 if(!strcmp(engine, e_id)) in ossl_set_engine()
|