Home
last modified time | relevance | path

Searched refs:hsh (Results 1 – 25 of 1183) sorted by relevance

12345678910>>...48

/dports/graphics/p5-Imager/Imager-1.012/lib/Imager/
H A DFill.pm23 $hsh{combine} = Imager->_combine($hsh{combine}, 0);
44 $hsh{cust_hatch} = pack("C8", @{$hsh{hatch}});
52 $hsh{hatch} = $hatch_types{$hsh{hatch}};
60 $hsh{dx}, $hsh{dy});
67 $hsh{dx}, $hsh{dy});
80 $hsh{ftype} = $hsh{fountain};
84 $hsh{$name} = $names->{$name}{$hsh{$name}};
88 %hsh = (%$def, %hsh);
116 Imager::i_new_fill_fount($hsh{xa}, $hsh{ya}, $hsh{xb}, $hsh{yb},
117 $hsh{ftype}, $hsh{repeat}, $hsh{combine}, $hsh{super_sample},
[all …]
/dports/devel/poco/poco-1.10.1-all/Foundation/include/Poco/
H A DSimpleHashTable.h118 return hsh; in insert()
125 UInt32 pos = hsh; in insertRaw()
137 hsh++; in insertRaw()
152 return hsh; in update()
159 if (!_entries[hsh]) in updateRaw()
173 hsh++; in updateRaw()
209 hsh++; in getRaw()
241 hsh++;
265 hsh++; in getKeyRaw()
294 hsh++; in getRaw()
[all …]
H A DHashTable.h125 return hsh; in insert()
132 if (!_entries[hsh]) in insertRaw()
147 return hsh; in update()
154 if (!_entries[hsh]) in updateRaw()
166 removeRaw(key, hsh); in remove()
172 if (_entries[hsh]) in removeRaw()
193 if (!_entries[hsh]) in getRaw()
219 if (!_entries[hsh])
234 if (!_entries[hsh]) in getKeyRaw()
252 if (!_entries[hsh]) in getRaw()
[all …]
/dports/security/ophcrack/ophcrack-3.8.0/src/gui/
H A Dhashmodel.cpp87 updateHash(hsh); in insertHash()
162 if (hsh->kind == lm1 && hsh->lmhsh1 == 0) { in updateHash()
180 if (hsh->kind == lm1 && hsh->lmhsh1 == 0 && hsh->lmhsh2 == 0) { in updateHash()
203 else if (hsh->kind == lm1 && hsh->lmhsh1 == 0 && hsh->lmhsh2 != 0) { in updateHash()
205 if (hsh->done > 0 && hsh->lmhsh2->done >0) { in updateHash()
207 sprintf(tmp, "%d s", (hsh->time > hsh->lmhsh2->time) ? hsh->time : hsh->lmhsh2->time); in updateHash()
209 snprintf(tmp, 64, "%s / %s", hsh->table, hsh->lmhsh2->table); in updateHash()
211 sprintf(tmp, "%d", hsh->length+hsh->lmhsh2->length); in updateHash()
223 else if (hsh->kind == nt && hsh->lmhsh1 != 0 && hsh->lmhsh2 != 0) { in updateHash()
228 if (hsh->lmhsh1->table != 0 && hsh->lmhsh2->table != 0) in updateHash()
[all …]
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/optional/capi/
H A Dhash_spec.rb55 hsh = {}
57 dup.should == hsh
75 hsh = Hash.new(0)
81 hsh = { }
89 hsh = {}
98 @s.rb_hash_clear(hsh).should equal(hsh)
99 hsh.should == {}
107 hsh.should == {}
154 out.should == hsh
169 hsh.should == {}
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/MolHash/
H A Dcatch_tests.cpp30 auto hsh = variable
41 auto hsh = variable
47 auto hsh = variable
53 auto hsh = variable
64 auto hsh = variable
90 auto hsh = variable
96 auto hsh = variable
112 auto hsh = variable
118 auto hsh = variable
127 auto hsh = variable
[all …]
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/nettle-7.0.0/src/rsa/
H A Dpkcs1.rs375 hsh.update(m); in rsa_pkcs15_sign()
381 hsh.update(m); in rsa_pkcs15_sign()
394 hsh.update(m); in rsa_pkcs15_sign()
400 hsh.update(m); in rsa_pkcs15_sign()
413 hsh.update(m); in rsa_pkcs15_sign()
419 hsh.update(m); in rsa_pkcs15_sign()
432 hsh.update(m); in rsa_pkcs15_sign()
438 hsh.update(m); in rsa_pkcs15_sign()
451 hsh.update(m); in rsa_pkcs15_sign()
457 hsh.update(m); in rsa_pkcs15_sign()
[all …]
/dports/graphics/p5-Imager/Imager-1.012/T1/
H A DT1.pm26 unless ($hsh{file}) {
30 unless (-e $hsh{file}) {
42 $hsh{file} = './' . $hsh{file};
45 if($hsh{afm}) {
53 $hsh{file} = './' . $hsh{file};
56 $hsh{afm} = 0;
59 my $font = Imager::Font::T1xs->new($hsh{file},$hsh{afm});
67 file => $hsh{file},
69 size => $hsh{size},
137 ->has_chars($hsh{string}, _first($hsh{'utf8'}, $self->{utf8}, 0));
[all …]
/dports/graphics/p5-Imager/Imager-1.012/FT2/
H A DFT2.pm25 unless ($hsh{file}) {
29 unless (-e $hsh{file}) {
37 my $id = i_ft2_new($hsh{file}, $hsh{'index'} || 0);
45 file => $hsh{file},
100 my %hsh = @_;
102 unless ($hsh{xdpi} && $hsh{ydpi}) {
103 if ($hsh{dpi}) {
104 $hsh{xdpi} = $hsh{ydpi} = $hsh{dpi};
110 i_ft2_setdpi($self->{id}, $hsh{xdpi}, $hsh{ydpi}) or return;
132 my %hsh = @_;
[all …]
/dports/graphics/p5-Imager/Imager-1.012/ICO/
H A DICO.pm18 my ($im, $io, %hsh) = @_;
20 exists $hsh{ico_masked} ? $hsh{ico_masked} : 1;
22 exists $hsh{ico_alpha_masked} ? $hsh{ico_alpha_masked} : 0;
35 my ($io, %hsh) = @_;
38 exists $hsh{ico_masked} ? $hsh{ico_masked} : 1;
56 my ($im, $io, %hsh) = @_;
58 exists $hsh{ico_masked} ? $hsh{ico_masked} : 1;
60 exists $hsh{ico_alpha_masked} ? $hsh{ico_alpha_masked} : 0;
72 my ($io, %hsh) = @_;
75 exists $hsh{ico_masked} ? $hsh{ico_masked} : 1;
[all …]
/dports/net/jose/jose-11/lib/
H A Dhsh.c26 hsh(jose_cfg_t *cfg, const char *alg, const void *data, size_t dlen) in hsh() function
28 jose_io_auto_t *hsh = NULL; in hsh() local
36 hsh = hsh_io(cfg, alg, enc); in hsh()
37 if (!buf || !enc || !hsh || !hsh->feed(hsh, data, dlen) || !hsh->done(hsh)) in hsh()
52 return a->hash.hsh(a, cfg, next); in hsh_io()
60 jose_io_auto_t *hsh = NULL; in hsh_buf() local
74 hsh = a->hash.hsh(a, cfg, buf); in hsh_buf()
75 if (!buf || !hsh || !hsh->feed(hsh, data, dlen) || !hsh->done(hsh)) in hsh_buf()
/dports/sysutils/rsyslog8/rsyslog-8.2112.0/tests/
H A Dmmkubernetes_test_server.py118 hsh['pod_name'] = comps[6]
119 hsh['kind'] = 'pods'
120 hsh['objectname'] = hsh['pod_name']
127 hsh['reason'] = 'NotFound'
128 hsh['err'] = 'not found'
130 elif hsh['objectname'].endswith('busy'):
134 hsh['reason'] = 'Busy'
139 hsh['reason'] = 'Error'
140 hsh['err'] = 'server is failing'
143 hsh['code'] = status
[all …]
/dports/security/ophcrack/ophcrack-3.8.0/src/core/
H A Dhash.c49 hsh->str = 0; in hash_alloc()
50 hsh->status = 0; in hash_alloc()
56 hsh->lmhsh1 = 0; in hash_alloc()
57 hsh->lmhsh2 = 0; in hash_alloc()
60 hsh->uid = 0; in hash_alloc()
70 return hsh; in hash_alloc()
75 free(hsh->pwd); in hash_free()
76 if (hsh->str) free(hsh->str); in hash_free()
77 if (hsh->status) free(hsh->status); in hash_free()
78 if (hsh->table) free(hsh->table); in hash_free()
[all …]
H A Dophcrack.c245 if (hsh->kind != lm1 && hsh->lmhsh1) { in ophcrack_add_hash()
534 hash_t *hsh = work->hsh; in ophcrack_find() local
615 hash_t *hsh = work->hsh; in ophcrack_lookup_idx() local
706 hash_t *hsh = work->hsh; in ophcrack_lookup_end() local
814 hash_t *hsh = work->hsh; in ophcrack_lookup_srt() local
892 hash_t *hsh = work->hsh; in ophcrack_check() local
1006 if (!hsh->lmhsh1 || !hsh->lmhsh2) in ophcrack_bforce_all()
1500 work->hsh = hsh; in ophcrack_next()
1642 hash_t *nthsh = hsh->kind == lm1 ? hsh->lmhsh1 : hsh->lmhsh2; in ophcrack_found()
2187 id_to_hash[hsh->id] = hsh; in ophcrack_save()
[all …]
/dports/lang/perl5.34/perl-5.34.0/dist/threads-shared/t/
H A Ddualvar.t163 my %hsh :shared;
164 %hsh = (
178 my %hsh :shared;
179 $hsh{'iv'} = $iv;
180 $hsh{'nv'} = $nv;
205 my %hsh :shared;
206 %hsh = (
220 my %hsh :shared;
382 my %nsh = %hsh;
405 my %nsh = %hsh;
[all …]
/dports/lang/perl5.32/perl-5.32.1/dist/threads-shared/t/
H A Ddualvar.t163 my %hsh :shared;
164 %hsh = (
178 my %hsh :shared;
179 $hsh{'iv'} = $iv;
180 $hsh{'nv'} = $nv;
205 my %hsh :shared;
206 %hsh = (
220 my %hsh :shared;
382 my %nsh = %hsh;
405 my %nsh = %hsh;
[all …]
/dports/lang/perl5.30/perl-5.30.3/dist/threads-shared/t/
H A Ddualvar.t163 my %hsh :shared;
164 %hsh = (
178 my %hsh :shared;
179 $hsh{'iv'} = $iv;
180 $hsh{'nv'} = $nv;
205 my %hsh :shared;
206 %hsh = (
220 my %hsh :shared;
382 my %nsh = %hsh;
405 my %nsh = %hsh;
[all …]
/dports/devel/p5-threads-shared/threads-shared-1.59/t/
H A Ddualvar.t163 my %hsh :shared;
164 %hsh = (
178 my %hsh :shared;
179 $hsh{'iv'} = $iv;
180 $hsh{'nv'} = $nv;
205 my %hsh :shared;
206 %hsh = (
220 my %hsh :shared;
382 my %nsh = %hsh;
405 my %nsh = %hsh;
[all …]
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/dist/threads-shared/t/
H A Ddualvar.t163 my %hsh :shared;
164 %hsh = (
178 my %hsh :shared;
179 $hsh{'iv'} = $iv;
180 $hsh{'nv'} = $nv;
205 my %hsh :shared;
206 %hsh = (
220 my %hsh :shared;
382 my %nsh = %hsh;
405 my %nsh = %hsh;
[all …]
/dports/graphics/p5-Imager/Imager-1.012/lib/Imager/Font/
H A DTruetype.pm13 my %hsh=(color=>Imager::Color->new(255,0,0,255),
17 unless ($hsh{file}) {
21 unless (-e $hsh{file}) {
29 my $id = Imager::i_tt_new($hsh{file});
36 aa => $hsh{aa} || 0,
37 file => $hsh{file},
39 size => $hsh{size},
40 color => $hsh{color},
79 my ($self, %hsh) = @_;
81 unless (defined $hsh{string}) {
[all …]
/dports/net/jose/jose-11/tests/
H A Dalg_hash.c29 const char *hsh; member
59 jose_io_auto_t *hsh = NULL; in test() local
69 hsh = alg->hash.hsh(alg, NULL, buf); in test()
70 assert(hsh); in test()
74 assert(hsh->feed(hsh, &msg[i], 1)); in test()
76 assert(hsh->feed(hsh, msg, strlen(msg))); in test()
79 assert(hsh->done(hsh)); in test()
95 assert(strlen(v[i].hsh) == sizeof(a) * 2); in main()
97 sscanf(&v[i].hsh[j * 2], "%02hhx", &a[j]); in main()
/dports/security/john/john-1.9.0-jumbo-1/run/
H A Dfilezilla2john.py25 hsh = ""
29 hsh = option.text
33 if not hsh:
36 if hsh:
37 hsh = hsh.lower()
39 if len(hsh) == 32 and not salt: # Raw-MD5 hashes
40 sys.stdout.write("%s:$dynamic_0$%s\n" % (username, hsh))
41 elif len(hsh) == 128 and salt: # sha512($p.$s)
43 sys.stdout.write("%s:$dynamic_82$%s$HEX$%s\n" % (username, hsh, salt))
45 …write("Hash of length (%s) is not supported. Open a GitHub issue for reporting this!\n" % len(hsh))
/dports/graphics/p5-Imager/Imager-1.012/GIF/
H A DGIF.pm18 my ($im, $io, %hsh) = @_;
20 if ($hsh{gif_consolidate}) {
21 if ($hsh{colors}) {
25 ${ $hsh{colors} } = [ map { NC(@$_) } @$colors ];
33 my $page = $hsh{page};
41 if ($hsh{colors}) {
42 ${ $hsh{colors} } = [ $im->getcolors ];
49 my ($io, %hsh) = @_;
66 my ($im, $io, %hsh) = @_;
68 $im->_set_opts(\%hsh, "i_", $im);
[all …]
/dports/net/jose/jose-11/lib/openssl/
H A Dhash.c39 uint8_t hsh[EVP_MD_CTX_size(i->emc)]; in hsh_done() local
42 if (EVP_DigestFinal(i->emc, hsh, &l) <= 0) in hsh_done()
45 if (!i->next->feed(i->next, hsh, l) || !i->next->done(i->next)) in hsh_done()
61 hsh(const jose_hook_alg_t *alg, jose_cfg_t *cfg, jose_io_t *next) in hsh() function
100 .hash.size = 64, .hash.hsh = hsh }, in constructor()
102 .hash.size = 48, .hash.hsh = hsh }, in constructor()
104 .hash.size = 32, .hash.hsh = hsh }, in constructor()
106 .hash.size = 28, .hash.hsh = hsh }, in constructor()
108 .hash.size = 20, .hash.hsh = hsh }, in constructor()
/dports/devel/mercurial/mercurial-6.0/hgext/fastannotate/
H A Drevmap.py101 if hsh in self._hsh2rev:
105 if len(hsh) != _hshlen:
117 self._rev2hsh.append(hsh)
119 self._hsh2rev[hsh] = idx
147 def hsh2rev(self, hsh): argument
212 hsh = self._rev2hsh[rev]
219 f.write(hsh)
240 hsh, path = f
243 rev = self.hsh2rev(hsh)
255 hsh = None
[all …]

12345678910>>...48