Searched refs:ec (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/include/openssl/
H A Decdsa.h10 #include <openssl/ec.h>
H A Decdh.h10 #include <openssl/ec.h>
/freebsd-current/contrib/elftoolchain/libelf/
H A Delf_shstrndx.c38 int ec; local
41 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
46 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL)
70 int ec; local
73 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64) ||
74 ((eh = _libelf_ehdr(e, ec, 0)) == NULL)) {
79 return (_libelf_setshstrndx(e, eh, ec, strndx));
H A Dlibelf_shdr.c35 _libelf_getshdr(Elf_Scn *s, int ec) argument
45 if (ec == ELFCLASSNONE)
46 ec = e->e_class;
48 if (ec != e->e_class) {
H A Dgelf_checksum.c49 int ec; local
51 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
55 return (_libelf_checksum(e, ec));
H A Delf_phnum.c38 int ec; local
41 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
46 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL)
H A Delf_shnum.c38 int ec; local
41 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
46 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL)
H A Dgelf_dyn.c39 int ec; local
57 ec = e->e_class;
58 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
60 if (ec == ELFCLASS32)
70 if ((msz = _libelf_msize(ELF_T_DYN, ec, e->e_version)) == 0)
80 if (ec == ELFCLASS32) {
99 int ec; local
117 ec = e->e_class;
118 assert(ec
[all...]
H A Dgelf_cap.c39 int ec; local
57 ec = e->e_class;
58 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
60 if (ec == ELFCLASS32)
70 if ((msz = _libelf_msize(ELF_T_CAP, ec, e->e_version)) == 0)
78 if (ec == ELFCLASS32) {
98 int ec; local
116 ec = e->e_class;
117 assert(ec
[all...]
/freebsd-current/lib/libbearssl/
H A DMakefile.libsa.inc26 ec/ec_all_m31.c \
27 ec/ec_c25519_m31.c \
28 ec/ec_c25519_m62.c \
29 ec/ec_c25519_m64.c \
30 ec/ec_default.c \
31 ec/ec_p256_m31.c \
32 ec/ec_p256_m62.c \
33 ec/ec_p256_m64.c \
34 ec/ec_prime_i31.c \
35 ec/ec_pubke
[all...]
/freebsd-current/sys/dev/efidev/
H A Defirt.c482 efi_rt_arch_call_nofault(struct efirt_callinfo *ec) argument
485 switch (ec->ec_argcnt) {
487 ec->ec_efi_status = ((register_t (*)(void))ec->ec_fptr)();
490 ec->ec_efi_status = ((register_t (*)(register_t))ec->ec_fptr)
491 (ec->ec_arg1);
494 ec->ec_efi_status = ((register_t (*)(register_t, register_t))
495 ec->ec_fptr)(ec
545 struct efirt_callinfo ec; local
586 struct efirt_callinfo ec; local
623 struct efirt_callinfo ec; local
668 struct efirt_callinfo ec; local
694 struct efirt_callinfo ec; local
724 struct efirt_callinfo ec; local
747 struct efirt_callinfo ec; local
769 struct efirt_callinfo ec; local
[all...]
/freebsd-current/sys/contrib/ck/include/
H A Dck_ec.h105 * ec is a struct ck_ec32 *, or a struct ck_ec64 *.
115 * `void ck_ec_init(ec, value)`: initializes the event count to value.
117 * `value ck_ec_value(ec)`: returns the current value of the event
120 * `bool ck_ec_has_waiters(ec)`: returns whether some thread has
123 * `void ck_ec_inc(ec, mode)`: increments the value of the event
127 * `value ck_ec_add(ec, mode, value)`: increments the event counter by
139 * `int ck_ec_wait(ec, mode, value, deadline)`: waits until the event
146 * `int ck_ec_wait_pred(ec, mode, value, pred, data, deadline)`: waits
418 static void ck_ec32_init(struct ck_ec32 *ec, uint32_t value);
427 static void ck_ec64_init(struct ck_ec64 *ec, uint64_
602 ck_ec32_init(struct ck_ec32 *ec, uint32_t value) argument
608 ck_ec32_value(const struct ck_ec32 *ec) argument
616 ck_ec32_has_waiters(const struct ck_ec32 *ec) argument
624 ck_ec32_inc(struct ck_ec32 *ec, const struct ck_ec_mode *mode) argument
686 ck_ec32_add_epilogue(struct ck_ec32 *ec, const struct ck_ec_mode *mode, uint32_t old) argument
702 ck_ec32_add_mp(struct ck_ec32 *ec, const struct ck_ec_mode *mode, uint32_t delta) argument
714 ck_ec32_add_sp(struct ck_ec32 *ec, const struct ck_ec_mode *mode, uint32_t delta) argument
738 ck_ec32_add(struct ck_ec32 *ec, const struct ck_ec_mode *mode, uint32_t delta) argument
768 ck_ec32_wait(struct ck_ec32 *ec, const struct ck_ec_mode *mode, uint32_t old_value, const struct timespec *deadline) argument
789 ck_ec32_wait_pred(struct ck_ec32 *ec, const struct ck_ec_mode *mode, uint32_t old_value, int (*pred)(const struct ck_ec_wait_state *state, struct timespec *deadline), void *data, const struct timespec *deadline) argument
806 ck_ec64_init(struct ck_ec64 *ec, uint64_t value) argument
812 ck_ec64_value(const struct ck_ec64 *ec) argument
820 ck_ec64_has_waiters(const struct ck_ec64 *ec) argument
827 ck_ec64_inc(struct ck_ec64 *ec, const struct ck_ec_mode *mode) argument
835 ck_ec_add64_epilogue(struct ck_ec64 *ec, const struct ck_ec_mode *mode, uint64_t old) argument
848 ck_ec64_add_mp(struct ck_ec64 *ec, const struct ck_ec_mode *mode, uint64_t delta) argument
860 ck_ec64_add_sp(struct ck_ec64 *ec, const struct ck_ec_mode *mode, uint64_t delta) argument
889 ck_ec64_add(struct ck_ec64 *ec, const struct ck_ec_mode *mode, uint64_t delta) argument
907 ck_ec64_wait(struct ck_ec64 *ec, const struct ck_ec_mode *mode, uint64_t old_value, const struct timespec *deadline) argument
929 ck_ec64_wait_pred(struct ck_ec64 *ec, const struct ck_ec_mode *mode, uint64_t old_value, int (*pred)(const struct ck_ec_wait_state *state, struct timespec *deadline), void *data, const struct timespec *deadline) argument
[all...]
/freebsd-current/crypto/openssl/providers/common/include/prov/
H A Dder_ecx.h47 int ossl_DER_w_algorithmIdentifier_ED25519(WPACKET *pkt, int cont, ECX_KEY *ec);
48 int ossl_DER_w_algorithmIdentifier_ED448(WPACKET *pkt, int cont, ECX_KEY *ec);
49 int ossl_DER_w_algorithmIdentifier_X25519(WPACKET *pkt, int cont, ECX_KEY *ec);
50 int ossl_DER_w_algorithmIdentifier_X448(WPACKET *pkt, int cont, ECX_KEY *ec);
/freebsd-current/bin/pkill/tests/
H A Dpkill-_p_test.sh14 ec=$?
15 case $ec in
H A Dpkill-t_test.sh23 ec=$?
24 case $ec in
35 ec=$?
36 case $ec in
H A Dpkill-_lf_test.sh14 ec=$?
15 case $ec in
30 ec=$?
31 case $ec in
H A Dpkill-_u_test.sh14 ec=$?
15 case $ec in
32 ec=$?
33 case $ec in
H A Dpkill-g_test.sh14 ec=$?
15 case $ec in
31 ec=$?
32 case $ec in
H A Dpkill-s_test.sh14 ec=$?
15 case $ec in
31 ec=$?
32 case $ec in
H A Dpkill-_g_test.sh14 ec=$?
15 case $ec in
32 ec=$?
33 case $ec in
/freebsd-current/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp65 static path __do_absolute(const path& p, path* cwd, error_code* ec) { argument
66 if (ec)
67 ec->clear();
70 *cwd = __current_path(ec);
71 if (ec && *ec)
76 path __absolute(const path& p, error_code* ec) { argument
78 return __do_absolute(p, &cwd, ec);
81 path __canonical(path const& orig_p, error_code* ec) { argument
83 ErrorHandler<path> err("canonical", ec,
104 __copy(const path& from, const path& to, copy_options options, error_code* ec) argument
185 copy_file_impl(FileDescriptor& read_fd, FileDescriptor& write_fd, error_code& ec) argument
262 __copy_file(const path& from, const path& to, copy_options options, error_code* ec) argument
346 __copy_symlink(const path& existing_symlink, const path& new_symlink, error_code* ec) argument
360 __create_directories(const path& p, error_code* ec) argument
393 __create_directory(const path& p, error_code* ec) argument
409 __create_directory(path const& p, path const& attributes, error_code* ec) argument
434 __create_directory_symlink(path const& from, path const& to, error_code* ec) argument
440 __create_hard_link(const path& from, const path& to, error_code* ec) argument
446 __create_symlink(path const& from, path const& to, error_code* ec) argument
452 __current_path(error_code* ec) argument
497 __current_path(const path& p, error_code* ec) argument
503 __equivalent(const path& p1, const path& p2, error_code* ec) argument
518 __file_size(const path& p, error_code* ec) argument
534 __hard_link_count(const path& p, error_code* ec) argument
545 __fs_is_empty(const path& p, error_code* ec) argument
566 __last_write_time(const path& p, error_code* ec) argument
578 __last_write_time(const path& p, file_time_type new_time, error_code* ec) argument
617 __permissions(const path& p, perms prms, perm_options opts, error_code* ec) argument
660 __read_symlink(const path& p, error_code* ec) argument
692 __remove(const path& p, error_code* ec) argument
717 remove_all_impl(path const& p, error_code& ec) argument
740 __remove_all(const path& p, error_code* ec) argument
768 remove_all_impl(int parent_directory, const path& p, error_code& ec) argument
835 __remove_all(const path& p, error_code* ec) argument
846 __rename(const path& from, const path& to, error_code* ec) argument
852 __resize_file(const path& p, uintmax_t size, error_code* ec) argument
858 __space(const path& p, error_code* ec) argument
879 __status(const path& p, error_code* ec) argument
881 __symlink_status(const path& p, error_code* ec) argument
883 __temp_directory_path(error_code* ec) argument
926 __weakly_canonical(const path& p, error_code* ec) argument
[all...]
H A Ddirectory_iterator.cpp42 __dir_stream(const path& root, directory_options opts, error_code& ec) argument
45 ec = make_error_code(errc::no_such_file_or_directory);
50 ec = detail::make_windows_error(GetLastError());
52 if (ignore_permission_denied && ec.value() == static_cast<int>(errc::permission_denied))
53 ec.clear();
57 advance(ec);
68 bool advance(error_code& ec) { argument
92 error_code ec; variable
94 ec = detail::make_windows_error(GetLastError());
96 return ec;
170 directory_iterator(const path& p, error_code* ec, directory_options opts) argument
184 __increment(error_code* ec) argument
210 recursive_directory_iterator(const path& p, directory_options opt, error_code* ec) argument
226 __pop(error_code* ec) argument
243 __increment(error_code* ec) argument
255 __advance(error_code* ec) argument
278 __try_recursion(error_code* ec) argument
[all...]
/freebsd-current/crypto/openssl/crypto/cms/
H A Dcms_enc.c25 BIO *ossl_cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo *ec, argument
32 X509_ALGOR *calg = ec->contentEncryptionAlgorithm;
44 enc = ec->cipher ? 1 : 0;
56 cipher = ec->cipher;
60 if (ec->key != NULL)
61 ec->cipher = NULL;
108 if (ec->taglen > 0
110 ec->taglen, ec->tag) <= 0) {
122 if (!enc || !ec
207 ossl_cms_EncryptedContent_init(CMS_EncryptedContentInfo *ec, const EVP_CIPHER *cipher, const unsigned char *key, size_t keylen, const CMS_CTX *cms_ctx) argument
229 CMS_EncryptedContentInfo *ec; local
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__charconv/
H A Dfrom_chars_result.h26 errc ec; member in struct:from_chars_result
31 _LIBCPP_HIDE_FROM_ABI constexpr explicit operator bool() const noexcept { return ec == errc{}; }
H A Dto_chars_result.h26 errc ec; member in struct:to_chars_result
31 _LIBCPP_HIDE_FROM_ABI constexpr explicit operator bool() const noexcept { return ec == errc{}; }

Completed in 143 milliseconds

1234567891011>>