HomeSort by relevance Sort by last modified time
    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 868 Word cmpresS; /* signed */
884 cmpresS = (Word)slow_cmp(oset, k, t);
886 cmpresS = fast_cmp(k, t);
892 if (cmpresS < 0) { cmpresS = 1; }
893 else if (cmpresS > 0) { cmpresS = -1; }
895 if (cmpresS == 0) {
902 cmpresU = (UWord)cmpresS;

Completed in 46 milliseconds