Searched refs:hash_next (Results 1 – 6 of 6) sorted by relevance
/third_party/quickjs/ |
D | jscompress.c | 667 const int *hash_next, int cur_pos) in find_longest_match() argument 675 pos = hash_next[cur_pos]; in find_longest_match() 685 pos = hash_next[pos]; in find_longest_match() 693 int *hash_table, *hash_next; in lz_compress() local 703 hash_next = malloc(sizeof(hash_next[0]) * src_len); in lz_compress() 705 hash_next[i] = -1; in lz_compress() 709 hash_next[i] = hash_table[h]; in lz_compress() 713 hash_next[i] = -1; in lz_compress() 728 len = find_longest_match(&dist, src, src_len, hash_next, i); in lz_compress() 731 len1 = find_longest_match(&dist1, src, src_len, hash_next, i + 1); in lz_compress() [all …]
|
D | quickjs.c | 506 uint32_t hash_next; /* atom_index for JS_ATOM_TYPE_SYMBOL */ member 852 uint32_t hash_next : 26; /* 0 if last in list */ member 1911 str->hash_next = 0; /* optional */ in js_alloc_string_rt() 2552 h = p->hash_next; in JS_DumpAtoms() 2565 printf(" %d }\n", p->hash_next); in JS_DumpAtoms() 2585 hash_next1 = p->hash_next; in JS_ResizeAtomHash() 2588 p->hash_next = new_hash[j]; in JS_ResizeAtomHash() 2689 uint32_t i = p->hash_next; /* atom_index */ in js_get_atom_index() 2697 i = p1->hash_next; in js_get_atom_index() 2741 i = p->hash_next; in __JS_NewAtom() [all …]
|
/third_party/musl/src/network/ |
D | if_nameindex.c | 13 unsigned int hash_next; member 59 i = map->hash_next; in netlink_msg_to_nameindex() 76 map->hash_next = ctx->hash[bucket]; in netlink_msg_to_nameindex()
|
D | getifaddrs.c | 35 struct ifaddrs_storage *hash_next; member 121 for (ifs0 = ctx->hash[ifa->ifa_index % IFADDRS_HASH_SIZE]; ifs0; ifs0 = ifs0->hash_next) in netlink_msg_to_ifaddr() 156 ifs->hash_next = ctx->hash[bucket]; in netlink_msg_to_ifaddr()
|
/third_party/musl/porting/liteos_a/user/src/network/ |
D | if_nameindex.c | 14 unsigned int hash_next; member 60 i = map->hash_next; in netlink_msg_to_nameindex() 77 map->hash_next = ctx->hash[bucket]; in netlink_msg_to_nameindex()
|
D | getifaddrs.c | 38 struct ifaddrs_storage *hash_next; member 130 for (ifs0 = ctx->hash[ifa->ifa_index % IFADDRS_HASH_SIZE]; ifs0; ifs0 = ifs0->hash_next) in netlink_msg_to_ifaddr() 165 ifs->hash_next = ctx->hash[bucket]; in netlink_msg_to_ifaddr()
|