index
:
libsigrokdecode.git
floppy
master
libsigrokdecode
ejona86@gmail.com
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
type_decoder.c
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'type_decoder.c')
0 files changed, 0 insertions, 0 deletions
y performance impact.
2010-12-27
Ignore logs folder
Eric Anderson
2010-12-27
Display benchmark numbers in submit_to_web_batch
Tim Hatch
2010-12-27
Support byte swapping on os-x
Tim Hatch
2010-12-27
lcs_upper_bound's second sum is required all the time and try to handle endians
Eric Anderson
2010-12-26
Only do second sum if it can make a difference
Eric Anderson
2010-12-26
Auto-choose at runtime to do second sum in lcs_upper_bound
Eric Anderson This has no impact for non-DO_SECOND_SUM, but puts DO_SECOND_SUM less than a percent behind.
2010-12-26
Simple movement of return calculation in lcs_upper_bound
Eric Anderson This increased performance of the non-DO_SECOND_SUM code a _lot_ for something so small.
2010-12-26
Only add one to lcs_upper_bound or don't do the second sum.
Eric Anderson The DO_SECOND_SUM define has reduced false positives, but without it has a reasonable amount less work. Thus, you must empirically test to find which has the best boost. Right now, DO_SECOND_SUM is faster.
2010-12-26
Add lcs_upper_bound check before lcs_32_rough for added speed
Eric Anderson