| /src/lib/libm/src/ |
| s_llrint.c | 8 #define stype double macro
|
| s_llrintf.c | 8 #define stype float macro
|
| s_lrintf.c | 8 #define stype float macro
|
| s_lrintl.c | 10 #define stype long double macro
|
| s_llrintl.c | 11 #define stype long double macro
|
| s_llround.c | 8 #define stype double macro
|
| s_llroundf.c | 8 #define stype float macro
|
| s_llroundl.c | 8 #define stype long double macro
|
| s_lrint.c | 33 #ifndef stype 39 #define stype double macro 49 * significant bits than 'stype'. Hence, we bend over backwards for the 53 fn(stype x)
|
| s_lroundf.c | 8 #define stype float macro
|
| s_lroundl.c | 8 #define stype long double macro
|
| s_lround.c | 34 #ifndef stype 40 #define stype double macro 49 * If stype has more precision than dtype, the endpoints dtype_(min|max) are 51 * from 0. On the other hand, if stype has less precision than dtype, then 56 static const stype dtype_min = DTYPE_MIN - 0.5; 57 static const stype dtype_max = DTYPE_MAX + 0.5; 62 fn(stype x)
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_map.c | 53 seq_t stype; local 56 stype = FL_ISSET(cmdp->iflags, E_C_FORCE) ? SEQ_INPUT : SEQ_COMMAND; 60 if (seq_dump(sp, stype, 1) == 0) 61 msgq(sp, M_INFO, stype == SEQ_INPUT ? 84 cmdp->argv[1]->bp, cmdp->argv[1]->len, stype, 88 sp->gp->scr_fmap(sp, stype, input, cmdp->argv[0]->len, 93 nofunc: if (stype == SEQ_COMMAND && input[1] == '\0') 106 cmdp->argv[1]->bp, cmdp->argv[1]->len, stype, SEQ_USERDEF));
|
| /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-writable/ |
| libctf-errors.c | 15 ctf_id_t itype = 0, stype = 0; local 43 else if ((stype = ctf_add_struct (fp, CTF_ADD_ROOT, "foo")) == CTF_ERR) 45 else if (ctf_add_member (fp, stype, "bar", itype) < 0) 48 if (ctf_member_info (fp, stype, "bar", &mi) < 0) 54 while ((ret = ctf_member_next (fp, stype, &i, NULL, NULL, 0)) >= 0) {
|
| parent-child-dtd-crash-lib.c | 16 ctf_id_t ptype, ftype, stype, foo; local 83 if ((stype = ctf_add_struct_sized (cfp, CTF_ADD_ROOT, "foo", 1024)) == CTF_ERR) 85 if (stype == ftype) 90 if ((stype = ctf_add_union_sized (cfp, CTF_ADD_ROOT, "foo", 1024)) == CTF_ERR) 92 if (stype == ftype) 97 if ((stype = ctf_add_enum (cfp, CTF_ADD_ROOT, "foo")) == CTF_ERR) 99 if (stype == ftype) 112 if ((stype = ctf_add_struct (pfp, CTF_ADD_ROOT, "bar")) == CTF_ERR) 118 if (ctf_add_member_offset (cfp, stype, "member", ptype, 5) == CTF_ERR) 121 if (ctf_add_member_offset (cfp, stype, "xyzzy", ctype, 4) != CTF_ERR [all...] |
| /src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-writable/ |
| libctf-errors.c | 15 ctf_id_t itype = 0, stype = 0; local 43 else if ((stype = ctf_add_struct (fp, CTF_ADD_ROOT, "foo")) == CTF_ERR) 45 else if (ctf_add_member (fp, stype, "bar", itype) < 0) 48 if (ctf_member_info (fp, stype, "bar", &mi) < 0) 54 while ((ret = ctf_member_next (fp, stype, &i, NULL, NULL, 0)) >= 0) {
|
| parent-child-dtd-crash-lib.c | 16 ctf_id_t ptype, ftype, stype, foo; local 83 if ((stype = ctf_add_struct_sized (cfp, CTF_ADD_ROOT, "foo", 1024)) == CTF_ERR) 85 if (stype == ftype) 90 if ((stype = ctf_add_union_sized (cfp, CTF_ADD_ROOT, "foo", 1024)) == CTF_ERR) 92 if (stype == ftype) 97 if ((stype = ctf_add_enum (cfp, CTF_ADD_ROOT, "foo")) == CTF_ERR) 99 if (stype == ftype) 112 if ((stype = ctf_add_struct (pfp, CTF_ADD_ROOT, "bar")) == CTF_ERR) 118 if (ctf_add_member_offset (cfp, stype, "member", ptype, 5) == CTF_ERR) 121 if (ctf_add_member_offset (cfp, stype, "xyzzy", ctype, 4) != CTF_ERR [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_suppressions.cc | 103 static uptr IsSuppressed(const char *stype, const AddressInfo &info, 105 if (suppression_ctx->Match(info.function, stype, sp) || 106 suppression_ctx->Match(info.file, stype, sp) || 107 suppression_ctx->Match(info.module, stype, sp)) { 120 const char *stype = conv(typ); local 121 if (0 == internal_strcmp(stype, kSuppressionNone)) 125 uptr pc = IsSuppressed(stype, frame->info, sp); 129 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) 139 const char *stype = conv(typ); local 140 if (0 == internal_strcmp(stype, kSuppressionNone) [all...] |
| /src/external/bsd/nvi/dist/common/ |
| seq.h | 32 seq_t stype; /* Sequence type. */ member in struct:_seq
|
| /src/external/bsd/ppp/dist/pppd/plugins/pppoe/ |
| if.c | 98 int domain, stype; local 111 stype = SOCK_RAW; 115 stype = SOCK_PACKET; 124 if ((fd = socket(domain, stype, htons(type))) < 0) {
|
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_suppressions.cpp | 96 static uptr IsSuppressed(const char *stype, const AddressInfo &info, 98 if (suppression_ctx->Match(info.function, stype, sp) || 99 suppression_ctx->Match(info.file, stype, sp) || 100 suppression_ctx->Match(info.module, stype, sp)) { 113 const char *stype = conv(typ); local 114 if (0 == internal_strcmp(stype, kSuppressionNone)) 118 uptr pc = IsSuppressed(stype, frame->info, sp); 122 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) 132 const char *stype = conv(typ); local 133 if (0 == internal_strcmp(stype, kSuppressionNone) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_suppressions.cpp | 94 static uptr IsSuppressed(const char *stype, const AddressInfo &info, 96 if (suppression_ctx->Match(info.function, stype, sp) || 97 suppression_ctx->Match(info.file, stype, sp) || 98 suppression_ctx->Match(info.module, stype, sp)) { 111 const char *stype = conv(typ); local 112 if (0 == internal_strcmp(stype, kSuppressionNone)) 116 uptr pc = IsSuppressed(stype, frame->info, sp); 120 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) 130 const char *stype = conv(typ); local 131 if (0 == internal_strcmp(stype, kSuppressionNone) [all...] |
| /src/lib/libc/gen/ |
| popen.c | 100 int stype = flags ? (SOCK_STREAM | SOCK_CLOEXEC) : SOCK_STREAM; local 102 if (socketpair(AF_LOCAL, stype, 0, pdes) < 0)
|
| /src/external/bsd/blocklist/port/ |
| popenve.c | 93 int stype = flags ? (SOCK_STREAM | SOCK_CLOEXEC) : SOCK_STREAM; local 95 if (socketpair(AF_LOCAL, stype, 0, pdes) < 0)
|
| /src/sys/arch/sparc64/dev/ |
| viovar.h | 25 uint8_t stype; member in struct:vio_msg_tag 33 uint8_t stype; member in struct:vio_msg
|