Home
last modified time | relevance | path

Searched refs:score (Results 1 – 15 of 15) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/
Dmesa_cache_db_multipart.c109 double best_score = 0, score; in mesa_cache_db_multipart_select_victim_part() local
113 score = mesa_cache_db_eviction_score(&db->parts[i]); in mesa_cache_db_multipart_select_victim_part()
114 if (score > best_score) { in mesa_cache_db_multipart_select_victim_part()
115 best_score = score; in mesa_cache_db_multipart_select_victim_part()
/hardware/google/gfxstream/common/etc/
Detc.cpp497 etc1_uint32 score; // Lower is more accurate member
502 if (a->score > b->score) { in take_best()
573 etc1_uint32 score = (etc1_uint32) (6 * square(decodedG - pixelG)); in chooseModifier() local
574 if (score >= bestScore) { in chooseModifier()
578 score += (etc1_uint32) (3 * square(decodedR - pixelR)); in chooseModifier()
579 if (score >= bestScore) { in chooseModifier()
583 score += (etc1_uint32) square(decodedB - pixelB); in chooseModifier()
584 if (score < bestScore) { in chooseModifier()
585 bestScore = score; in chooseModifier()
599 int score = pCompressed->score; in etc_encode_subblock_helper() local
[all …]
/hardware/interfaces/rebootescrow/aidl/default/
DHadamardUtils.cpp107 int32_t score; member
114 CondCopy(static_cast<uint32_t>(dest->score - src.score) >> 31, dest, &src, in CopyWinner()
/hardware/google/aemu/base/
DLayoutResolver.cpp162 double score = in resolveLayout() local
165 if (bestScoreBitSet == -1 || score < bestScore) { in resolveLayout()
167 bestScore = score; in resolveLayout()
/hardware/google/gfxstream/guest/mesa/include/android_stub/system/
Dcamera.h261 int32_t score; member
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/chunkindex/
Dlunr.js2219 score = queryVectors[fieldRef.fieldName].similarity(fieldVector), variable
2223 docMatch.score += score
2228 score: score, property
2240 return b.score - a.score
2599 idf, score, scoreWithPrecision
2608score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.ave…
2609 score *= fieldBoost
2610 score *= docBoost
2611 scoreWithPrecision = Math.round(score * 1000) / 1000
/hardware/interfaces/camera/device/1.0/default/
DCameraDevice.cpp441 hidlMetadata.faces[i].score = metadata->faces[i].score; in sDataCb()
/hardware/qcom/camera/msm8998/
DQCamera_Intf.h955 int8_t score; // score of confidence( 0 -100) member
/hardware/interfaces/camera/device/1.0/
Dtypes.hal213 int32_t score;
/hardware/interfaces/neuralnetworks/1.2/
Dtypes.hal2670 * Greedily selects a subset of bounding boxes in descending order of score.
2673 * the box with maximum score gets selected and removed from the pending set.
2676 * boxes and a specified NMS kernel method. Any boxes with score less
2694 * * 0: A 2-D Tensor of shape [num_rois, num_classes], specifying the score
2724 * score updating phase in soft NMS.
2728 * [num_output_rois], specifying the score of each output box. The boxes
2823 * the score of each anchor with each class. Class 0 for each
2848 * using the highest class score..
2876 * [batches, max_num_detections], specifying the score of each output
3015 * * 0: A 4-D Tensor specifying the score of each anchor at each
[all …]
/hardware/interfaces/neuralnetworks/1.3/
Dtypes.hal2830 * Greedily selects a subset of bounding boxes in descending order of score.
2833 * the box with maximum score gets selected and removed from the pending set.
2836 * boxes and a specified NMS kernel method. Any boxes with score less
2855 * * 0: A 2-D Tensor of shape [num_rois, num_classes], specifying the score
2888 * score updating phase in soft NMS.
2892 * [num_output_rois], specifying the score of each output box. The boxes
2998 * the score of each anchor with each class. Class 0 for each
3023 * using the highest class score..
3051 * [batches, max_num_detections], specifying the score of each output
3196 * * 0: A 4-D Tensor specifying the score of each anchor at each
[all …]
/hardware/qcom/camera/msm8998/QCamera2/stack/common/
Dcam_types.h1373 int8_t score; /* score of confidence (0, -100) */ member
/hardware/qcom/camera/msm8998/QCamera2/HAL/
DQCamera2HWI.cpp9196 faces[i].score = detect_data->faces[i].score; in processFaceDetectionResult()
9223 detect_data->frame_id, i, faces[i].id, faces[i].score, in processFaceDetectionResult()
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dwuffs-v0.3.c16650 uint64_t score = ((uint64_t)(pb * pb)) + ((uint64_t)(pg * pg)) + in wuffs_base__pixel_palette__closest_element() local
16652 if (best_score > score) { in wuffs_base__pixel_palette__closest_element()
16653 best_score = score; in wuffs_base__pixel_palette__closest_element()
/hardware/qcom/camera/msm8998/QCamera2/HAL3/
DQCamera3HWI.cpp7673 faceScores[i] = (uint8_t)faceDetectionInfo->faces[i].score; in translateFromHalMetadata()