index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
setobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Mirco-optimizations to reduce register spills and reloads observed on CLANG a...
Raymond Hettinger
2015-02-09
1
-2/+4
*
Minor code clean up.
Raymond Hettinger
2015-02-04
1
-2/+2
*
Issue 23359: Reduce size of code in set_lookkey. Only do linear probes when ...
Raymond Hettinger
2015-02-03
1
-33/+0
*
Issue 23359: Tighten inner search loop for sets (don't and-mask every entry l...
Raymond Hettinger
2015-02-02
1
-24/+53
*
Keep the definition of i consistent between set_lookkey() and set_insert_clea...
Raymond Hettinger
2015-01-31
1
-4/+4
*
Minor tweak to improve code clarity.
Raymond Hettinger
2015-01-31
1
-1/+1
*
Fix typo in a comment.
Raymond Hettinger
2015-01-31
1
-1/+1
*
Revert unintended part of the commit (the key==dummy test wasn't supposed to ...
Raymond Hettinger
2015-01-27
1
-6/+2
*
Remove unneeded dummy test from the set search loop (when the hashes match we...
Raymond Hettinger
2015-01-27
1
-4/+11
*
Issue #23269: Tighten search_loop in set_insert_clean()
Raymond Hettinger
2015-01-27
1
-6/+17
*
Set the hash values of dummy entries to -1. Improves quality of entry->hash ...
Raymond Hettinger
2015-01-26
1
-0/+2
*
Update out-of-date comments.
Raymond Hettinger
2015-01-26
1
-5/+3
*
Issue #23119: Simplify setobject by inlining the special case for unicode eq...
Raymond Hettinger
2015-01-26
1
-70/+11
*
A hybrid of and-masking and a conditional-set-to-zero produce even faster sea...
Raymond Hettinger
2015-01-19
1
-1/+2
*
Update copyright for 2015 updates.
Raymond Hettinger
2015-01-19
1
-1/+1
*
Clean-up, simplify, and slightly speed-up bounds logic in set_pop().
Raymond Hettinger
2015-01-19
1
-10/+3
*
Issue 23261: Clean-up the hack to store the set.pop() search finger in a has...
Raymond Hettinger
2015-01-18
1
-21/+12
*
Small clean-up. Factor-out common code for add, contains, and discard functi...
Raymond Hettinger
2014-12-27
1
-43/+27
*
Issue #23107: Tighten-up loops in setobject.c
Raymond Hettinger
2014-12-27
1
-55/+46
*
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
Victor Stinner
2014-08-15
1
-1/+1
*
Add development comments to setobject.c
Raymond Hettinger
2014-05-18
1
-8/+15
*
Fix typo in comment.
Eric V. Smith
2014-01-14
1
-1/+1
*
Add comments to frozenset_hash().
Raymond Hettinger
2014-01-05
1
-1/+14
*
Minor code clean-up. Keep the C-API all in one section.
Raymond Hettinger
2013-12-15
1
-3/+3
*
Note that LINEAR_PROBES can be set to zero.
Raymond Hettinger
2013-09-22
1
-1/+1
*
Minor beautification. Put updates and declarations in a more logical order.
Raymond Hettinger
2013-09-21
1
-2/+2
*
When LINEAR_PROBES=0, let the compiler remove the dead code on its own.
Raymond Hettinger
2013-09-21
1
-12/+0
*
Make the linear probe sequence clearer.
Raymond Hettinger
2013-09-21
1
-8/+4
*
Issue 18771: Make it possible to set the number linear probes at compile-time.
Raymond Hettinger
2013-09-15
1
-5/+19
*
Put the defines in the logical section and fix indentation.
Raymond Hettinger
2013-09-08
1
-8/+8
*
Minor code beautification.
Raymond Hettinger
2013-09-08
1
-6/+5
*
Improve code clarity by removing two unattractive macros.
Raymond Hettinger
2013-09-08
1
-16/+18
*
Remove the freelist scheme for setobjects.
Raymond Hettinger
2013-09-08
1
-47/+8
*
Small rearrangement to bring together the three functions for probing the has...
Raymond Hettinger
2013-09-08
1
-32/+39
*
Move the overview comment to the top of the file.
Raymond Hettinger
2013-09-07
1
-22/+20
*
Minor touchups.
Raymond Hettinger
2013-09-02
1
-4/+6
*
Factor-out the common code for setting a KeyError.
Raymond Hettinger
2013-09-02
1
-15/+1
*
Instead of XORed indicies, switch to a hybrid of linear probing and open addr...
Raymond Hettinger
2013-09-02
1
-91/+68
*
Update copyright.
Raymond Hettinger
2013-09-01
1
-1/+1
*
Further reduce the cost of hash collisions by inspecting an additional nearby...
Raymond Hettinger
2013-09-01
1
-4/+39
*
Tighten-up the lookkey() logic and beautify the code a bit.
Raymond Hettinger
2013-08-29
1
-88/+43
*
Issue #18772: fix the gdb plugin after the set implementation changes
Antoine Pitrou
2013-08-24
1
-8/+2
*
Add the same dummy type that is used in dictionaries.
Raymond Hettinger
2013-08-23
1
-15/+49
*
Issue 18797: Remove unneeded refcount adjustments for dummy objects.
Raymond Hettinger
2013-08-22
1
-16/+6
*
Hoist the global dummy lookup out of the inner loop for set_merge().
Raymond Hettinger
2013-08-21
1
-1/+3
*
Remove a redundant hash table probe (this was artifact from an earlier draft ...
Raymond Hettinger
2013-08-21
1
-11/+0
*
Issue 18772: Restore set dummy object back to unicode and restore the identi...
Raymond Hettinger
2013-08-21
1
-4/+4
*
Issue18771: Reduce the cost of hash collisions for set objects.
Raymond Hettinger
2013-08-19
1
-20/+86
*
Remove the else-clause because the conditions are no longer mutually exclusive.
Raymond Hettinger
2013-08-17
1
-1/+1
*
Use a known unique object for the dummy entry.
Raymond Hettinger
2013-08-17
1
-25/+20
[next]