Home
last modified time | relevance | path

Searched refs:publ (Results 1 – 11 of 11) sorted by relevance

/external/u-boot/drivers/ram/rockchip/
Dsdram_rk3188.c29 struct rk3288_ddr_publ *publ; member
121 struct rk3288_ddr_publ *publ, in phy_pctrl_reset() argument
128 clrbits_le32(&publ->acdllcr, ACDLLCR_DLLSRST); in phy_pctrl_reset()
130 clrbits_le32(&publ->datx8[i].dxdllcr, DXDLLCR_DLLSRST); in phy_pctrl_reset()
133 setbits_le32(&publ->acdllcr, ACDLLCR_DLLSRST); in phy_pctrl_reset()
135 setbits_le32(&publ->datx8[i].dxdllcr, DXDLLCR_DLLSRST); in phy_pctrl_reset()
144 static void phy_dll_bypass_set(struct rk3288_ddr_publ *publ, in phy_dll_bypass_set() argument
151 clrbits_le32(&publ->dllgcr, SBIAS_BYPASS); in phy_dll_bypass_set()
153 setbits_le32(&publ->dllgcr, SBIAS_BYPASS); in phy_dll_bypass_set()
154 setbits_le32(&publ->acdllcr, ACDLLCR_DLLDIS); in phy_dll_bypass_set()
[all …]
Dsdram_rk3288.c31 struct rk3288_ddr_publ *publ; member
120 struct rk3288_ddr_publ *publ, in phy_pctrl_reset() argument
127 clrbits_le32(&publ->acdllcr, ACDLLCR_DLLSRST); in phy_pctrl_reset()
129 clrbits_le32(&publ->datx8[i].dxdllcr, DXDLLCR_DLLSRST); in phy_pctrl_reset()
132 setbits_le32(&publ->acdllcr, ACDLLCR_DLLSRST); in phy_pctrl_reset()
134 setbits_le32(&publ->datx8[i].dxdllcr, DXDLLCR_DLLSRST); in phy_pctrl_reset()
143 static void phy_dll_bypass_set(struct rk3288_ddr_publ *publ, in phy_dll_bypass_set() argument
150 clrbits_le32(&publ->dllgcr, SBIAS_BYPASS); in phy_dll_bypass_set()
152 setbits_le32(&publ->dllgcr, SBIAS_BYPASS); in phy_dll_bypass_set()
153 setbits_le32(&publ->acdllcr, ACDLLCR_DLLDIS); in phy_dll_bypass_set()
[all …]
Dsdram_rk3399.c28 struct rk3399_ddr_publ_regs *publ; member
158 u32 *denali_phy = chan->publ->denali_phy; in set_ds_odt()
297 u32 *denali_phy = chan->publ->denali_phy; in phy_io_config()
460 u32 *denali_phy = chan->publ->denali_phy; in pctl_cfg()
567 u32 *denali_phy = chan->publ->denali_phy; in select_per_cs_training_index()
585 u32 *denali_phy = chan->publ->denali_phy; in override_write_leveling_value()
615 u32 *denali_phy = chan->publ->denali_phy; in data_training_ca()
665 u32 *denali_phy = chan->publ->denali_phy; in data_training_wl()
721 u32 *denali_phy = chan->publ->denali_phy; in data_training_rg()
859 u32 *denali_phy = chan->publ->denali_phy; in data_training()
[all …]
/external/iproute2/tipc/
Dnametable.c33 struct nlattr *publ[TIPC_NLA_PUBL_MAX + 1] = {}; in nametable_show_cb() local
44 mnl_attr_parse_nested(attrs[TIPC_NLA_NAME_TABLE_PUBL], parse_attrs, publ); in nametable_show_cb()
45 if (!publ[TIPC_NLA_NAME_TABLE_PUBL]) in nametable_show_cb()
55 tipc_zone(mnl_attr_get_u32(publ[TIPC_NLA_PUBL_NODE])), in nametable_show_cb()
56 tipc_cluster(mnl_attr_get_u32(publ[TIPC_NLA_PUBL_NODE])), in nametable_show_cb()
57 tipc_node(mnl_attr_get_u32(publ[TIPC_NLA_PUBL_NODE])), in nametable_show_cb()
58 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_REF])); in nametable_show_cb()
61 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_TYPE]), in nametable_show_cb()
62 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_LOWER]), in nametable_show_cb()
63 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_UPPER]), in nametable_show_cb()
[all …]
/external/wpa_supplicant_8/src/crypto/
Ddh_group5.c16 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument
18 wpabuf_free(*publ); in dh5_init()
19 *publ = dh_init(dh_groups_get(5), priv); in dh5_init()
20 if (*publ == NULL) in dh5_init()
26 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) in dh5_init_fixed() argument
Ddh_group5.h12 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ);
13 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ);
Dcrypto_openssl.c747 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument
757 wpabuf_free(*publ); in dh5_init()
758 *publ = NULL; in dh5_init()
792 *publ = pubkey; in dh5_init()
808 wpabuf_free(*publ); in dh5_init()
809 *publ = NULL; in dh5_init()
842 *publ = pubkey; in dh5_init()
857 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) in dh5_init_fixed() argument
880 dh->pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NULL); in dh5_init_fixed()
909 pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NULL); in dh5_init_fixed()
Dcrypto_wolfssl.c640 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument
650 wpabuf_free(*publ); in dh5_init()
651 *publ = NULL; in dh5_init()
682 *publ = pubkey; in dh5_init()
698 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) in dh5_init_fixed() argument
724 if (secret_sz != wpabuf_len(publ) || in dh5_init_fixed()
725 os_memcmp(secret, wpabuf_head(publ), secret_sz) != 0) in dh5_init_fixed()
/external/icu/icu4c/source/data/brkitr/
Dfr.txt88 "trav. publ.",
/external/libchrome/libchrome_tools/patch/
Dpath_service.patch57 @@ -402,7 +402,7 @@ class JSONFileValueSerializerTest : publ
/external/icu/icu4c/source/data/region/
Dksf.txt57 DO{"dɔminik rɛpublík"}