Lines Matching refs:high
52 xcb_atom_t low, xcb_atom_t high );
203 if (dash == range) { /* -high */
205 } else { /* low-[high] */
215 if (*dash) { /* [low]-high */
221 } else { /* number (low == high) */
239 xcb_atom_t low, high;
241 mask = parse_range (range, &low, &high);
242 list_atoms (c, format, mask, low, high);
281 list_atoms(xcb_connection_t *c, const char *format, int mask, xcb_atom_t low, xcb_atom_t high)
289 high = UINT32_MAX;
292 long count = (high - low < ATOMS_PER_BATCH - 1) ?
293 (high - low + 1) : ATOMS_PER_BATCH;
295 if (high - low < UINT32_MAX && low == high - count + 1) {