/external/libxml2/ |
D | dict.c | 99 unsigned long okey; member 661 unsigned long key, okey; in xmlDictGrow() local 708 okey = olddict[i].okey; in xmlDictGrow() 710 okey = xmlDictComputeKey(dict, olddict[i].name, olddict[i].len); in xmlDictGrow() 711 key = okey % dict->size; in xmlDictGrow() 716 dict->dict[key].okey = okey; in xmlDictGrow() 724 entry->okey = okey; in xmlDictGrow() 751 okey = iter->okey; in xmlDictGrow() 753 okey = xmlDictComputeKey(dict, iter->name, iter->len); in xmlDictGrow() 754 key = okey % dict->size; in xmlDictGrow() [all …]
|
/external/libnl/lib/route/link/ |
D | ipvti.c | 44 uint32_t okey; member 101 ipvti->okey = nla_get_u32(tb[IFLA_VTI_OKEY]); in ipvti_parse() 137 NLA_PUT_U32(msg, IFLA_VTI_OKEY, ipvti->okey); in ipvti_put_attrs() 186 nl_dump_line(p, "%x\n", ipvti->okey); in ipvti_dump_details() 374 int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey) in rtnl_link_ipvti_set_okey() argument 380 ipvti->okey = okey; in rtnl_link_ipvti_set_okey() 398 return ipvti->okey; in rtnl_link_ipvti_get_okey()
|
D | ipgre.c | 53 uint32_t okey; member 126 ipgre->okey = nla_get_u32(tb[IFLA_GRE_OKEY]); in ipgre_parse() 183 NLA_PUT_U32(msg, IFLA_GRE_OKEY, ipgre->okey); in ipgre_put_attrs() 251 nl_dump_line(p, "%x\n", ipgre->okey); in ipgre_dump_details() 522 int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey) in rtnl_link_ipgre_set_okey() argument 528 ipgre->okey = okey; in rtnl_link_ipgre_set_okey() 546 return ipgre->okey; in rtnl_link_ipgre_get_okey()
|
/external/python/cpython2/Modules/ |
D | gdbmmodule.c | 97 datum key,okey; in dbm_length() local 99 okey.dsize=0; in dbm_length() 100 okey.dptr=NULL; in dbm_length() 104 key = gdbm_nextkey(dp->di_dbm,okey)) { in dbm_length() 106 if(okey.dsize) free(okey.dptr); in dbm_length() 107 okey=key; in dbm_length()
|
/external/iproute2/ip/ |
D | link_vti.c | 59 unsigned okey = 0; in vti_parse_opt() local 103 okey = *(__u32 *)RTA_DATA(vtiinfo[IFLA_VTI_OKEY]); in vti_parse_opt() 131 ikey = okey = uval; in vti_parse_opt() 159 okey = uval; in vti_parse_opt() 190 addattr32(n, 1024, IFLA_VTI_OKEY, okey); in vti_parse_opt()
|
D | link_vti6.c | 57 unsigned okey = 0; in vti6_parse_opt() local 99 okey = rta_getattr_u32(vtiinfo[IFLA_VTI_OKEY]); in vti6_parse_opt() 127 ikey = okey = uval; in vti6_parse_opt() 155 okey = uval; in vti6_parse_opt() 187 addattr32(n, 1024, IFLA_VTI_OKEY, okey); in vti6_parse_opt()
|
D | link_gre.c | 65 unsigned okey = 0; in gre_parse_opt() local 117 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]); in gre_parse_opt() 175 ikey = okey = uval; in gre_parse_opt() 205 okey = uval; in gre_parse_opt() 309 if (!okey && IN_MULTICAST(ntohl(daddr))) { in gre_parse_opt() 310 okey = daddr; in gre_parse_opt() 319 addattr32(n, 1024, IFLA_GRE_OKEY, okey); in gre_parse_opt()
|
D | link_gre6.c | 75 unsigned okey = 0; in gre_parse_opt() local 123 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]); in gre_parse_opt() 171 ikey = okey = uval; in gre_parse_opt() 201 okey = uval; in gre_parse_opt() 283 addattr32(n, 1024, IFLA_GRE_OKEY, okey); in gre_parse_opt()
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_security_handler.cpp | 45 CFX_ByteString okey = pEncrypt->GetStringFor("O"); in CalcEncryptKey() local 46 CRYPT_MD5Update(&md5, (uint8_t*)okey.c_str(), okey.GetLength()); in CalcEncryptKey() 317 CFX_ByteString okey = m_pEncryptDict->GetStringFor("O"); in AES256_CheckPassword() local 318 if (okey.GetLength() < 48) in AES256_CheckPassword() 325 const uint8_t* pkey = bOwner ? okey.raw_str() : ukey.raw_str(); in AES256_CheckPassword() 463 CFX_ByteString okey = m_pEncryptDict->GetStringFor("O"); in GetUserPassword() local 482 int okeylen = okey.GetLength(); in GetUserPassword() 488 FXSYS_memcpy(okeybuf, okey.c_str(), okeylen); in GetUserPassword()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 229 PyObject *okey; in PyObject_DelItemString() local 236 okey = PyString_FromString(key); in PyObject_DelItemString() 237 if (okey == NULL) in PyObject_DelItemString() 239 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString() 240 Py_DECREF(okey); in PyObject_DelItemString() 2468 PyObject *okey, *r; local 2473 okey = PyString_FromString(key); 2474 if (okey == NULL) 2476 r = PyObject_GetItem(o, okey); 2477 Py_DECREF(okey); [all …]
|
/external/libnl/include/netlink/route/link/ |
D | ipvti.h | 30 extern int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey);
|
D | ipgre.h | 37 extern int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey);
|
/external/python/cpython2/Lib/ |
D | xmllib.py | 638 okey = key 656 attrnamemap[key] = okey
|
/external/libnl/doc/ |
D | route.txt | 947 extern int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey); 1025 extern int rtnl_link_sit_set_okey(struct rtnl_link *link, uint32_t okey); 1098 extern int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey);
|
/external/iproute2/doc/ |
D | ip-cref.tex | 2530 \item \verb|key K|, \verb|ikey K|, \verb|okey K| 2535 The \verb|ikey| and \verb|okey| parameters set different keys for input and output.
|