Lines Matching defs:start
28 * slices (start, start + count) of the index buffer at drawtime. As this can
30 * the key (start, count) to the value (min, max). In practice, mesa's hash
44 panfrost_minmax_cache_get(struct panfrost_minmax_cache *cache, unsigned start, unsigned count,
47 uint64_t ht_key = (((uint64_t)count) << 32) | start;
68 panfrost_minmax_cache_add(struct panfrost_minmax_cache *cache, unsigned start, unsigned count,
71 uint64_t ht_key = (((uint64_t)count) << 32) | start;
109 uint32_t start = key & 0xffffffff;
113 bool invalid = MAX2(transfer->box.x, start) < MIN2(transfer->box.x + transfer->box.width, start + count);