HomeSort by: relevance | last modified time | path
    Searched defs:stype (Results 1 - 25 of 40) sorted by relevancy

1 2

  /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_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_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_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)
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/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 in function:__tsan::IsSuppressed
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 in function:__tsan::IsSuppressed
140 if (0 == internal_strcmp(stype, kSuppressionNone)
    [all...]

Completed in 30 milliseconds

1 2