| /freebsd/sys/contrib/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ |
| H A D | sign.c | 70 unsigned char az[64]; in _crypto_sign_ed25519_detached() local 78 memcpy(az, sk, 32); in _crypto_sign_ed25519_detached() 79 _crypto_sign_ed25519_synthetic_r_hv(&hs, nonce, az); in _crypto_sign_ed25519_detached() 81 crypto_hash_sha512(az, sk, 32); in _crypto_sign_ed25519_detached() 82 crypto_hash_sha512_update(&hs, az + 32, 32); in _crypto_sign_ed25519_detached() 100 _crypto_sign_ed25519_clamp(az); in _crypto_sign_ed25519_detached() 101 sc25519_muladd(sig + 32, hram, az, nonce); in _crypto_sign_ed25519_detached() 103 sodium_memzero(az, sizeof az); in _crypto_sign_ed25519_detached()
|
| /freebsd/contrib/unbound/services/ |
| H A D | authzone.h | 495 int auth_zones_apply_cfg(struct auth_zones* az, struct config_file* cfg, 504 void auth_xfer_pickup_initial(struct auth_zones* az, struct module_env* env); 511 void auth_zones_cleanup(struct auth_zones* az); 516 void auth_zones_delete(struct auth_zones* az); 542 int auth_zones_lookup(struct auth_zones* az, struct query_info* qinfo, 557 int auth_zones_downstream_answer(struct auth_zones* az, struct module_env* env, 572 struct auth_zone* auth_zones_find_zone(struct auth_zones* az, 576 struct auth_zone* auth_zone_find(struct auth_zones* az, uint8_t* nm, 580 struct auth_xfer* auth_xfer_find(struct auth_zones* az, uint8_t* nm, 585 struct auth_zone* auth_zone_create(struct auth_zones* az, uint8_t* nm, [all …]
|
| H A D | authzone.c | 296 struct auth_zones* az = (struct auth_zones*)calloc(1, sizeof(*az)); in auth_zones_create() local 297 if(!az) { in auth_zones_create() 301 rbtree_init(&az->ztree, &auth_zone_cmp); in auth_zones_create() 302 rbtree_init(&az->xtree, &auth_xfer_cmp); in auth_zones_create() 303 lock_rw_init(&az->lock); in auth_zones_create() 304 lock_protect(&az->lock, &az->ztree, sizeof(az->ztree)); in auth_zones_create() 305 lock_protect(&az->lock, &az->xtree, sizeof(az->xtree)); in auth_zones_create() 307 lock_rw_init(&az->rpz_lock); in auth_zones_create() 308 lock_protect(&az->rpz_lock, &az->rpz_first, sizeof(az->rpz_first)); in auth_zones_create() 309 return az; in auth_zones_create() [all …]
|
| H A D | rpz.c | 1699 rpz_resolve_client_action_and_zone(struct auth_zones* az, struct query_info* qinfo, in rpz_resolve_client_action_and_zone() argument 1710 lock_rw_rdlock(&az->rpz_lock); in rpz_resolve_client_action_and_zone() 1712 for(a = az->rpz_first; a; a = a->rpz_az_next) { in rpz_resolve_client_action_and_zone() 1753 lock_rw_unlock(&az->rpz_lock); in rpz_resolve_client_action_and_zone() 1923 struct auth_zone* az) in rpz_add_soa() argument 1928 if(!az) return 1; in rpz_add_soa() 1929 soa = auth_zone_get_soa_rrset(az); in rpz_add_soa() 1932 rsoa = make_soa_ubrrset(az, soa, ms->region); in rpz_add_soa() 1961 struct query_info* qinfo, struct auth_zone* az) in rpz_synthesize_nodata() argument 1981 if(!rpz_add_soa(msg->rep, ms, az)) in rpz_synthesize_nodata() [all …]
|
| H A D | rpz.h | 167 * @param az: auth_zones struct, containing first RPZ item and RPZ lock 180 int rpz_callback_from_worker_request(struct auth_zones* az, struct module_env* env,
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
| H A D | atanf.c | 50 svfloat32_t az = svabs_x (pg, z); in SV_NAME_F1() local 51 az = svneg_m (az, red, az); in SV_NAME_F1() 61 svfloat32_t z3 = svmul_x (pg, z2, az); in SV_NAME_F1() 62 y = svmla_x (pg, az, z3, y); in SV_NAME_F1()
|
| H A D | atan.c | 56 svfloat64_t az = svabs_x (pg, z); in SV_NAME_D1() local 57 az = svneg_m (az, red, az); in SV_NAME_D1() 70 svfloat64_t z3 = svmul_x (pg, z2, az); in SV_NAME_D1() 71 y = svmla_x (pg, az, z3, y); in SV_NAME_D1()
|
| /freebsd/contrib/unbound/testcode/ |
| H A D | unitzonemd.c | 56 struct auth_zone* authtest_addzone(struct auth_zones* az, const char* name, 67 struct auth_zones* az; in zonemd_generate_test() local 79 az = auth_zones_create(); in zonemd_generate_test() 80 unit_assert(az); in zonemd_generate_test() 87 z = authtest_addzone(az, zname, zfile); in zonemd_generate_test() 126 auth_zones_delete(az); in zonemd_generate_test() 185 struct auth_zones* az; in zonemd_check_test() local 197 az = auth_zones_create(); in zonemd_check_test() 198 unit_assert(az); in zonemd_check_test() 205 z = authtest_addzone(az, zname, zfile); in zonemd_check_test() [all …]
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/ |
| H A D | atanf_2u9.c | 44 float z, az, shift; in atanf() local 51 az = -fabsf (z); in atanf() 57 az = asfloat (ia); in atanf() 62 float y = eval_poly (z, az, shift); in atanf()
|
| H A D | atan_2u5.c | 43 double z, az, shift; in atan() local 50 az = -fabs (z); in atan() 57 az = asdouble (ia); in atan() 61 double y = eval_poly (z, az, shift); in atan()
|
| H A D | atanf_common.h | 18 eval_poly (float z, float az, float shift) in eval_poly() argument 35 return fmaf (y, z2 * az, az) + shift; in eval_poly()
|
| H A D | atan_common.h | 15 eval_poly (double z, double az, double shift) in eval_poly() argument 27 y = fma (y, z2 * az, az); in eval_poly()
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
| H A D | atanf.c | 75 float32x4_t az = vbslq_f32 ( in V_NAME_F1() local 93 y = vaddq_f32 (vfmaq_f32 (az, y, vmulq_f32 (z2, az)), shift); in V_NAME_F1()
|
| H A D | atan.c | 76 float64x2_t az = vbslq_f64 ( in V_NAME_D1() local 119 y = vfmaq_f64 (az, y, vmulq_f64 (z2, az)); in V_NAME_D1()
|
| /freebsd/release/ |
| H A D | Makefile.azure | 28 .if !exists(/usr/local/bin/az) 46 /usr/local/bin/az storage blob upload \ 63 @echo /usr/local/bin/az storage blob delete \
|
| /freebsd/contrib/sendmail/libsm/ |
| H A D | t-streq.sh | 35 20:xabcez@uabcey.por.az\n 36 1:xabcez@uabcey.por.az
|
| /freebsd/usr.bin/ee/nls/hu_HU.ISO8859-2/ |
| H A D | ee.msg | 56 47 "help : ez az info file : f�jln�v megjelen�t�se " 76 67 " nyomja le az Escape billenty�t (^[) a men� el�r�s�hez" 82 73 "az olvasand� f�jl neve: " 88 79 "az aktu�lis f�jl \"%s\" " 114 105 "nyomja le az Esc billenty�t a visszal�p�shez" 115 106 "a men� t�l nagy az ablakhoz" 175 166 "ment�s az aktu�lis k�nyvt�rba" 179 180 "a men� t�l nagy az ablakhoz"
|
| /freebsd/crypto/openssh/ |
| H A D | ed25519.c | 1915 unsigned char az[64]; in crypto_sign_ed25519_keypair() local 1920 crypto_hash_sha512(az,sk,32); in crypto_sign_ed25519_keypair() 1921 az[0] &= 248; in crypto_sign_ed25519_keypair() 1922 az[31] &= 127; in crypto_sign_ed25519_keypair() 1923 az[31] |= 64; in crypto_sign_ed25519_keypair() 1925 sc25519_from32bytes(&scsk,az); in crypto_sign_ed25519_keypair() 1941 unsigned char az[64]; in crypto_sign_ed25519() local 1950 crypto_hash_sha512(az,sk,32); in crypto_sign_ed25519() 1951 az[0] &= 248; in crypto_sign_ed25519() 1952 az[31] &= 127; in crypto_sign_ed25519() [all …]
|
| /freebsd/contrib/bzip2/ |
| H A D | blocksort.c | 607 #define mnextsize(az) (nextHi[az]-nextLo[az]) argument 609 #define mnextswap(az,bz) \ argument 611 tz = nextLo[az]; nextLo[az] = nextLo[bz]; nextLo[bz] = tz; \ 612 tz = nextHi[az]; nextHi[az] = nextHi[bz]; nextHi[bz] = tz; \ 613 tz = nextD [az]; nextD [az] = nextD [bz]; nextD [bz] = tz; }
|
| /freebsd/lib/libc/nls/ |
| H A D | hu_HU.ISO8859-2.msg | 44 19 A m�velet nem t�mogatott az eszk�z �ltal 56 25 Nem megfelel� ioctl az eszk�zh�z 62 28 Nincs hely az eszk�z�n 174 84 Az �rt�k t�l nagy az adott adatt�pusban val� t�rol�shoz 284 11 Rendszerhiba j�tt vissza az errno v�ltoz�ban
|
| /freebsd/contrib/unbound/respip/ |
| H A D | respip.h | 164 struct auth_zones* az, struct views* views, 197 int search_only, struct regional* region, struct auth_zones* az,
|
| H A D | respip.c | 878 struct regional* region, struct auth_zones* az, int* rpz_passthru, in respip_rewrite_reply() 961 lock_rw_rdlock(&az->rpz_lock); in respip_rewrite_reply() 962 for(a = az->rpz_first; a && !raddr && !(rpz_passthru && *rpz_passthru); a = a->rpz_az_next) { in respip_rewrite_reply() 975 lock_rw_unlock(&az->rpz_lock); in respip_rewrite_reply() 1005 lock_rw_unlock(&az->rpz_lock); in respip_rewrite_reply() 1172 struct auth_zones* az, struct views* views, in respip_merge_cname() 1200 &alias_rrset, 1, region, az, NULL, views, respip_set)) in respip_merge_cname() 870 respip_rewrite_reply(const struct query_info * qinfo,const struct respip_client_info * cinfo,const struct reply_info * rep,struct reply_info ** new_repp,struct respip_action_info * actinfo,struct ub_packed_rrset_key ** alias_rrset,int search_only,struct regional * region,struct auth_zones * az,int * rpz_passthru) respip_rewrite_reply() argument 1152 respip_merge_cname(struct reply_info * base_rep,const struct query_info * qinfo,const struct reply_info * tgt_rep,const struct respip_client_info * cinfo,int must_validate,struct reply_info ** new_repp,struct regional * region,struct auth_zones * az) respip_merge_cname() argument
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | t.stately | 1 /^(al|ak|az|ar|ca|co|ct|de|fl|ga|hi|io|il|in|ia|ks|ky|la|me|md|ma|mi|mn|ms|mo|mt|nb|nv|nh|nj|nm|ny|…
|
| /freebsd/share/timedef/ |
| H A D | eu_ES.UTF-8.src | 38 az.
|
| /freebsd/crypto/openssl/crypto/ec/ |
| H A D | curve25519.c | 5632 uint8_t az[SHA512_DIGEST_LENGTH]; in ossl_ed25519_sign() local 5657 || !EVP_DigestFinal_ex(hash_ctx, az, &sz)) in ossl_ed25519_sign() 5660 az[0] &= 248; in ossl_ed25519_sign() 5661 az[31] &= 63; in ossl_ed25519_sign() 5662 az[31] |= 64; in ossl_ed25519_sign() 5665 || !EVP_DigestUpdate(hash_ctx, az + 32, 32) in ossl_ed25519_sign() 5682 sc_muladd(out_sig + 32, hram, az, nonce); in ossl_ed25519_sign() 5687 OPENSSL_cleanse(az, sizeof(az)); in ossl_ed25519_sign() 5818 uint8_t az[SHA512_DIGEST_LENGTH]; in ossl_ed25519_public_from_private() local 5826 r = EVP_Digest(private_key, 32, az, NULL, sha512, NULL); in ossl_ed25519_public_from_private() [all …]
|