OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cmpresS
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/main/coregrind/
m_wordfm.c
396
Word
cmpresS
;
399
cmpresS
= kCmp(t->key, k);
400
if (
cmpresS
> 0) t = t->child[0]; else
401
if (
cmpresS
< 0) t = t->child[1]; else
406
Word
cmpresS
; /* signed */
410
cmpresS
= cmp_unsigned_Words( (UWord)t->key, (UWord)k );
411
if (
cmpresS
== 0) return t; /* unlikely ==> predictable */
412
cmpresU = (UWord)
cmpresS
;
433
Word
cmpresS
= kCmp ? kCmp(t->key, key)
435
if (
cmpresS
< 0)
[
all
...]
m_oset.c
792
Word
cmpresS
; /* signed */
809
cmpresS
= (Word)slow_cmp(oset, k, t);
811
cmpresS
= fast_cmp(k, t);
817
if (
cmpresS
< 0) {
cmpresS
= 1; }
818
else if (
cmpresS
> 0) {
cmpresS
= -1; }
820
if (
cmpresS
== 0) {
827
cmpresU = (UWord)
cmpresS
;
Completed in 37 milliseconds