Lines Matching refs:skey
880 unsigned long skey; in xmlDictLookup() local
887 skey = xmlDictComputeKey(dict->subdict, name, l); in xmlDictLookup()
889 skey = okey; in xmlDictLookup()
891 key = skey % dict->subdict->size; in xmlDictLookup()
898 if ((tmp->okey == skey) && (tmp->len == l)) { in xmlDictLookup()
903 if ((tmp->okey == skey) && (tmp->len == l) && in xmlDictLookup()
910 if ((tmp->okey == skey) && (tmp->len == l)) { in xmlDictLookup()
915 if ((tmp->okey == skey) && (tmp->len == l) && in xmlDictLookup()
1017 unsigned long skey; in xmlDictExists() local
1024 skey = xmlDictComputeKey(dict->subdict, name, l); in xmlDictExists()
1026 skey = okey; in xmlDictExists()
1028 key = skey % dict->subdict->size; in xmlDictExists()
1035 if ((tmp->okey == skey) && (tmp->len == l)) { in xmlDictExists()
1040 if ((tmp->okey == skey) && (tmp->len == l) && in xmlDictExists()
1047 if ((tmp->okey == skey) && (tmp->len == l)) { in xmlDictExists()
1052 if ((tmp->okey == skey) && (tmp->len == l) && in xmlDictExists()
1111 unsigned long skey; in xmlDictQLookup() local
1118 skey = xmlDictComputeQKey(dict->subdict, prefix, plen, name, l); in xmlDictQLookup()
1120 skey = okey; in xmlDictQLookup()
1122 key = skey % dict->subdict->size; in xmlDictQLookup()
1127 if ((tmp->okey == skey) && (tmp->len == len) && in xmlDictQLookup()
1132 if ((tmp->okey == skey) && (tmp->len == len) && in xmlDictQLookup()