Home
last modified time | relevance | path

Searched refs:okey (Results 1 – 21 of 21) sorted by relevance

/external/libxml2/
Ddict.c99 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/
Dipvti.c44 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()
Dipgre.c53 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/
Dgdbmmodule.c97 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/
Dlink_vti.c68 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()
Dlink_vti6.c65 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()
Dlink_gre.c85 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()
Dlink_gre6.c95 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.c105 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/
Dcpdf_security_handler.cpp45 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/
Dabstract.c257 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/
Dabstract.c229 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/
Dipvti.h30 extern int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey);
Dipgre.h37 extern int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey);
/external/linux-kselftest/tools/testing/selftests/net/
Dip6_gre_headroom.sh28 local 2001:db8:2::1 remote 2001:db8:2::2 oseq okey 123
/external/python/cpython3/Lib/test/
Dtest_winreg.py197 access=KEY_ALL_ACCESS) as okey:
198 self.assertTrue(okey.handle != 0)
/external/python/cpython2/Lib/
Dxmllib.py638 okey = key
656 attrnamemap[key] = okey
/external/libnl/doc/
Droute.txt947 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/
Den-IPA.txt24787 $x{okey → oki ; # ɑki
Dinternal_raw_IPA.txt117675 okey %24282 ˈoki
Dinternal_raw_IPA-old.txt140215 okey %10541 ˈoki