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

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatunditf.c 22 const int aWidth = sizeof a * CHAR_BIT;
28 const int exponent = (aWidth - 1) - __builtin_clzll(a);
floatunsidf.c 24 const int aWidth = sizeof a * CHAR_BIT;
30 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatunsitf.c 22 const int aWidth = sizeof a * CHAR_BIT;
28 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatditf.c 22 const int aWidth = sizeof a * CHAR_BIT;
37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs);
floatsidf.c 24 const int aWidth = sizeof a * CHAR_BIT;
38 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatsisf.c 24 const int aWidth = sizeof a * CHAR_BIT;
38 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatsitf.c 22 const int aWidth = sizeof a * CHAR_BIT;
37 const int exponent = (aWidth - 1) - __builtin_clz(aAbs);
floatunsisf.c 24 const int aWidth = sizeof a * CHAR_BIT;
30 const int exponent = (aWidth - 1) - __builtin_clz(a);

Completed in 18 milliseconds