Searched refs:hash_next (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A 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 …]
|
A D | quickjs.c | 2546 h = p->hash_next; in JS_DumpAtoms() 2691 i = p1->hash_next; in js_get_atom_index() 2735 i = p->hash_next; in __JS_NewAtom() 2888 i = p->hash_next; in __JS_FindAtom() 2915 i = p1->hash_next; in JS_FreeAtomStruct() 2918 p0->hash_next = p1->hash_next; in JS_FreeAtomStruct() 5193 h = pr->hash_next; in find_own_property1() 5216 h = pr->hash_next; in find_own_property() 8045 lpr->hash_next = pr->hash_next; in delete_property() 8067 h = pr->hash_next; in delete_property() [all …]
|
Completed in 94 milliseconds