index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libcxx
/
include
/
random
Commit message (
Expand
)
Author
Age
Files
Lines
*
[libc++] Cleanup and enable multiple warnings.
Eric Fiselier
2019-12-12
1
-0
/
+2
*
[libc++] Fix potential OOB in poisson_distribution
Louis Dionne
2019-11-07
1
-21
/
+24
*
[libc++] Explicitly cast in generate_canonical
Louis Dionne
2019-08-20
1
-1
/
+1
*
[NFC][libcxx] Remove trailing whitespace
Louis Dionne
2019-05-29
1
-8
/
+8
*
Update more file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback
Hubert Tong
2018-08-16
1
-2
/
+2
*
Change an internal table of constants for the poisson distribution from
Marshall Clow
2018-01-16
1
-1
/
+1
*
Revert 313789 because gcc doesn't like it
Marshall Clow
2017-09-20
1
-4
/
+4
*
Mark the __eval methods on independent_bits_engine (and __independent_bits_en...
Marshall Clow
2017-09-20
1
-4
/
+4
*
mark mersenne_twister_engine<>::seed(result_type __sd) with _LIBCPP_DISABLE_U...
Marshall Clow
2017-09-11
1
-0
/
+1
*
[Libc++] Use #pragma push_macro/pop_macro to better handle min/max on Windows
Eric Fiselier
2017-05-31
1
-2
/
+6
*
Remove uses of _UI because Windows is evil and tchar.h #define's it
Eric Fiselier
2017-05-31
1
-109
/
+109
*
Fix lgamma_r linking errors on Windows. It appears the normal lgamma function...
Eric Fiselier
2017-05-06
1
-4
/
+14
*
Use lgamma_r instead of lgamma in binomial_distribution, because freakin' POS...
Marshall Clow
2017-05-04
1
-4
/
+8
*
Cleanup _LIBCPP_HAS_NO_<c++11-feature> macros in the numeric tests and headers
Eric Fiselier
2017-04-19
1
-28
/
+28
*
[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS
Eric Fiselier
2017-01-04
1
-48
/
+48
*
fix sign comparison warnings
Eric Fiselier
2016-12-24
1
-1
/
+2
*
Cleanup: move visibility/linkage attributes to the first declaration.
Evgeniy Stepanov
2015-11-07
1
-7
/
+8
*
Remove unused typedefs in random and regex
Eric Fiselier
2015-07-18
1
-5
/
+0
*
Add support for arc4random() to random_device.
Ed Schouten
2015-03-10
1
-2
/
+2
*
Get libc++ building on Sun Solaris. Patch from C Bergstrom.
Eric Fiselier
2015-01-23
1
-2
/
+2
*
libc++: add NaCl and PNaCl support for std::random_device
JF Bastien
2014-12-01
1
-2
/
+2
*
Fix PR#20843: binomial_distribution<unsigned> is broken. Add test to ensure t...
Marshall Clow
2014-09-17
1
-1
/
+4
*
Mark seed_seq default constructor and size() as noexcept. This is implied, bu...
Marshall Clow
2013-10-23
1
-2
/
+2
*
patch by Yaron: Uses rand_s() from stdlib.h (when building for Windows)
Marshall Clow
2013-10-09
1
-0
/
+2
*
Xing Xue: port to IBM XLC++/AIX.
Howard Hinnant
2013-08-14
1
-1
/
+1
*
Nico Rieck: this patch series fixes visibility issues on Windows as explaine...
Howard Hinnant
2013-08-12
1
-48
/
+48
*
move __save_flags from <random> to <ios> in preparation for reuse; no functio...
Marshall Clow
2013-07-09
1
-27
/
+0
*
Neglected to remove a debugging comment from last commit.
Howard Hinnant
2013-05-21
1
-1
/
+1
*
Fix a couple of bugs in linear_congruential_engine::seed. Regression test ad...
Howard Hinnant
2013-05-21
1
-3
/
+3
*
No functionality change at this time. I've split _LIBCPP_VISIBLE up into two...
Howard Hinnant
2013-03-06
1
-49
/
+49
*
Zhang Xiongpang: Add definitions for const data members. Fixes http://llvm....
Howard Hinnant
2012-12-12
1
-0
/
+122
*
Rename uses of _ and __ because these are getting stepped on by macros from o...
Howard Hinnant
2012-10-30
1
-48
/
+48
*
Dimitry Andric: many visibility fixes. Howard: Much appreciated. Can you ...
Howard Hinnant
2012-09-14
1
-3
/
+6
*
noexcept applied to <random>.
Howard Hinnant
2012-07-20
1
-8
/
+8
*
Update <random> with constexpr support. Patch contributed by Jonathan Sauer.
Howard Hinnant
2012-04-02
1
-86
/
+103
*
This is an initial commit of constexpr support as proposed by Richard Smith. ...
Howard Hinnant
2012-04-02
1
-2
/
+2
*
Quash a whole bunch of warnings
Howard Hinnant
2011-12-01
1
-10
/
+15
*
Further macro protection by replacing _[A-Z] with _[A-Z]p
Howard Hinnant
2011-11-29
1
-291
/
+291
*
Add protection from min/max macros
Howard Hinnant
2011-11-29
1
-0
/
+2
*
Windows support by Ruben Van Boxem.
Howard Hinnant
2011-10-17
1
-0
/
+2
*
Fix needle-in-haystack bug found by Walter Brown
Howard Hinnant
2011-08-15
1
-1
/
+4
*
Fixed PR10574: http://llvm.org/bugs/show_bug.cgi?id=10574
Howard Hinnant
2011-08-12
1
-0
/
+22
*
_STD -> _VSTD to avoid macro clash on windows
Howard Hinnant
2011-06-30
1
-66
/
+66
*
Think-o in poisson_distribution at mean == 10
Howard Hinnant
2011-04-14
1
-1
/
+1
*
Fix bug in Sseq constraints found by Seth Cantrell
Howard Hinnant
2011-04-11
1
-12
/
+22
*
LWG 1522
Howard Hinnant
2010-11-18
1
-4
/
+4
*
LWG 1439
Howard Hinnant
2010-11-18
1
-31
/
+26
*
license change
Howard Hinnant
2010-11-16
1
-2
/
+2
*
Patch by Marshall Clow to make the assignment operators of piecewise_constant...
Howard Hinnant
2010-10-13
1
-1
/
+38
[next]