/external/libtextclassifier/utils/sentencepiece/ |
D | encoder.cc | 30 std::vector<SegmentationEntry> segmentation( in Encode() local 35 if (i > 0 && segmentation[i].previous_pos < 0) { in Encode() 43 const float unknown_penalty = segmentation[i].score + unknown_score_; in Encode() 44 if (segmentation[pos].previous_pos < 0 || in Encode() 45 segmentation[pos].score < unknown_penalty) { in Encode() 47 if (segmentation[i].piece_id == unknown_code_) { in Encode() 48 segmentation[pos] = {/*score=*/unknown_penalty, in Encode() 49 /*previous_pos=*/segmentation[i].previous_pos, in Encode() 51 /*num_pieces=*/segmentation[i].num_pieces}; in Encode() 53 segmentation[pos] = {/*score=*/unknown_penalty, in Encode() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_segmentation.h | 21 void vp9_enable_segmentation(struct segmentation *seg); 22 void vp9_disable_segmentation(struct segmentation *seg); 24 void vp9_disable_segfeature(struct segmentation *seg, int segment_id, 26 void vp9_clear_segdata(struct segmentation *seg, int segment_id, 29 void vp9_psnr_aq_mode_setup(struct segmentation *seg); 41 void vp9_set_segment_data(struct segmentation *seg, signed char *feature_data, 46 void vp9_reset_segment_features(struct segmentation *seg);
|
D | vp9_segmentation.c | 21 void vp9_enable_segmentation(struct segmentation *seg) { in vp9_enable_segmentation() 27 void vp9_disable_segmentation(struct segmentation *seg) { in vp9_disable_segmentation() 33 void vp9_set_segment_data(struct segmentation *seg, signed char *feature_data, in vp9_set_segment_data() 39 void vp9_disable_segfeature(struct segmentation *seg, int segment_id, in vp9_disable_segfeature() 44 void vp9_clear_segdata(struct segmentation *seg, int segment_id, in vp9_clear_segdata() 49 void vp9_psnr_aq_mode_setup(struct segmentation *seg) { in vp9_psnr_aq_mode_setup() 202 struct segmentation *seg = &cm->seg; in vp9_choose_segmap_coding_method() 277 void vp9_reset_segment_features(struct segmentation *seg) { in vp9_reset_segment_features()
|
D | vp9_aq_360.c | 41 struct segmentation *seg = &cm->seg; in vp9_360aq_frame_setup()
|
/external/libaom/libaom/av1/common/ |
D | seg_common.h | 39 struct segmentation { struct 62 static INLINE int segfeature_active(const struct segmentation *seg, in segfeature_active() argument 68 static INLINE void segfeatures_copy(struct segmentation *dst, in segfeatures_copy() 69 const struct segmentation *src) { in segfeatures_copy() 81 void av1_clearall_segfeatures(struct segmentation *seg); 83 void av1_enable_segfeature(struct segmentation *seg, int segment_id, 86 void calculate_segdata(struct segmentation *seg); 92 void av1_set_segdata(struct segmentation *seg, int segment_id, 95 static INLINE int get_segdata(const struct segmentation *seg, int segment_id, in get_segdata()
|
D | seg_common.c | 37 void av1_clearall_segfeatures(struct segmentation *seg) { in av1_clearall_segfeatures() 42 void calculate_segdata(struct segmentation *seg) { in calculate_segdata() 55 void av1_enable_segfeature(struct segmentation *seg, int segment_id, in av1_enable_segfeature() 79 void av1_set_segdata(struct segmentation *seg, int segment_id, in av1_set_segdata()
|
D | quant_common.h | 46 int av1_get_qindex(const struct segmentation *seg, int segment_id,
|
/external/v4l2_codec2/vda/ |
D | vp9_parser.cc | 565 const Vp9SegmentationParams& segmentation = context_.segmentation(); in GetQIndex() local 567 if (segmentation.FeatureEnabled(segid, in GetQIndex() 570 segmentation.FeatureData(segid, Vp9SegmentationParams::SEG_LVL_ALT_Q); in GetQIndex() 571 size_t q_index = segmentation.abs_or_delta_update in GetQIndex() 583 Vp9SegmentationParams& segmentation = context_.segmentation_; in SetupSegmentationDequant() local 592 if (segmentation.enabled) { in SetupSegmentationDequant() 595 segmentation.y_dequant[i][0] = in SetupSegmentationDequant() 597 segmentation.y_dequant[i][1] = in SetupSegmentationDequant() 599 segmentation.uv_dequant[i][0] = in SetupSegmentationDequant() 601 segmentation.uv_dequant[i][1] = in SetupSegmentationDequant() [all …]
|
D | vp9_uncompressed_header_parser.cc | 818 Vp9SegmentationParams& segmentation = context_->segmentation_; in ReadSegmentationParams() local 819 segmentation.update_map = false; in ReadSegmentationParams() 820 segmentation.update_data = false; in ReadSegmentationParams() 822 segmentation.enabled = reader_.ReadBool(); in ReadSegmentationParams() 823 if (!segmentation.enabled) in ReadSegmentationParams() 826 segmentation.update_map = reader_.ReadBool(); in ReadSegmentationParams() 827 if (segmentation.update_map) { in ReadSegmentationParams() 828 for (auto& tree_prob : segmentation.tree_probs) { in ReadSegmentationParams() 832 segmentation.temporal_update = reader_.ReadBool(); in ReadSegmentationParams() 833 for (auto& pred_prob : segmentation.pred_probs) { in ReadSegmentationParams() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_seg_common.h | 37 struct segmentation { struct 52 static INLINE int segfeature_active(const struct segmentation *seg, in segfeature_active() argument 58 void vp9_clearall_segfeatures(struct segmentation *seg); 60 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, 67 void vp9_set_segdata(struct segmentation *seg, int segment_id, 70 static INLINE int get_segdata(const struct segmentation *seg, int segment_id, in get_segdata()
|
D | vp9_seg_common.c | 28 void vp9_clearall_segfeatures(struct segmentation *seg) { in vp9_clearall_segfeatures() 34 void vp9_enable_segfeature(struct segmentation *seg, int segment_id, in vp9_enable_segfeature() 47 void vp9_set_segdata(struct segmentation *seg, int segment_id, in vp9_set_segdata()
|
D | vp9_quant_common.h | 29 int vp9_get_qindex(const struct segmentation *seg, int segment_id,
|
/external/libaom/libaom/av1/encoder/ |
D | segmentation.h | 22 void av1_enable_segmentation(struct segmentation *seg); 23 void av1_disable_segmentation(struct segmentation *seg); 25 void av1_disable_segfeature(struct segmentation *seg, int segment_id, 27 void av1_clear_segdata(struct segmentation *seg, int segment_id,
|
D | segmentation.c | 22 void av1_enable_segmentation(struct segmentation *seg) { in av1_enable_segmentation() 29 void av1_disable_segmentation(struct segmentation *seg) { in av1_disable_segmentation() 36 void av1_disable_segfeature(struct segmentation *seg, int segment_id, in av1_disable_segfeature() 41 void av1_clear_segdata(struct segmentation *seg, int segment_id, in av1_clear_segdata() 171 struct segmentation *seg = &cm->seg; in av1_choose_segmap_coding_method() 237 struct segmentation *seg = &cm->seg; in av1_reset_segment_features()
|
D | tokenize.h | 63 static INLINE int av1_get_tx_eob(const struct segmentation *seg, int segment_id, in av1_get_tx_eob()
|
/external/tensorflow/tensorflow/lite/g3doc/models/segmentation/ |
D | overview.md | 3 <img src="../images/segmentation.png" class="attempt-right" /> 7 _DeepLab_ is a state-of-art deep learning model for semantic image segmentation, 16 Semantic image segmentation predicts whether each pixel of an image is 28 …pLabv3 to include a simple yet effective decoder module to refine the segmentation results especia… 35 <img alt="Animation showing image segmentation" src="images/segmentation.gif" /> 37 ## Read more about segmentation 40 …<li><a href="https://ai.googleblog.com/2018/03/semantic-image-segmentation-with.html">Semantic Ima…
|
/external/libvpx/libvpx/test/ |
D | test-data.sha1 | 60 17fbfe2fea70f6e2f3fa6ca4efaae6c0b03b5f02 *vp80-03-segmentation-01.ivf 61 3c3600dbbcde08e20d54c66fe3b7eadd4f09bdbb *vp80-03-segmentation-02.ivf 62 c156778d5340967d4b369c490848076e92f1f875 *vp80-03-segmentation-03.ivf 63 d25dcff6c60e87a1af70945b8911b6b4998533b0 *vp80-03-segmentation-04.ivf 64 362baba2ce454c9db21218f35e81c27a5ed0b730 *vp80-03-segmentation-1401.ivf 65 d223ae7ee748ce07e74c4679bfd219e84aa9f4b0 *vp80-03-segmentation-1403.ivf 66 033adf7f3a13836a3f1cffcb87c1972900f2b5c6 *vp80-03-segmentation-1407.ivf 67 4d51dfbf9f3e2c590ec99d1d6f59dd731d04375f *vp80-03-segmentation-1408.ivf 68 f37a62b197c2600d75e0ccfbb31b60efdedac251 *vp80-03-segmentation-1409.ivf 69 eb25bd7bfba5b2f6935018a930f42d123b1e7fcd *vp80-03-segmentation-1410.ivf [all …]
|
D | test-data.mk | 83 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-01.ivf 84 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-01.ivf.md5 85 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-02.ivf 86 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-02.ivf.md5 87 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-03.ivf 88 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-03.ivf.md5 89 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-04.ivf 90 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-04.ivf.md5 91 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-1401.ivf 92 LIBVPX_TEST_DATA-$(CONFIG_VP8_DECODER) += vp80-03-segmentation-1401.ivf.md5 [all …]
|
/external/syzkaller/pkg/report/testdata/gvisor/report/ |
D | 12 | 1 TITLE: SIGSEGV: segmentation violation 3 SIGSEGV: segmentation violation
|
/external/harfbuzz_ng/ |
D | TODO | 20 - Add segmentation API
|
/external/llvm/lib/Target/ARM/ |
D | Android.bp | 9 // b/31559947, b/31938382 clang-tidy segmentation fault.
|
/external/llvm/lib/Target/X86/ |
D | Android.bp | 9 // b/31559947, b/31938382 clang-tidy segmentation fault.
|
/external/libvpx/libvpx/vp8/ |
D | vp8cx.mk | 64 VP8_CX_SRCS-yes += encoder/segmentation.c 65 VP8_CX_SRCS-yes += encoder/segmentation.h
|
/external/syzkaller/pkg/report/testdata/linux/report/ |
D | 143 | 4 INIT: PANIC: segmentation violation! sleeping for 30 seconds.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/X86/ |
D | debug-info-fileinfo.test | 2 # doesn't cause a segmentation fault in llvm-objdump.
|