Home
last modified time | relevance | path

Searched refs:checktype (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/
H A Dpmeth_check.c28 static int try_provided_check(EVP_PKEY_CTX *ctx, int selection, int checktype) in try_provided_check() argument
44 return evp_keymgmt_validate(keymgmt, keydata, selection, checktype); in try_provided_check()
47 static int evp_pkey_public_check_combined(EVP_PKEY_CTX *ctx, int checktype) in evp_pkey_public_check_combined() argument
58 checktype)) != -1) in evp_pkey_public_check_combined()
91 static int evp_pkey_param_check_combined(EVP_PKEY_CTX *ctx, int checktype) in evp_pkey_param_check_combined() argument
103 checktype)) != -1) in evp_pkey_param_check_combined()
H A Dkeymgmt_meth.c439 int selection, int checktype) in evp_keymgmt_validate() argument
444 return keymgmt->validate(keydata, selection, checktype); in evp_keymgmt_validate()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/dsa/
H A Ddsa_check.c45 int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret) in ossl_dsa_check_params() argument
50 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in ossl_dsa_check_params()
/netbsd-src/external/mit/lua/dist/src/
H A Dlobject.h96 #define checktype(o,t) (ttype(o) == (t)) macro
197 #define ttisnil(v) checktype((v), LUA_TNIL)
246 #define ttisboolean(o) checktype((o), LUA_TBOOLEAN)
330 #define ttisnumber(o) checktype((o), LUA_TNUMBER)
375 #define ttisstring(o) checktype((o), LUA_TSTRING)
606 #define ttisfunction(o) checktype(o, LUA_TFUNCTION)
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/
H A Ddsa_kmgmt.c349 static int dsa_validate_domparams(const DSA *dsa, int checktype) in dsa_validate_domparams() argument
353 return ossl_dsa_check_params(dsa, checktype, &status); in dsa_validate_domparams()
378 static int dsa_validate(const void *keydata, int selection, int checktype) in dsa_validate() argument
390 ok = ok && dsa_validate_domparams(dsa, checktype); in dsa_validate()
H A Ddh_kmgmt.c381 static int dh_validate_public(const DH *dh, int checktype) in dh_validate_public() argument
391 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK in dh_validate_public()
409 static int dh_validate(const void *keydata, int selection, int checktype) in dh_validate() argument
426 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in dh_validate()
433 ok = ok && dh_validate_public(dh, checktype); in dh_validate()
H A Decx_kmgmt.c777 static int x25519_validate(const void *keydata, int selection, int checktype) in x25519_validate() argument
782 static int x448_validate(const void *keydata, int selection, int checktype) in x448_validate() argument
787 static int ed25519_validate(const void *keydata, int selection, int checktype) in ed25519_validate() argument
792 static int ed448_validate(const void *keydata, int selection, int checktype) in ed448_validate() argument
H A Dec_kmgmt.c897 int sm2_validate(const void *keydata, int selection, int checktype) in sm2_validate() argument
917 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in sm2_validate()
936 int ec_validate(const void *keydata, int selection, int checktype) in ec_validate() argument
963 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK) in ec_validate()
H A Drsa_kmgmt.c392 static int rsa_validate(const void *keydata, int selection, int checktype) in rsa_validate() argument
/netbsd-src/crypto/external/bsd/openssl/dist/include/crypto/
H A Ddsa.h40 int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret);
H A Devp.h829 int selection, int checktype);
/netbsd-src/external/bsd/unbound/dist/testcode/
H A Dchecklocks.c332 checktype(enum check_lock_type type, struct checked_lock* lock, in checktype() function
355 checktype(type, e, func, file, line); in checklock_destroy()
449 checktype(type, lock, func, file, line); in checklock_lockit()
593 checktype(type, lock, func, file, line); in checklock_unlock()
/netbsd-src/external/bsd/unbound/dist/validator/
H A Dval_neg.c1061 struct regional* region, int checkbit, uint16_t checktype, in grab_nsec() argument
1082 (qtype == LDNS_RR_TYPE_NSEC && nsec_has_type(k, checktype)) || in grab_nsec()
1083 (qtype == LDNS_RR_TYPE_NSEC3 && !nsec3_no_type(k, checktype)) in grab_nsec()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A Dprovider-keymgmt.pod59 int OSSL_FUNC_keymgmt_validate(const void *keydata, int selection, int checktype);
308 I<keydata> is valid. The I<checktype> parameter controls what type of check is
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-typeck.c6248 tree checktype = (rhs_origtype != NULL_TREE in build_modify_expr() local
6251 if (checktype != error_mark_node in build_modify_expr()
6252 && (TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (lhs_origtype) in build_modify_expr()
6799 tree checktype = origtype != NULL_TREE ? origtype : rhstype; in convert_for_assignment() local
6800 if (checktype != error_mark_node in convert_for_assignment()
6802 && TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (type)) in convert_for_assignment()
6834 tree checktype = origtype != NULL_TREE ? origtype : rhstype; in convert_for_assignment() local
6835 if (checktype != error_mark_node in convert_for_assignment()
6836 && TREE_CODE (checktype) == ENUMERAL_TYPE in convert_for_assignment()
6838 && TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (type)) in convert_for_assignment()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-typeck.cc6366 tree checktype = (rhs_origtype != NULL_TREE in build_modify_expr() local
6369 if (checktype != error_mark_node in build_modify_expr()
6370 && (TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (lhs_origtype) in build_modify_expr()
6910 tree checktype = origtype != NULL_TREE ? origtype : rhstype; in convert_for_assignment() local
6911 if (checktype != error_mark_node in convert_for_assignment()
6913 && TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (type)) in convert_for_assignment()
6946 tree checktype = origtype != NULL_TREE ? origtype : rhstype; in convert_for_assignment() local
6947 if (checktype != error_mark_node in convert_for_assignment()
6948 && TREE_CODE (checktype) == ENUMERAL_TYPE in convert_for_assignment()
6950 && TYPE_MAIN_VARIANT (checktype) != TYPE_MAIN_VARIANT (type)) in convert_for_assignment()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Dcore_dispatch.h619 int checktype))
/netbsd-src/sys/netipsec/
H A Dkey.c8217 enum { NONE, ADDR } checktype = NONE; in key_validate_ext() local
8239 checktype = ADDR; in key_validate_ext()
8246 checktype = ADDR; in key_validate_ext()
8248 checktype = NONE; in key_validate_ext()
8251 checktype = NONE; in key_validate_ext()
8255 switch (checktype) { in key_validate_ext()