/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 | 68 unsigned int okey = 0; in vti_parse_opt() local 105 okey = rta_getattr_u32(vtiinfo[IFLA_VTI_OKEY]); in vti_parse_opt() 136 ikey = okey = uval; in vti_parse_opt() 164 okey = uval; in vti_parse_opt() 199 addattr32(n, 1024, IFLA_VTI_OKEY, okey); in vti_parse_opt()
|
D | link_vti6.c | 65 unsigned int okey = 0; in vti6_parse_opt() local 100 okey = rta_getattr_u32(vtiinfo[IFLA_VTI_OKEY]); in vti6_parse_opt() 131 ikey = okey = uval; in vti6_parse_opt() 159 okey = uval; in vti6_parse_opt() 197 addattr32(n, 1024, IFLA_VTI_OKEY, okey); in vti6_parse_opt()
|
D | link_gre.c | 85 unsigned int okey = 0; in gre_parse_opt() local 132 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]); in gre_parse_opt() 200 ikey = okey = uval; in gre_parse_opt() 230 okey = uval; in gre_parse_opt() 351 if (!okey && IN_MULTICAST(ntohl(daddr))) { in gre_parse_opt() 352 okey = daddr; in gre_parse_opt() 362 addattr32(n, 1024, IFLA_GRE_OKEY, okey); in gre_parse_opt()
|
D | link_gre6.c | 95 unsigned int okey = 0; in gre_parse_opt() local 140 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]); in gre_parse_opt() 203 ikey = okey = uval; in gre_parse_opt() 233 okey = uval; in gre_parse_opt() 378 addattr32(n, 1024, IFLA_GRE_OKEY, okey); in gre_parse_opt()
|
/external/python/cpython3/Modules/ |
D | _gdbmmodule.c | 105 datum key,okey; in dbm_length() local 107 okey.dsize=0; in dbm_length() 108 okey.dptr=NULL; in dbm_length() 112 key = gdbm_nextkey(dp->di_dbm,okey)) { in dbm_length() 114 if(okey.dsize) free(okey.dptr); in dbm_length() 115 okey=key; in dbm_length()
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_security_handler.cpp | 45 ByteString okey = pEncrypt->GetStringFor("O"); in CalcEncryptKey() local 46 CRYPT_MD5Update(&md5, (uint8_t*)okey.c_str(), okey.GetLength()); in CalcEncryptKey() 313 ByteString okey = m_pEncryptDict->GetStringFor("O"); in AES256_CheckPassword() local 314 if (okey.GetLength() < 48) in AES256_CheckPassword() 321 const uint8_t* pkey = bOwner ? okey.raw_str() : ukey.raw_str(); in AES256_CheckPassword() 452 ByteString okey = m_pEncryptDict->GetStringFor("O"); in GetUserPassword() local 473 int okeylen = okey.GetLength(); in GetUserPassword() 479 memcpy(okeybuf, okey.c_str(), okeylen); in GetUserPassword()
|
/external/python/cpython3/Objects/ |
D | abstract.c | 257 PyObject *okey; in PyObject_DelItemString() local 264 okey = PyUnicode_FromString(key); in PyObject_DelItemString() 265 if (okey == NULL) in PyObject_DelItemString() 267 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString() 268 Py_DECREF(okey); in PyObject_DelItemString() 2105 PyObject *okey, *r; in PyMapping_GetItemString() local 2111 okey = PyUnicode_FromString(key); in PyMapping_GetItemString() 2112 if (okey == NULL) in PyMapping_GetItemString() 2114 r = PyObject_GetItem(o, okey); in PyMapping_GetItemString() 2115 Py_DECREF(okey); in PyMapping_GetItemString() [all …]
|
/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() 2465 PyObject *okey, *r; local 2470 okey = PyString_FromString(key); 2471 if (okey == NULL) 2473 r = PyObject_GetItem(o, okey); 2474 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/linux-kselftest/tools/testing/selftests/net/ |
D | ip6_gre_headroom.sh | 28 local 2001:db8:2::1 remote 2001:db8:2::2 oseq okey 123
|
/external/python/cpython3/Lib/test/ |
D | test_winreg.py | 197 access=KEY_ALL_ACCESS) as okey: 198 self.assertTrue(okey.handle != 0)
|
/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/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | en-IPA.txt | 24787 $x{okey → oki ; # ɑki
|
D | internal_raw_IPA.txt | 117675 okey %24282 ˈoki
|
D | internal_raw_IPA-old.txt | 140215 okey %10541 ˈoki
|