Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
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
riscv-gcc-1
Commits
9d70d418
Commit
9d70d418
authored
May 07, 2003
by
Jason Merrill
Committed by
Jason Merrill
May 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/burtle/iterative
From-SVN: r66577
parent
0dfcf38e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
include/ChangeLog
+2
-2
include/hashtab.h
+2
-2
libiberty/ChangeLog
+1
-1
libiberty/hashtab.c
+1
-1
No files found.
include/ChangeLog
View file @
9d70d418
2003-05-07 Jason Merrill <jason@redhat.com>
* hashtab.h (
burtl
e_hash): Prototype.
(
burtl
e_hash_object): New macro.
* hashtab.h (
iterativ
e_hash): Prototype.
(
iterativ
e_hash_object): New macro.
2003-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
...
...
include/hashtab.h
View file @
9d70d418
...
...
@@ -184,9 +184,9 @@ extern htab_eq htab_eq_pointer;
extern
hashval_t
htab_hash_string
PARAMS
((
const
PTR
));
/* An iterative hash function for arbitrary data. */
extern
hashval_t
burtl
e_hash
PARAMS
((
const
PTR
,
size_t
,
hashval_t
));
extern
hashval_t
iterativ
e_hash
PARAMS
((
const
PTR
,
size_t
,
hashval_t
));
/* Shorthand for hashing something with an intrinsic size. */
#define
burtle_hash_object(OB,INIT) burtl
e_hash (&OB, sizeof (OB), INIT)
#define
iterative_hash_object(OB,INIT) iterativ
e_hash (&OB, sizeof (OB), INIT)
#ifdef __cplusplus
}
...
...
libiberty/ChangeLog
View file @
9d70d418
...
...
@@ -5,7 +5,7 @@
2003-05-07 Jason Merrill <jason@redhat.com>
* hashtab.c (
burtl
e_hash): New fn.
* hashtab.c (
iterativ
e_hash): New fn.
* configure.in: Add AC_C_BIGENDIAN_CROSS.
* aclocal.m4: Include accross.m4.
* configure, config.in: Regenerate.
...
...
libiberty/hashtab.c
View file @
9d70d418
...
...
@@ -787,7 +787,7 @@ acceptable. Do NOT use for cryptographic purposes.
--------------------------------------------------------------------
*/
hashval_t
burtl
e_hash
(
k_in
,
length
,
initval
)
hashval_t
iterativ
e_hash
(
k_in
,
length
,
initval
)
const
PTR
k_in
;
/* the key */
register
size_t
length
;
/* the length of the key */
register
hashval_t
initval
;
/* the previous hash, or an arbitrary value */
...
...
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