Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Nicholas Nethercote
|
0089711fa7
|
Bug 707865 - Convert nsTArray::SizeOf() to nsTArray::SizeOfExcludingThis(). r=jlebar.
--HG--
extra : rebase_source : d802d58bc7dedda2490878793923adc0ab55f779
|
2011-12-15 14:59:53 -08:00 |
Nicholas Nethercote
|
8ea852b335
|
Bug 705987 - Use mallocSizeOf in the layout memory reporters. r=khuey,bzbarsky
|
2011-12-08 21:01:52 -08:00 |
Nicholas Nethercote
|
c14cf2fc1c
|
Bug 704723 - Add memory reporter for XPConnect. r=mrbkap.
|
2011-12-05 14:24:28 -08:00 |
Nicholas Nethercote
|
6c6258e659
|
Bug 698968 - Add mallocSizeOf functions and start using them. r=jlebar,bhackett,jfkthame, sr=bz.
|
2011-11-27 19:03:14 -08:00 |
Ehsan Akhgari
|
92064e6d3f
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
Justin Lebar
|
975f0d3e57
|
Bug 682437 - Add memory reporter for History::mObservers. r=bz
--HG--
extra : rebase_source : f280a6beefd32319816ff8720f7bf65c04343b1e
|
2011-09-14 17:37:45 -07:00 |
Michael Wu
|
d2b70213ac
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
Josh Aas
|
ffb320ce01
|
Port xpcom to 64-bit Mac OS X, part 1. b=478687 r=mstange sr=bsmedberg
|
2009-03-06 12:32:57 -06:00 |
L. David Baron
|
aefe9fb399
|
Add ability to mark JSDHashTable/PLDHashTable as immutable and thus prevent RECURSION_LEVEL assertions from firing due to lookups racing on multiple threads. (Bug 469004) r=brendan,mrbkap
|
2009-01-10 08:28:16 -08:00 |
L. David Baron
|
8705905e9b
|
Synchronize pldhash with recent changes to jsdhash by rerunning through plify_jsdhash.sed.
|
2009-01-10 08:28:16 -08:00 |
Arpad Borsos
|
c72ef7d248
|
Bug 456388 - Remove PR_STATIC_CALLBACK and PR_CALLBACK(_DECL) from the tree; r+sr=brendan
|
2008-10-10 17:04:34 +02:00 |
dbaron@dbaron.org
|
d98d9fdec5
|
Remove unused getKey callback from PLDHashTableOps/JSDHashTableOps. b=374906 r=bsmedberg
|
2007-03-27 08:33:38 -07:00 |
brendan%mozilla.org
|
2e4976944e
|
Add macrology for presetting double hashtable capacity to avoid growth given a known initial population (356116, r=dbaron).
|
2007-01-10 22:11:34 +00:00 |
brendan%mozilla.org
|
21fcbfb1ba
|
Back out last checkin.
|
2006-12-05 15:46:19 +00:00 |
brendan%mozilla.org
|
029e2627fd
|
Add JS_DHASH_{,DEFAULT_}CAPACITY macros for realloc-free init (356116, r/sr=mrbkap+shaver/dbaron).
|
2006-12-05 00:52:05 +00:00 |
dbaron%dbaron.org
|
c6e5aec25e
|
Make JSDHashTable/PLDHashTable assert when ops or enumeration callbacks mutate the table. b=334180 r=brendan
|
2006-04-18 18:30:50 +00:00 |
mark%moxienet.com
|
18681d809c
|
323337 Use fastcall on Mac OS X x86: __attribute__(regparm(3)). r=josh
|
2006-01-23 20:11:08 +00:00 |
bsmedberg%covad.net
|
ff089bf9db
|
Bug 313309 part 1 - use __fastcall for NS_FASTCALL on windows, r=shaver
|
2005-11-10 15:09:38 +00:00 |
bsmedberg%covad.net
|
f0d2e05a7e
|
Bug 299992 (re-landing) - Move pldhash etc. into the xpcom glue, and centralize various instances of nsINIParser in the xpcom glue. Some files were cvscopied from xpcom/ds to xpcom/glue r=brendan/darin
|
2005-08-15 18:29:55 +00:00 |
bsmedberg%covad.net
|
8992fb4c7d
|
Backout bug 299992 - too much odd platform-specific bustage
|
2005-08-11 22:07:08 +00:00 |
bsmedberg%covad.net
|
9d2986bf10
|
Bug 299992 - Two additional (forgotten) files - these are moved from xpcom/ds to xpcom/glue
|
2005-08-11 20:47:03 +00:00 |