Home | History | Annotate | Download | only in gio

Lines Matching defs:med

411   int min, max, med;
423 med = min + (max - min) / 2;
424 if (attrs[med].attribute == attribute)
426 min = med;
429 else if (attrs[med].attribute < attribute)
430 min = med + 1;
431 else /* attrs[med].attribute > attribute */
432 max = med;