Home
last modified time | relevance | path

Searched refs:hash (Results 1 – 25 of 63) sorted by relevance

123

/vim-8.2.3635/src/
H A Dmap.c506 int hash; in do_map() local
588 for (hash = 0; hash < 256 && !got_int; ++hash) in do_map()
624 for (hash = 0; hash < 256 && !got_int; ++hash) in do_map()
669 for (hash = 0; hash < 256 && !got_int; ++hash) in do_map()
940 int hash; in map_clear_int() local
945 for (hash = 0; hash < 256; ++hash) in map_clear_int()
1060 for (hash = 0; hash < 256; ++hash) in map_to_exists_mode()
1308 for (hash = 0; hash < 256; ++hash) in ExpandMappings()
1740 for (hash = 0; hash < 256; ++hash) in makemap()
2060 for (hash = 0; hash < 256; ++hash) in check_map_keycodes()
[all …]
H A Dhashtab.c144 idx = (unsigned)(hash & ht->ht_mask); in hash_lookup()
174 if (hi->hi_hash == hash in hash_lookup()
209 hash_T hash = hash_hash(key); in hash_add() local
212 hi = hash_lookup(ht, key, hash); in hash_add()
218 return hash_add_item(ht, hi, key, hash); in hash_add()
232 hash_T hash) in hash_add_item() argument
243 hi->hi_hash = hash; in hash_add_item()
469 hash_T hash; in hash_hash() local
472 if ((hash = *key) == 0) in hash_hash()
479 hash = hash * 101 + *p++; in hash_hash()
[all …]
H A Dundo.c795 u_compute_hash(char_u *hash) in u_compute_hash() argument
807 sha256_finish(&ctx, hash); in u_compute_hash()
1193 serialize_header(bufinfo_T *bi, char_u *hash) in serialize_header() argument
1245 if (undo_write(bi, hash, (size_t)UNDO_HASH_SIZE) == FAIL) in serialize_header()
1560 char_u *hash) in u_write_undo() argument
1738 if (serialize_header(&bi, hash) == FAIL) in u_write_undo()
1835 u_read_undo(char_u *name, char_u *hash, char_u *orig_name UNUSED) in u_read_undo() argument
1969 if (memcmp(hash, read_hash, UNDO_HASH_SIZE) != 0 in u_read_undo()
H A Dspellfile.c3506 hash_T hash; in spell_read_dic() local
3632 hash = hash_hash(dw); in spell_read_dic()
3633 hi = hash_lookup(&ht, dw, hash); in spell_read_dic()
3645 hash_add_item(&ht, hi, dw, hash); in spell_read_dic()
4723 hash_T hash; in node_compress() local
4744 hash = hash_hash(child->wn_u1.hashkey); in node_compress()
4775 hash_add_item(ht, hi, child->wn_u1.hashkey, hash); in node_compress()
6654 hash_T hash; in set_map_str() local
6664 hash = hash_hash(b); in set_map_str()
6665 hi = hash_lookup(&lp->sl_map_hash, b, hash); in set_map_str()
[all …]
H A Dspellsuggest.c3178 hash_T hash; in add_sound_suggest() local
3188 hash = hash_hash(goodword); in add_sound_suggest()
3189 hi = hash_lookup(&slang->sl_sounddone, goodword, hash); in add_sound_suggest()
3197 hash_add_item(&slang->sl_sounddone, hi, sft->sft_word, hash); in add_sound_suggest()
3651 hash_T hash; in add_banned() local
3654 hash = hash_hash(word); in add_banned()
3655 hi = hash_lookup(&su->su_banned, word, hash); in add_banned()
3660 hash_add_item(&su->su_banned, hi, s, hash); in add_banned()
H A Dsign.c82 hash_T hash; in sign_group_ref() local
86 hash = hash_hash(groupname); in sign_group_ref()
87 hi = hash_lookup(&sg_table, groupname, hash); in sign_group_ref()
97 hash_add_item(&sg_table, hi, group->sg_name, hash); in sign_group_ref()
H A Dfileio.c2607 char_u hash[UNDO_HASH_SIZE]; in readfile() local
2609 sha256_finish(&sha_ctx, hash); in readfile()
2610 u_read_undo(NULL, hash, fname); in readfile()
4298 char_u hash[UNDO_HASH_SIZE]; in buf_check_timestamp() local
4303 u_compute_hash(hash); in buf_check_timestamp()
4304 u_write_undo(NULL, FALSE, buf, hash); in buf_check_timestamp()
H A Dtag.c1630 hash_T hash = 0; in find_tags() local
2654 hash++; in find_tags()
2657 hash = hash_hash(mfp); in find_tags()
2658 hi = hash_lookup(&ht_match[mtt], mfp, hash); in find_tags()
2661 if (hash_add_item(&ht_match[mtt], hi, mfp, hash) in find_tags()
H A Dcmdexpand.c2310 hash_T hash; in expand_shellcmd() local
2397 hash = hash_hash(name + l); in expand_shellcmd()
2398 hi = hash_lookup(&found_ht, name + l, hash); in expand_shellcmd()
2404 hash_add_item(&found_ht, hi, name, hash); in expand_shellcmd()
H A Dbufwrite.c2572 char_u hash[UNDO_HASH_SIZE]; in buf_write() local
2574 sha256_finish(&sha_ctx, hash); in buf_write()
2575 u_write_undo(NULL, FALSE, buf, hash); in buf_write()
H A Dspell.c1813 hash_T hash; in count_common_word() local
1829 hash = hash_hash(p); in count_common_word()
1830 hi = hash_lookup(&lp->sl_wordcount, p, hash); in count_common_word()
1838 hash_add_item(&lp->sl_wordcount, hi, wc->wc_word, hash); in count_common_word()
/vim-8.2.3635/src/proto/
H A Dundo.pro9 void u_compute_hash(char_u *hash);
10 void u_write_undo(char_u *name, int forceit, buf_T *buf, char_u *hash);
11 void u_read_undo(char_u *name, char_u *hash, char_u *orig_name);
H A Dhashtab.pro6 hashitem_T *hash_lookup(hashtab_T *ht, char_u *key, hash_T hash);
9 int hash_add_item(hashtab_T *ht, hashitem_T *hi, char_u *key, hash_T hash);
/vim-8.2.3635/runtime/autoload/
H A Dclojurecomplete.vim12hash","hash-combine","hash-map","hash-ordered-coll","hash-set","hash-unordered-coll","ident?","ide…
H A Djavascriptcomplete.vim146 let areaprop = ['accessKey', 'alt', 'coords', 'hash', 'host', 'hostname', 'href', 'id',
286 let locaprop = ['href', 'hash', 'host', 'hostname', 'pathname', 'port', 'protocol',
/vim-8.2.3635/src/testdir/
H A Dtest_mzscheme.vim31 mz (define h (make-hash))
32 mz (hash-set! h "list" l)
/vim-8.2.3635/src/xdiff/
H A Dxpatience.c50 unsigned long hash; member
107 if (map->entries[index].hash != record->ha) { in insert_record()
123 map->entries[index].hash = record->ha; in insert_record()
/vim-8.2.3635/runtime/syntax/
H A Dlisp.vim129 syn keyword lispFunc ash hash-table readtablep
130 syn keyword lispFunc asin hash-table-count real
131 syn keyword lispFunc asinh hash-table-p realp
132 syn keyword lispFunc assert hash-table-rehash-size realpart
133 syn keyword lispFunc assoc hash-table-rehash-threshold reduce
134 syn keyword lispFunc assoc-if hash-table-size reinitialize-instance
135 syn keyword lispFunc assoc-if-not hash-table-test rem
249 syn keyword lispFunc compiler-macro-function make-hash-table streamup
369 syn keyword lispFunc fdefinition pathname-directory with-hash-table-iterator
473 …Key :above :by :on :being :each :the :hash-key :hash-keys
[all …]
H A Dclojure.vim32hash","clojure.core/hash-combine","clojure.core/hash-map","clojure.core/hash-ordered-coll","clojur…
H A D8th.vim120 …ltin xor b:xor +block bc:+block .blocks bc:.blocks add-block bc:add-block block-hash bc:block-hash
121 Builtin block@ bc:block@ first-block bc:first-block hash bc:hash last-block bc:last-block load bc:…
143 …n ensurekey cr:ensurekey gcm-tag-size cr:gcm-tag-size genkey cr:genkey hash cr:hash hash! cr:hash!
144 Builtin hash+ cr:hash+ hash>b cr:hash>b hash>s cr:hash>s hash@ cr:hash@ hmac cr:hmac hotp cr:hotp …
H A Dcrm.vim23 syn keyword crmStatement fail fault goto hash intersect isolate input learn
H A Djess.vim71 syn keyword jessFunc set-node-index-hash set-reset-globals
/vim-8.2.3635/runtime/pack/dist/opt/shellmenu/plugin/
H A Dshellmenu.vim94 imenu Builtins.hash hash
/vim-8.2.3635/runtime/
H A Dmenu.vim827 let hash = <SID>BMHash(munge)
830 let cmd = 'an ' . g:bmenu_priority . '.' . hash . ' &Buffers.' . munge
834 let cmd = 'an ' . g:bmenu_priority . '.' . hash . '.' . hash . ' &Buffers.' . menu_name
/vim-8.2.3635/runtime/ftplugin/
H A Ddebchangelog.vim311 " found hash, where we complete from:

123