Lines Matching defs:count
88 * the "right shift count >= width of type" warning when that quantity is
286 drm_intel_gem_estimate_batch_space(drm_intel_bo ** bo_array, int count);
289 drm_intel_gem_compute_batch_space(drm_intel_bo ** bo_array, int count);
1347 DBG("bo freed with non-zero map-count %d\n", bo_gem->map_count);
2806 * If the count is greater than the number of available regs, we'll have
2812 drm_intel_gem_total_fences(drm_intel_bo ** bo_array, int count)
2817 for (i = 0; i < count; i++) {
2850 * for a collection of buffers. This may double-count some buffers.
2853 drm_intel_gem_estimate_batch_space(drm_intel_bo **bo_array, int count)
2858 for (i = 0; i < count; i++) {
2872 drm_intel_gem_compute_batch_space(drm_intel_bo **bo_array, int count)
2877 for (i = 0; i < count; i++) {
2880 * accurate count back for its reloc_tree size (since nothing
2895 for (i = 0; i < count; i++)
2917 drm_intel_gem_check_aperture_space(drm_intel_bo **bo_array, int count)
2927 total_fences = drm_intel_gem_total_fences(bo_array, count);
2932 total = drm_intel_gem_estimate_batch_space(bo_array, count);
2935 total = drm_intel_gem_compute_batch_space(bo_array, count);
3340 * \param count is the number of elements in the \c annotations array.
3341 * If \c count is zero, then \c annotations will not be dereferenced.
3348 * default state (no annotations), call this function with a \c count
3353 unsigned count)