Home
last modified time | relevance | path

Searched refs:hpass (Results 1 – 25 of 44) sorted by relevance

12

/dports/audio/lewton/lewton-0.10.2/cargo-crates/sha2-0.1.2/rust-crypto/src/
H A Dbcrypt_pbkdf.rs15 bf.salted_expand_key(hsalt, hpass);
19 bf.expand_key(hpass);
39 let mut hpass = [0u8; 64]; in bcrypt_pbkdf() localVariable
51 h.result(&mut hpass); in bcrypt_pbkdf()
64 bcrypt_hash(&hpass, &hsalt, &mut out); in bcrypt_pbkdf()
72 bcrypt_hash(&hpass, &hsalt, &mut tmp); in bcrypt_pbkdf()
96 hpass: [u8; 64], in test_bcrypt_hash() field
103 hpass: [ in test_bcrypt_hash()
117 hpass: [ in test_bcrypt_hash()
131 hpass: [ in test_bcrypt_hash()
[all …]
/dports/devel/dtool/dtool-0.11.0/cargo-crates/rust-crypto-0.2.36/src/
H A Dbcrypt_pbkdf.rs15 bf.salted_expand_key(hsalt, hpass);
19 bf.expand_key(hpass);
39 let mut hpass = [0u8; 64]; in bcrypt_pbkdf() localVariable
51 h.result(&mut hpass); in bcrypt_pbkdf()
64 bcrypt_hash(&hpass, &hsalt, &mut out); in bcrypt_pbkdf()
72 bcrypt_hash(&hpass, &hsalt, &mut tmp); in bcrypt_pbkdf()
96 hpass: [u8; 64], in test_bcrypt_hash() field
103 hpass: [ in test_bcrypt_hash()
117 hpass: [ in test_bcrypt_hash()
131 hpass: [ in test_bcrypt_hash()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/nr/
H A Dnrfilter.cpp297 if ((prm.fimg[*prm.hpass][i] < *prm.thold) && (prm.fimg[*prm.hpass][i] > -*prm.thold)) in calculteStdevMultithreaded()
301 prm.stdev[4] += prm.fimg[*prm.hpass][i] * prm.fimg[*prm.hpass][i]; in calculteStdevMultithreaded()
306 prm.stdev[3] += prm.fimg[*prm.hpass][i] * prm.fimg[*prm.hpass][i]; in calculteStdevMultithreaded()
311 prm.stdev[2] += prm.fimg[*prm.hpass][i] * prm.fimg[*prm.hpass][i]; in calculteStdevMultithreaded()
316 prm.stdev[1] += prm.fimg[*prm.hpass][i] * prm.fimg[*prm.hpass][i]; in calculteStdevMultithreaded()
321 prm.stdev[0] += prm.fimg[*prm.hpass][i] * prm.fimg[*prm.hpass][i]; in calculteStdevMultithreaded()
363 prm.fimg[*prm.hpass][i] *= prm.softness; in thresholdingMultithreaded()
366 if (*prm.hpass) in thresholdingMultithreaded()
378 uint hpass = 0; in waveletDenoise() local
391 prm.hpass = &hpass; in waveletDenoise()
[all …]
H A Dnrfilter.h77 hpass (nullptr), in Args()
90 uint* hpass; member
/dports/graphics/darktable38/darktable-3.8.0/src/external/LibRaw/src/postprocessing/
H A Dpostprocessing_aux.cpp76 if (fimg[hpass + i] < -thold) in wavelet_denoise()
77 fimg[hpass + i] += thold; in wavelet_denoise()
79 fimg[hpass + i] -= thold; in wavelet_denoise()
81 fimg[hpass + i] = 0; in wavelet_denoise()
82 if (hpass) in wavelet_denoise()
83 fimg[i] += fimg[hpass + i]; in wavelet_denoise()
85 hpass = lpass; in wavelet_denoise()
182 fimg[hpass + i] += thold; in wavelet_denoise()
186 fimg[hpass + i] = 0; in wavelet_denoise()
187 if (hpass) in wavelet_denoise()
[all …]
/dports/graphics/libraw/LibRaw-0.20.2/src/postprocessing/
H A Dpostprocessing_aux.cpp76 if (fimg[hpass + i] < -thold) in wavelet_denoise()
77 fimg[hpass + i] += thold; in wavelet_denoise()
79 fimg[hpass + i] -= thold; in wavelet_denoise()
81 fimg[hpass + i] = 0; in wavelet_denoise()
82 if (hpass) in wavelet_denoise()
83 fimg[i] += fimg[hpass + i]; in wavelet_denoise()
85 hpass = lpass; in wavelet_denoise()
182 fimg[hpass + i] += thold; in wavelet_denoise()
186 fimg[hpass + i] = 0; in wavelet_denoise()
187 if (hpass) in wavelet_denoise()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/rawengine/libraw/src/postprocessing/
H A Dpostprocessing_aux.cpp76 if (fimg[hpass + i] < -thold) in wavelet_denoise()
77 fimg[hpass + i] += thold; in wavelet_denoise()
79 fimg[hpass + i] -= thold; in wavelet_denoise()
81 fimg[hpass + i] = 0; in wavelet_denoise()
82 if (hpass) in wavelet_denoise()
83 fimg[i] += fimg[hpass + i]; in wavelet_denoise()
85 hpass = lpass; in wavelet_denoise()
182 fimg[hpass + i] += thold; in wavelet_denoise()
186 fimg[hpass + i] = 0; in wavelet_denoise()
187 if (hpass) in wavelet_denoise()
[all …]
/dports/net/v2ray/v2ray-core-4.36.2/vendor/github.com/ebfe/bcrypt_pbkdf/
H A Dbcrypt_pbkdf.go34 func bcryptHash(bf *blowfish.Cipher, hpass, hsalt, out []byte) { argument
35 err := bf.InitSaltedCipher(hpass, hsalt)
42 blowfish.ExpandKey(hpass, bf)
60 hpass := make([]byte, sha512.Size)
72 hpass = sha.Sum(hpass[:0])
84 bcryptHash(cipher, hpass, hsalt, tmp)
91 bcryptHash(cipher, hpass, hsalt, tmp)
H A Dbcrypt_pbkdf_test.go10 hpass []byte member
17hpass: []byte{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,…
21hpass: []byte{0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x10…
25hpass: []byte{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,…
29hpass: []byte{0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x10…
119 bcryptHash(cipher, tc.hpass, tc.hsalt, out)
/dports/graphics/movit/movit-1.6.3/
H A Dblur_effect.cpp23 hpass = new SingleBlurPassEffect(this); in BlurEffect()
24 CHECK(hpass->set_int("direction", SingleBlurPassEffect::HORIZONTAL)); in BlurEffect()
33 Node *hpass_node = graph->add_node(hpass); in rewrite_graph()
69 bool ok = hpass->set_float("radius", adjusted_radius); in update_radius()
70 ok |= hpass->set_int("width", mipmap_width); in update_radius()
71 ok |= hpass->set_int("height", mipmap_height); in update_radius()
72 ok |= hpass->set_int("virtual_width", mipmap_width); in update_radius()
73 ok |= hpass->set_int("virtual_height", mipmap_height); in update_radius()
74 ok |= hpass->set_int("num_taps", num_taps); in update_radius()
H A Dresample_effect.cpp314 hpass = hpass_owner.get(); in ResampleEffect()
315 CHECK(hpass->set_int("direction", SingleResamplePassEffect::HORIZONTAL)); in ResampleEffect()
352 ok |= hpass->set_int("input_width", input_width); in update_size()
353 ok |= hpass->set_int("input_height", input_height); in update_size()
354 ok |= hpass->set_int("output_width", output_width); in update_size()
355 ok |= hpass->set_int("output_height", input_height); in update_size()
377 ok |= hpass->set_float("offset", extra_offset_x + offset_x); in update_offset_and_zoom()
379 ok |= hpass->set_float("zoom", zoom_x); in update_offset_and_zoom()
H A Dblur_effect.h54 SingleBlurPassEffect *hpass, *vpass; variable
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/thrussh-keys-0.21.0/src/
H A Dbcrypt_pbkdf.rs13 fn bcrypt_hash(hpass: &[u8], hsalt: &[u8], output: &mut [u8; 32]) { in bcrypt_hash()
15 bf.salted_expand_key(hsalt, hpass);
19 bf.expand_key(hpass);
51 let hpass = { in bcrypt_pbkdf() localVariable
67 bcrypt_hash(hpass.as_ref(), hsalt.as_ref(), &mut out); in bcrypt_pbkdf()
75 bcrypt_hash(hpass.as_ref(), hsalt.as_ref(), &mut tmp); in bcrypt_pbkdf()
/dports/graphics/darktable/darktable-3.6.1/data/kernels/
H A Ddwt.cl48 dwt_hat_transform_row(global float4 *lpass, global float4 *hpass, int width, int height, const int …
62 lpass[h_idx] = hat_mult * hpass[mad24(y, width, x)] + hpass[mad24(y, width, (sc - x))]
63 + hpass[mad24(y, width, (x + sc))];
69 lpass[h_idx] = hat_mult * hpass[mad24(y, width, x)] + hpass[mad24(y, width, (x - sc))]
70 + hpass[mad24(y, width, (x + sc))];
76 lpass[h_idx] = hat_mult * hpass[mad24(y, width, x)] + hpass[mad24(y, width, (x - sc))]
77 + hpass[mad24(y, width, (2 * size - 2 - (x + sc)))];
/dports/graphics/darktable38/darktable-3.8.0/data/kernels/
H A Ddwt.cl48 dwt_hat_transform_row(global float4 *lpass, global float4 *hpass, int width, int height, const int …
62 lpass[h_idx] = hat_mult * hpass[mad24(y, width, x)] + hpass[mad24(y, width, (sc - x))]
63 + hpass[mad24(y, width, (x + sc))];
69 lpass[h_idx] = hat_mult * hpass[mad24(y, width, x)] + hpass[mad24(y, width, (x - sc))]
70 + hpass[mad24(y, width, (x + sc))];
76 lpass[h_idx] = hat_mult * hpass[mad24(y, width, x)] + hpass[mad24(y, width, (x - sc))]
77 + hpass[mad24(y, width, (2 * size - 2 - (x + sc)))];
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/bcrypt-pbkdf-0.6.2/src/
H A Dlib.rs172 hpass: [u8; 64], in test_bhash() field
179 hpass: [ in test_bhash()
200 hpass: [ in test_bhash()
221 hpass: [ in test_bhash()
242 hpass: [ in test_bhash()
265 let out = bhash(&t.hpass, &t.hsalt); in test_bhash()
/dports/graphics/darktable38/darktable-3.8.0/src/common/
H A Ddwt.c265 unsigned int hpass = 0; in dwt_wavelet_decompose() local
282 dwt_get_image_layer(buffer[hpass], p); in dwt_wavelet_decompose()
312 hpass = lpass; in dwt_wavelet_decompose()
325 dwt_get_image_layer(buffer[hpass], p); in dwt_wavelet_decompose()
663 unsigned int lpass, hpass; in dwt_wavelet_decompose_cl() local
736 hpass = 0; in dwt_wavelet_decompose_cl()
806 err = layer_func(buffer[hpass], p, lev + 1); in dwt_wavelet_decompose_cl()
814 err = dwt_get_image_layer_cl(buffer[hpass], p); in dwt_wavelet_decompose_cl()
852 hpass = lpass; in dwt_wavelet_decompose_cl()
861 err = layer_func(buffer[hpass], p, p->scales + 1); in dwt_wavelet_decompose_cl()
[all …]
/dports/graphics/darktable/darktable-3.6.1/src/common/
H A Ddwt.c264 unsigned int hpass = 0; in dwt_wavelet_decompose() local
281 dwt_get_image_layer(buffer[hpass], p); in dwt_wavelet_decompose()
311 hpass = lpass; in dwt_wavelet_decompose()
324 dwt_get_image_layer(buffer[hpass], p); in dwt_wavelet_decompose()
662 unsigned int lpass, hpass; in dwt_wavelet_decompose_cl() local
735 hpass = 0; in dwt_wavelet_decompose_cl()
805 err = layer_func(buffer[hpass], p, lev + 1); in dwt_wavelet_decompose_cl()
813 err = dwt_get_image_layer_cl(buffer[hpass], p); in dwt_wavelet_decompose_cl()
851 hpass = lpass; in dwt_wavelet_decompose_cl()
860 err = layer_func(buffer[hpass], p, p->scales + 1); in dwt_wavelet_decompose_cl()
[all …]
/dports/graphics/photoflow/PhotoFlow-8472024f/src/operations/
H A Dwavdec.hh297 unsigned int lpass, hpass; in dwt_wavelet_decompose() local
331 hpass = 0; in dwt_wavelet_decompose()
338 …dwt_hat_transform(temp, buffer[hpass] + (row * i_line_size), 1, wd_width, 1 << (lev+wd_initial_lev… in dwt_wavelet_decompose()
356 buffer[hpass][i] -= buffer[lpass][i] - lpass_sub; in dwt_wavelet_decompose()
361 dwt_add_layer(buffer[hpass], lev + 1); in dwt_wavelet_decompose()
365 dwt_get_image_layer(buffer[hpass]); in dwt_wavelet_decompose()
370 hpass = lpass; in dwt_wavelet_decompose()
380 dwt_add_layer(buffer[hpass], wd_scales+1); in dwt_wavelet_decompose()
/dports/graphics/openfx-misc/openfx-misc-3ab0531/DenoiseSharpen/
H A DDenoiseSharpen.cpp1818 int hpass = 0; in wavelet_denoise() local
1884 sumsqrow += fimg[hpass][i] * fimg[hpass][i]; in wavelet_denoise()
1951 …ApplyThreshold processor(*this, fimg[hpass], hpass ? fimg[0] : NULL, size, thold, denoise_amount, … in wavelet_denoise()
1963 if (fimg[hpass][i] < -thold) { in wavelet_denoise()
1974 if (hpass != 0) { in wavelet_denoise()
2014 prevsq += fimg[hpass][i] * fimg[hpass][i]; in wavelet_denoise()
2067 if (hpass != 0) { in wavelet_denoise()
2077 hpass = lpass; in wavelet_denoise()
2113 int hpass = 0; in sigma_mad() local
2156 fimg[hpass][i] -= fimg[lpass][i]; in sigma_mad()
[all …]
/dports/x11-drivers/xf86-video-r128/xf86-video-r128-6.12.0/src/
H A Dr128_video.c410 int err=-1, i, idx, offset, hpass, passes, srcpassbytes, dstpassbytes; in R128DMA() local
419 if ((hpass = min(h,(BUFSIZE/w))) == 0) in R128DMA()
422 if ((passes = (h+hpass-1)/hpass) > MAXPASSES) in R128DMA()
426 srcpassbytes = w*hpass; in R128DMA()
448 dstpassbytes = hpass*dstPitch; in R128DMA()
452 if (i == (passes-1) && (h % hpass) != 0) { in R128DMA()
453 hpass = h % hpass; in R128DMA()
454 srcpassbytes = w*hpass; in R128DMA()
464 int count = hpass; in R128DMA()
479 blit.height = hpass; in R128DMA()
/dports/science/qmcpack/qmcpack-3.11.0/tests/scripts/
H A Dcheck_deriv.py98 hpass = check_relative_error(hdata) variable
100 if opass and hpass:
/dports/x11-wm/mutter/mutter-41.1/clutter/clutter/
H A Dclutter-blur.c350 BlurPass *hpass; in clutter_blur_new() local
368 hpass = &blur->pass[HORIZONTAL]; in clutter_blur_new()
371 !setup_blur_pass (blur, hpass, HORIZONTAL, vpass->texture)) in clutter_blur_new()
/dports/graphics/ufraw/ufraw-f34669b/
H A Ddcraw_indi.c125 int size, lev, hpass, lpass, row, col, nc, c, i, wlast; in wavelet_denoise_INDI() local
141 private(c,i,hpass,lev,lpass,row,col,thold,fimg,temp) in wavelet_denoise_INDI()
145 private(c,i,hpass,lev,lpass,row,col,thold,fimg,temp) in wavelet_denoise_INDI()
152 for (hpass = lev = 0; lev < 5; lev++) { in wavelet_denoise_INDI()
156 hat_transform(temp, fimg + hpass + row * iwidth, 1, iwidth, 1 << lev); in wavelet_denoise_INDI()
167 fimg[hpass + i] -= fimg[lpass + i]; in wavelet_denoise_INDI()
168 if (fimg[hpass + i] < -thold) fimg[hpass + i] += thold; in wavelet_denoise_INDI()
169 else if (fimg[hpass + i] > thold) fimg[hpass + i] -= thold; in wavelet_denoise_INDI()
170 else fimg[hpass + i] = 0; in wavelet_denoise_INDI()
171 if (hpass) fimg[i] += fimg[hpass + i]; in wavelet_denoise_INDI()
[all …]
/dports/graphics/photivo/photivo/Sources/
H A DptImage.cpp5891 if (fImage[hpass+i] < THold && fImage[hpass+i] > -THold) { in WaveletDenoise()
5894 Tempstdev[4] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5897 Tempstdev[3] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5900 Tempstdev[2] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5903 Tempstdev[1] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5906 Tempstdev[0] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5911 stdev[4] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5914 stdev[3] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5917 stdev[2] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
5920 stdev[1] += fImage[hpass+i] * fImage[hpass+i]; in WaveletDenoise()
[all …]

12