Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
95571be5
Commit
95571be5
authored
May 04, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes to the ABC data-structures to allow for larger designs.
parent
14f76195
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/base/ver/verStream.c
+4
-4
src/misc/nm/nmInt.h
+2
-2
No files found.
src/base/ver/verStream.c
View file @
95571be5
...
...
@@ -38,12 +38,12 @@ struct Ver_Stream_t_
// the input file
char
*
pFileName
;
// the input file name
FILE
*
pFile
;
// the input file pointer
i
nt
nFileSize
;
// the total number of bytes in the file
i
nt
nFileRead
;
// the number of bytes currently read from file
i
nt
nLineCounter
;
// the counter of lines processed
i
word
nFileSize
;
// the total number of bytes in the file
i
word
nFileRead
;
// the number of bytes currently read from file
i
word
nLineCounter
;
// the counter of lines processed
// temporary storage for data
iword
nBufferSize
;
// the size of the buffer
char
*
pBuffer
;
// the buffer
int
nBufferSize
;
// the size of the buffer
char
*
pBufferCur
;
// the current reading position
char
*
pBufferEnd
;
// the first position not used by currently loaded data
char
*
pBufferStop
;
// the position where loading new data will be done
...
...
src/misc/nm/nmInt.h
View file @
95571be5
...
...
@@ -46,8 +46,8 @@ ABC_NAMESPACE_HEADER_START
typedef
struct
Nm_Entry_t_
Nm_Entry_t
;
struct
Nm_Entry_t_
{
unsigned
Type
:
4
;
// object type
unsigned
ObjId
:
28
;
// object ID
unsigned
Type
;
// object type
unsigned
ObjId
;
// object ID
Nm_Entry_t
*
pNextI2N
;
// the next entry in the ID hash table
Nm_Entry_t
*
pNextN2I
;
// the next entry in the name hash table
Nm_Entry_t
*
pNameSake
;
// the next entry with the same name
...
...
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