HomeSort by: relevance | last modified time | path
    Searched defs:exc (Results 1 - 20 of 20) sorted by relevancy

  /src/lib/libm/src/
k_standard.c 86 struct exception exc; local
97 exc.arg1 = x;
98 exc.arg2 = y;
103 exc.type = DOMAIN;
104 exc.name = type < 100 ? "acos" : "acosf";
105 exc.retval = zero;
107 exc.retval = zero/zero;
109 } else if (!matherr(&exc)) {
119 exc.type = DOMAIN;
120 exc.name = type < 100 ? "asin" : "asinf"
    [all...]
  /src/sys/arch/sandpoint/stand/altboot/
exception.c 56 uint8_t *exc; local
60 for (exc = (uint8_t *)0x100; exc <= (uint8_t *)0x1400; exc += 0x100)
61 memcpy(exc, trap, trap_end - trap);
  /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
unwind-cxx.h 105 __cxa_exception exc; member in struct:__cxxabiv1::__cxa_refcounted_exception
212 __get_exception_header_from_ue (_Unwind_Exception *exc)
214 return reinterpret_cast<__cxa_exception *>(exc + 1) - 1;
227 __get_refcounted_exception_header_from_ue (_Unwind_Exception *exc)
229 return reinterpret_cast<__cxa_refcounted_exception *>(exc + 1) - 1;
233 __get_dependent_exception_from_ue (_Unwind_Exception *exc)
235 return reinterpret_cast<__cxa_dependent_exception *>(exc + 1) - 1;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
unwind-cxx.h 105 __cxa_exception exc; member in struct:__cxxabiv1::__cxa_refcounted_exception
212 __get_exception_header_from_ue (_Unwind_Exception *exc)
214 return reinterpret_cast<__cxa_exception *>(exc + 1) - 1;
227 __get_refcounted_exception_header_from_ue (_Unwind_Exception *exc)
229 return reinterpret_cast<__cxa_refcounted_exception *>(exc + 1) - 1;
233 __get_dependent_exception_from_ue (_Unwind_Exception *exc)
235 return reinterpret_cast<__cxa_dependent_exception *>(exc + 1) - 1;
  /src/sys/arch/powerpc/oea/
oea_machdep.c 149 uintptr_t exc, exc_base; local
210 for (exc = exc_base; exc <= exc_base + EXC_LAST; exc += 0x100) {
211 switch (exc - exc_base) {
214 memcpy((void *)exc, trapcode, size);
225 memcpy((void *)exc, sctrap, size);
229 memcpy((void *)exc, alitrap, size);
235 memcpy((void *)exc, dsi601trap, size);
241 memcpy((void *)exc, alitrap, size)
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/lib/
s_cb.c 995 SSL_EXCERT *exc = arg; local
1009 if (exc == NULL)
1016 while (exc->next != NULL)
1017 exc = exc->next;
1021 while (exc != NULL) {
1023 rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
1025 X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0
1059 SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert"); local
1095 SSL_EXCERT *exc = *pexc; local
1135 SSL_EXCERT *exc = *pexc; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/lib/
s_cb.c 927 SSL_EXCERT *exc = arg; local
941 if (exc == NULL)
948 while (exc->next != NULL)
949 exc = exc->next;
953 while (exc != NULL) {
955 rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
957 X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0
991 SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert"); local
1028 SSL_EXCERT *exc = *pexc; local
1068 SSL_EXCERT *exc = *pexc; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_cb.c 898 SSL_EXCERT *exc = arg; local
911 if (exc == NULL)
918 while (exc->next != NULL)
919 exc = exc->next;
923 while (exc != NULL) {
925 rv = SSL_check_chain(ssl, exc->cert, exc->key, exc->chain);
927 X509_NAME_print_ex(bio_err, X509_get_subject_name(exc->cert), 0
961 SSL_EXCERT *exc = app_malloc(sizeof(*exc), "prepend cert"); local
998 SSL_EXCERT *exc = *pexc; local
1038 SSL_EXCERT *exc = *pexc; local
    [all...]
s_client.c 891 SSL_EXCERT *exc = NULL; local
1156 if (!args_excert(o, &exc))
1711 if (!load_excert(&exc))
1873 if (exc != NULL)
1874 ssl_ctx_set_excert(ctx, exc);
3170 ssl_excert_free(exc);
s_server.c 990 SSL_EXCERT *exc = NULL; local
1297 if (!args_excert(o, &exc))
1669 if (!load_excert(&exc))
1837 if (exc != NULL)
1838 ssl_ctx_set_excert(ctx, exc);
1932 if (exc != NULL)
1933 ssl_ctx_set_excert(ctx2, exc);
2197 ssl_excert_free(exc);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
pr10770.c 301 struct _Unwind_Exception *exc = malloc (sizeof (*exc)); local
302 memset (&exc->exception_class, 0, sizeof (exc->exception_class));
303 exc->exception_cleanup = 0;
306 _Unwind_ForcedUnwind (exc, force_unwind_stop, 0);
308 _Unwind_SjLj_ForcedUnwind (exc, force_unwind_stop, 0);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
pr10770.c 301 struct _Unwind_Exception *exc = malloc (sizeof (*exc)); local
302 memset (&exc->exception_class, 0, sizeof (exc->exception_class));
303 exc->exception_cleanup = 0;
306 _Unwind_ForcedUnwind (exc, force_unwind_stop, 0);
308 _Unwind_SjLj_ForcedUnwind (exc, force_unwind_stop, 0);
  /src/external/gpl3/gdb.old/dist/gdb/
gnu-nat.c 147 struct exc_state exc; /* The exception that caused us to return. */
325 else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
643 inf->wait.exc.handler = MACH_PORT_NULL;
644 inf->wait.exc.reply = MACH_PORT_NULL;
673 if (inf->wait.exc.handler != MACH_PORT_NULL)
675 mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
676 inf->wait.exc.handler = MACH_PORT_NULL;
678 if (inf->wait.exc.reply != MACH_PORT_NULL)
680 mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
681 inf->wait.exc.reply = MACH_PORT_NULL
146 struct exc_state exc; \/* The exception that caused us to return. *\/ member in struct:inf_wait
    [all...]
ada-lang.c 12226 struct value *exc = parse_and_eval (expr);
12227 set_internalvar (var, exc);
12208 struct value *exc = parse_and_eval (expr); local
  /src/external/gpl3/gdb/dist/gdb/
gnu-nat.c 147 struct exc_state exc; /* The exception that caused us to return. */
325 else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
643 inf->wait.exc.handler = MACH_PORT_NULL;
644 inf->wait.exc.reply = MACH_PORT_NULL;
673 if (inf->wait.exc.handler != MACH_PORT_NULL)
675 mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
676 inf->wait.exc.handler = MACH_PORT_NULL;
678 if (inf->wait.exc.reply != MACH_PORT_NULL)
680 mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
681 inf->wait.exc.reply = MACH_PORT_NULL
146 struct exc_state exc; \/* The exception that caused us to return. *\/ member in struct:inf_wait
    [all...]
ada-lang.c 12237 struct value *exc = parse_and_eval (expr);
12238 set_internalvar (var, exc);
12219 struct value *exc = parse_and_eval (expr); local
  /src/crypto/external/apache2/openssl/dist/apps/
s_server.c 1116 SSL_EXCERT *exc = NULL; local
1454 if (!args_excert(o, &exc))
1911 if (!load_excert(&exc))
2068 if (exc != NULL)
2069 ssl_ctx_set_excert(ctx, exc);
2178 if (exc != NULL)
2179 ssl_ctx_set_excert(ctx2, exc);
2473 ssl_excert_free(exc);
s_client.c 938 SSL_EXCERT *exc = NULL; local
1225 if (!args_excert(o, &exc))
1865 if (!load_excert(&exc))
2048 if (exc != NULL)
2049 ssl_ctx_set_excert(ctx, exc);
3408 ssl_excert_free(exc);
  /src/crypto/external/bsd/openssl/dist/apps/
s_client.c 791 SSL_EXCERT *exc = NULL; local
1066 if (!args_excert(o, &exc))
1660 if (!load_excert(&exc))
1838 if (exc != NULL)
1839 ssl_ctx_set_excert(ctx, exc);
3114 ssl_excert_free(exc);
s_server.c 983 SSL_EXCERT *exc = NULL; local
1306 if (!args_excert(o, &exc))
1727 if (!load_excert(&exc))
1885 if (exc != NULL)
1886 ssl_ctx_set_excert(ctx, exc);
1989 if (exc != NULL)
1990 ssl_ctx_set_excert(ctx2, exc);
2265 ssl_excert_free(exc);

Completed in 94 milliseconds