Home | History | Annotate | Download | only in src

Lines Matching defs:result

33   int result = strcmp (one->name, two->name);
35 if (result == 0)
37 result = one->type - two->type;
39 if (result == 0)
43 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
45 if (result == 0)
47 result = one->entsize - two->entsize;
49 if (result == 0)
51 result = (one->grp_signature == NULL
57 if (result == 0)
58 result = one->kind - two->kind;
64 return result;