Home
last modified time | relevance | path

Searched refs:max_order (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/pipebuffer/
Dpb_slab.c193 unsigned min_order, unsigned max_order, in pb_slabs_init() argument
203 assert(min_order <= max_order); in pb_slabs_init()
204 assert(max_order < sizeof(unsigned) * 8 - 1); in pb_slabs_init()
207 slabs->num_orders = max_order - min_order + 1; in pb_slabs_init()
Dpb_slab.h145 unsigned min_order, unsigned max_order,
/external/mesa3d/src/gallium/winsys/amdgpu/drm/
Damdgpu_winsys.c437 unsigned max_order = MIN2(min_order + num_slab_orders_per_allocator, in amdgpu_winsys_create() local
441 min_order, max_order, in amdgpu_winsys_create()
454 min_order, max_order, in amdgpu_winsys_create()
465 min_slab_order = max_order + 1; in amdgpu_winsys_create()
/external/flac/src/libFLAC/include/private/
Dlpc.h131 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], uint32_t *max_order, FLAC__real lp…
259 uint32_t FLAC__lpc_compute_best_order(const double lpc_error[], uint32_t max_order, uint32_t total_…
/external/flac/src/libFLAC/
Dlpc.c122 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], uint32_t *max_order, FLAC__real lp… in FLAC__lpc_compute_lp_coefficients() argument
127 FLAC__ASSERT(0 != max_order); in FLAC__lpc_compute_lp_coefficients()
128 FLAC__ASSERT(0 < *max_order); in FLAC__lpc_compute_lp_coefficients()
129 FLAC__ASSERT(*max_order <= FLAC__MAX_LPC_ORDER); in FLAC__lpc_compute_lp_coefficients()
134 for(i = 0; i < *max_order; i++) { in FLAC__lpc_compute_lp_coefficients()
160 *max_order = i+1; in FLAC__lpc_compute_lp_coefficients()
1333 uint32_t FLAC__lpc_compute_best_order(const double lpc_error[], uint32_t max_order, uint32_t total_… in FLAC__lpc_compute_best_order() argument
1338 FLAC__ASSERT(max_order > 0); in FLAC__lpc_compute_best_order()
1346 for(indx = 0, order = 1; indx < max_order; indx++, order++) { in FLAC__lpc_compute_best_order()