Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
33cdac23
Commit
33cdac23
authored
Dec 04, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #255 from orbitcowboy/master
Fixed typos in comments.
parents
3b10b5b6
8ff67ad0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
entry.cpp
src/entry.cpp
+1
-1
lodepng.cpp
src/lodepng.cpp
+5
-5
rtfstyle.h
src/rtfstyle.h
+1
-1
vhdldocgen.cpp
src/vhdldocgen.cpp
+1
-1
No files found.
src/entry.cpp
View file @
33cdac23
...
...
@@ -170,7 +170,7 @@ Entry::Entry(const Entry &e)
anchors
->
append
(
new
SectionInfo
(
*
s
));
}
// deep copy type contraint list
// deep copy type con
s
traint list
if
(
e
.
typeConstr
)
{
typeConstr
=
e
.
typeConstr
->
deepCopy
();
...
...
src/lodepng.cpp
View file @
33cdac23
...
...
@@ -1406,7 +1406,7 @@ static unsigned deflateDynamic(ucvector* out, const unsigned char* data, size_t
for
(
i
=
0
;
i
<
numcodes
;
i
++
)
uivector_push_back
(
&
lldll
,
HuffmanTree_getLength
(
&
codes
,
(
unsigned
)
i
));
for
(
i
=
0
;
i
<
numcodesD
;
i
++
)
uivector_push_back
(
&
lldll
,
HuffmanTree_getLength
(
&
codesD
,
(
unsigned
)
i
));
/*make lldl smaller by using repeat codes 16 (copy length 3-6 times), 17 (3-10 zero
es), 18 (11-138 zeroe
s)*/
/*make lldl smaller by using repeat codes 16 (copy length 3-6 times), 17 (3-10 zero
s), 18 (11-138 zero
s)*/
for
(
i
=
0
;
i
<
(
unsigned
)
lldll
.
size
;
i
++
)
{
unsigned
j
=
0
;
...
...
@@ -2547,7 +2547,7 @@ unsigned LodePNG_convert(unsigned char* out, const unsigned char* in, LodePNG_In
return
0
;
}
/*Pa
eth predicte
r, used by PNG filter type 4*/
/*Pa
th predicto
r, used by PNG filter type 4*/
static
int
paethPredictor
(
int
a
,
int
b
,
int
c
)
{
int
p
=
a
+
b
-
c
;
...
...
@@ -2795,7 +2795,7 @@ static unsigned postProcessScanlines(unsigned char* out, unsigned char* in, cons
{
/*
This function converts the filtered-padded-interlaced data into pure 2D image buffer with the PNG's colortype. Steps:
*) if no Adam7: 1) unfilter 2) remove padding bits (= posible extra bits per scanline if bpp < 8)
*) if no Adam7: 1) unfilter 2) remove padding bits (= pos
s
ible extra bits per scanline if bpp < 8)
*) if adam7: 1) 7x unfilter 2) 7x remove padding bits 3) Adam7_deinterlace
NOTE: the in buffer will be overwritten with intermediate data!
*/
...
...
@@ -3763,7 +3763,7 @@ static unsigned preProcessScanlines(unsigned char** out, size_t* outsize, const
{
/*
This function converts the pure 2D image with the PNG's colortype, into filtered-padded-interlaced data. Steps:
*) if no Adam7: 1) add padding bits (= posible extra bits per scanline if bpp < 8) 2) filter
*) if no Adam7: 1) add padding bits (= pos
s
ible extra bits per scanline if bpp < 8) 2) filter
*) if adam7: 1) Adam7_interlace 2) 7x add padding bits 3) 7x filter
*/
unsigned
bpp
=
LodePNG_InfoColor_getBpp
(
&
infoPng
->
color
);
...
...
@@ -3791,7 +3791,7 @@ static unsigned preProcessScanlines(unsigned char** out, size_t* outsize, const
}
ucvector_cleanup
(
&
padded
);
}
else
error
=
filter
(
*
out
,
in
,
w
,
h
,
&
infoPng
->
color
);
/*we can immediatly filter into the out buffer, no other steps needed*/
else
error
=
filter
(
*
out
,
in
,
w
,
h
,
&
infoPng
->
color
);
/*we can immediat
e
ly filter into the out buffer, no other steps needed*/
}
}
else
/*interlaceMethod is 1 (Adam7)*/
...
...
src/rtfstyle.h
View file @
33cdac23
...
...
@@ -65,7 +65,7 @@ struct StyleData
unsigned
index
;
// index in style-sheet, i.e. number in s-clause
char
*
reference
;
// everything required to apply the style
char
*
definition
;
// aditional tags like \snext and style name
char
*
definition
;
// ad
d
itional tags like \snext and style name
StyleData
(
const
char
*
reference
,
const
char
*
definition
);
~
StyleData
();
...
...
src/vhdldocgen.cpp
View file @
33cdac23
...
...
@@ -737,7 +737,7 @@ MemberDef* VhdlDocGen::findMember(const QCString& className, const QCString& mem
if
(
mdef
)
return
mdef
;
// nothing found so far
// if we are an architecture or package body search in entit
i
y
// if we are an architecture or package body search in entity
if
((
VhdlDocGen
::
VhdlClasses
)
cd
->
protection
()
==
VhdlDocGen
::
ARCHITECTURECLASS
||
(
VhdlDocGen
::
VhdlClasses
)
cd
->
protection
()
==
VhdlDocGen
::
PACKBODYCLASS
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment