Home
last modified time | relevance | path

Searched refs:MAXQ (Results 1 – 25 of 37) sorted by relevance

12

/external/libvpx/libvpx/vp9/common/
Dvp9_quant_common.c167 case VPX_BITS_8: return dc_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_dc_quant()
168 case VPX_BITS_10: return dc_qlookup_10[clamp(qindex + delta, 0, MAXQ)]; in vp9_dc_quant()
169 case VPX_BITS_12: return dc_qlookup_12[clamp(qindex + delta, 0, MAXQ)]; in vp9_dc_quant()
176 return dc_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_dc_quant()
183 case VPX_BITS_8: return ac_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_ac_quant()
184 case VPX_BITS_10: return ac_qlookup_10[clamp(qindex + delta, 0, MAXQ)]; in vp9_ac_quant()
185 case VPX_BITS_12: return ac_qlookup_12[clamp(qindex + delta, 0, MAXQ)]; in vp9_ac_quant()
192 return ac_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_ac_quant()
202 return clamp(seg_qindex, 0, MAXQ); in vp9_get_qindex()
Dvp9_quant_common.h22 #define MAXQ 255 macro
23 #define QINDEX_RANGE (MAXQ - MINQ + 1)
Dvp9_seg_common.c20 static const int seg_feature_data_max[SEG_LVL_MAX] = { MAXQ, MAX_LOOP_FILTER, 3,
/external/libaom/libaom/av1/common/
Dquant_common.h26 #define MAXQ 255 macro
27 #define QINDEX_RANGE (MAXQ - MINQ + 1)
Dquant_common.c194 const int q_clamped = clamp(qindex + delta, 0, MAXQ); in av1_dc_quant_QTX()
206 const int q_clamped = clamp(qindex + delta, 0, MAXQ); in av1_ac_quant_QTX()
222 return clamp(seg_qindex, 0, MAXQ); in av1_get_qindex()
Dseg_common.c23 static const int seg_feature_data_max[SEG_LVL_MAX] = { MAXQ,
/external/libvpx/libvpx/vp8/common/
Donyxc_int.h33 #define MAXQ 127 macro
34 #define QINDEX_RANGE (MAXQ + 1)
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_cyclicrefresh.c48 assert(MAXQ <= 255); in vp9_cyclic_refresh_alloc()
49 memset(cr->last_coded_q_map, MAXQ, last_coded_q_map_size); in vp9_cyclic_refresh_alloc()
245 clamp(cm->base_qindex + cr->qindex_delta[mi->segment_id], 0, MAXQ); in vp9_cyclic_refresh_update_sb_postencode()
249 clamp(cm->base_qindex + cr->qindex_delta[mi->segment_id], 0, MAXQ), in vp9_cyclic_refresh_update_sb_postencode()
485 int qp_max_thresh = 117 * MAXQ >> 7; in vp9_cyclic_refresh_update_parameters()
599 memset(cr->last_coded_q_map, MAXQ, in vp9_cyclic_refresh_setup()
646 qindex2 = clamp(cm->base_qindex + cm->y_dc_delta_q + qindex_delta, 0, MAXQ); in vp9_cyclic_refresh_setup()
673 memset(cr->last_coded_q_map, MAXQ, in vp9_cyclic_refresh_reset_resize()
/external/libaom/libaom/av1/encoder/
Daq_cyclicrefresh.c38 assert(MAXQ <= 255); in av1_cyclic_refresh_alloc()
39 memset(cr->last_coded_q_map, MAXQ, last_coded_q_map_size); in av1_cyclic_refresh_alloc()
346 int qp_max_thresh = 118 * MAXQ >> 7; in av1_cyclic_refresh_update_parameters()
426 memset(cr->last_coded_q_map, MAXQ, in av1_cyclic_refresh_setup()
473 0, MAXQ); in av1_cyclic_refresh_setup()
Dsvc_layercontext.c74 assert(MAXQ <= 255); in av1_init_layer_context()
75 memset(lc->last_coded_q_map, MAXQ, last_coded_q_map_size); in av1_init_layer_context()
/external/OpenCL-CTS/test_conformance/SVM/
Dtest_shared_address_space_fine_grain.cpp29 clCommandQueueWrapper queues[MAXQ]; in test_svm_shared_address_space_fine_grain()
Dtest_allocate_shared_buffer.cpp50 clCommandQueueWrapper queues[MAXQ]; in test_svm_allocate_shared_buffer()
Dtest_fine_grain_sync_buffers.cpp53 clCommandQueueWrapper queues[MAXQ]; in test_svm_fine_grain_sync_buffers()
Dtest_pointer_passing.cpp44 clCommandQueueWrapper queues[MAXQ]; in test_svm_pointer_passing()
Dtest_shared_address_space_fine_grain_buffers.cpp70 clCommandQueueWrapper queues[MAXQ]; in test_svm_shared_address_space_fine_grain_buffers()
Dtest_byte_granularity.cpp57 clCommandQueueWrapper queues[MAXQ]; in test_svm_byte_granularity()
Dcommon.h68 #define MAXQ 32 macro
Dtest_set_kernel_exec_info_svm_ptrs.cpp51 clCommandQueueWrapper queues[MAXQ]; in test_svm_set_kernel_exec_info_svm_ptrs()
Dtest_fine_grain_memory_consistency.cpp145 clCommandQueueWrapper queues[MAXQ]; in test_svm_fine_grain_memory_consistency()
Dtest_cross_buffer_pointers.cpp137 clCommandQueueWrapper queues[MAXQ]; in test_svm_cross_buffer_pointers_coarse_grain()
Dtest_shared_sub_buffers.cpp134 clCommandQueueWrapper queues[MAXQ]; in test_svm_shared_sub_buffers()
Dtest_shared_address_space_coarse_grain.cpp162 clCommandQueueWrapper queues[MAXQ]; in shared_address_space_coarse_grain()
Dtest_enqueue_api.cpp76 clCommandQueueWrapper queues[MAXQ]; in test_svm_enqueue_api()
Dtest_migrate.cpp91 clCommandQueueWrapper queues[MAXQ]; in test_svm_migrate()
/external/libvpx/libvpx/vp8/encoder/
Dvp8_quantize.c306 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; in vp8cx_mb_init_quantizer()

12