Searched refs:weight (Results 1 - 25 of 25) sorted by relevance

/hardware/ti/omap4-aah/camera/
H A DCameraHalUtilClasses.cpp152 ssize_t weight)
156 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) {
160 if ( ( CameraArea::WEIGHT_MIN > weight ) || ( CameraArea::WEIGHT_MAX < weight ) ) {
161 CAMHAL_LOGEB("Camera area weight is invalid %d", weight);
210 ssize_t top, left, bottom, right, weight; local
282 CAMHAL_LOGEA("Parsing of the weight area coordinate failed!");
288 weight = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
298 ret = checkArea(top, left, bottom, right, weight);
148 checkArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, ssize_t weight) argument
[all...]
/hardware/ti/omap4xxx/camera/
H A DCameraHalUtilClasses.cpp154 ssize_t weight)
158 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) {
162 if ( ( CameraArea::WEIGHT_MIN > weight ) || ( CameraArea::WEIGHT_MAX < weight ) ) {
163 CAMHAL_LOGEB("Camera area weight is invalid %d", weight);
212 ssize_t top, left, bottom, right, weight; local
284 CAMHAL_LOGEA("Parsing of the weight area coordinate failed!");
290 weight = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
300 ret = checkArea(top, left, bottom, right, weight);
150 checkArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, ssize_t weight) argument
[all...]
/hardware/invensense/6515/libsensors_iio/software/core/mpl/
H A Dquat_accuracy_monitor.h39 void set_accuracy_weight(enum accuracy_signal_type_e type, int weight);
/hardware/invensense/65xx/libsensors_iio/software/core/mpl/
H A Dquat_accuracy_monitor.h39 void set_accuracy_weight(enum accuracy_signal_type_e type, int weight);
/hardware/bsp/intel/peripheral/libupm/doxy/node/generators/yuidoc/tmpl/assets/css/
H A Dmain.css66 font-weight: bold;
88 font-weight: normal;
152 dt { font-weight: bold; }
179 font-weight: bold;
208 .toc li { font-weight: bold; }
209 .toc li li { font-weight: normal; }
242 font-weight: bold;
337 font-weight: bold;
344 font-weight: normal;
399 font-weight
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_mcomp.h37 const int *mvjcost, int *mvcost[2], int weight);
H A Dvp9_ssim.c97 int lumamask, double *weight) {
115 *weight = 1;
96 vp9_calc_ssim(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest, int lumamask, double *weight) argument
H A Dvp9_onyx_if.c69 double *weight);
3268 double frame_ssim2 = 0, weight = 0; local
3284 frame_ssim2 = vp9_calc_ssim(orig, recon, 1, &weight);
3286 cpi->summed_quality += frame_ssim2 * weight;
3287 cpi->summed_weights += weight;
3289 frame_ssim2 = vp9_calc_ssim(orig, &cm->post_proc_buffer, 1, &weight);
3291 cpi->summedp_quality += frame_ssim2 * weight;
3292 cpi->summedp_weights += weight;
H A Dvp9_mcomp.c75 const int *mvjcost, int *mvcost[2], int weight) {
78 return ROUND_POWER_OF_TWO(mv_cost(&diff, mvjcost, mvcost) * weight, 7);
74 vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost, int *mvcost[2], int weight) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dssim.c179 double *weight
199 *weight = 1;
H A Dfirstpass.c321 /* Loop throught the Y plane raw examining levels and creating a weight
797 double weight = 0.0; local
804 weight = simple_weight(cpi->Source);
807 if (weight < 0.1)
808 weight = 0.1;
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
H A Donyx_if.c81 double *weight
5304 double weight = 0; local
5332 &cm->post_proc_buffer, 1, &weight);
5334 cpi->summed_quality += frame_ssim2 * weight;
5335 cpi->summed_weights += weight;
5351 cpi->sum_ssim[i] += frame_ssim2 * weight;
5352 cpi->sum_weights[i] += weight;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
H A Dtemporal_filter_apply_sse2.asm63 ; dup the filter weight and store for later
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
H A Dvp9_temporal_filter_apply_sse2.asm63 ; dup the filter weight and store for later
/hardware/intel/img/psb_video/src/
H A Dtng_hostheader.h63 IMG_INT32 weight[3][2]; member in struct:__anon1499
H A Dtng_hostheader.c2895 SlHParams.luma_weight_l0[0] = pWeightedSetup ? pWeightedSetup->weight[0][0] : 0;
2898 SlHParams.chromaB_weight_l0[0] = pWeightedSetup ? pWeightedSetup->weight[1][0] : 0;
2900 SlHParams.chromaR_weight_l0[0] = pWeightedSetup ? pWeightedSetup->weight[2][0] : 0;
2903 SlHParams.luma_weight_l0[1] = pWeightedSetup ? pWeightedSetup->weight[0][1] : 0;
2906 SlHParams.chromaB_weight_l0[1] = pWeightedSetup ? pWeightedSetup->weight[1][1] : 0;
2908 SlHParams.chromaR_weight_l0[1] = pWeightedSetup ? pWeightedSetup->weight[2][1] : 0;
/hardware/ti/omap4-aah/camera/inc/
H A DCameraHal.h193 size_t weight) : mTop(top),
197 mWeight(weight) {}
232 ssize_t weight);
189 CameraArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, size_t weight) argument
/hardware/ti/omap4xxx/camera/inc/
H A DCameraHal.h137 size_t weight) : mTop(top),
141 mWeight(weight) {}
176 ssize_t weight);
133 CameraArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, size_t weight) argument
/hardware/qcom/camera/QCamera2/HAL3/
H A DQCamera3HWI.h159 static void convertToRegions(cam_rect_t rect, int32_t* region, int weight);
H A DQCamera3HWI.cpp5098 convertToRegions(hAeRegions->rect, aeRegions, hAeRegions->weight);
5134 convertToRegions(hAfRegions->rect, afRegions, hAfRegions->weight);
5750 * @weight : if we are converting from cam_area_t, weight is valid
5751 * else weight = -1
5755 int32_t *region, int weight)
5761 if (weight > -1) {
5762 region[4] = weight;
5774 * @weight : if we are converting from cam_area_t, weight i
5754 convertToRegions(cam_rect_t rect, int32_t *region, int weight) argument
[all...]
/hardware/qcom/camera/
H A DQCamera_Intf.h795 int weight[MAX_ROI]; member in struct:__anon2740
/hardware/qcom/camera/QCamera2/stack/common/
H A Dcam_types.h868 int32_t weight; /* weight of the area, valid for focusing/metering areas */ member in struct:__anon2339
1024 int32_t weight[MAX_ROI]; member in struct:__anon2364
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMX3A.cpp587 size_t top, left, width, height, weight; local
696 size_t top, left, width, height, weight; local
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
H A DOMX3A.cpp781 size_t top, left, width, height, weight; local
890 size_t top, left, width, height, weight; local
/hardware/qcom/camera/QCamera2/HAL/
H A DQCameraParameters.cpp8623 areas[0].weight == 0) {
8651 af_roi_value.weight[i] = areas[i].weight;
8712 areas[0].weight == 0) {
11622 pAreas[index].weight = values[4];
11651 areas[0].weight == 0) {
11681 // weight should be within (1, 1000)
11682 if (areas[i].weight < 1 || areas[i].weight > 1000) {

Completed in 775 milliseconds