/third_party/ffmpeg/tests/ |
D | tiny_ssim.c | 142 uint64_t ssd = 0; in ssd_plane() local 147 ssd += d*d; in ssd_plane() 149 return ssd; in ssd_plane() 152 static double ssd_to_psnr( uint64_t ssd, uint64_t denom ) in ssd_to_psnr() argument 154 return -10*log((double)ssd/(denom*255*255))/log(10); in ssd_to_psnr() 162 static void print_results(uint64_t ssd[3], double ssim[3], int frames, int w, int h) in print_results() 165 ssd_to_psnr( ssd[0], (uint64_t)frames*w*h ), in print_results() 166 ssd_to_psnr( ssd[1], (uint64_t)frames*w*h/4 ), in print_results() 167 ssd_to_psnr( ssd[2], (uint64_t)frames*w*h/4 ), in print_results() 168 ssd_to_psnr( ssd[0] + ssd[1] + ssd[2], (uint64_t)frames*w*h*3/2 ) ); in print_results() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | g722enc.c | 184 nodes[i][0]->ssd = 0; in g722_encode_trellis() 214 uint32_t ssd; in g722_encode_trellis() local 226 ssd = cur_node->ssd + dec_diff*dec_diff;\ in g722_encode_trellis() 229 if (ssd < cur_node->ssd)\ in g722_encode_trellis() 240 if (ssd >= nodes_next[index][pos]->ssd)\ in g722_encode_trellis() 245 node->ssd = ssd;\ in g722_encode_trellis() 254 if (nodes_next[index][parent]->ssd <= ssd)\ in g722_encode_trellis() 274 uint32_t ssd; in g722_encode_trellis() local 289 if (nodes[j][0]->ssd > (1 << 16)) { in g722_encode_trellis() 291 nodes[j][k]->ssd -= nodes[j][0]->ssd; in g722_encode_trellis() [all …]
|
D | adpcmenc.c | 61 uint32_t ssd; member 369 nodes[0]->ssd = 0; in adpcm_compress_trellis() 414 uint32_t ssd;\ in adpcm_compress_trellis() 420 ssd = nodes[j]->ssd + d*(unsigned)d;\ in adpcm_compress_trellis() 425 if (ssd < nodes[j]->ssd)\ in adpcm_compress_trellis() 448 if (ssd > nodes_next[pos]->ssd)\ in adpcm_compress_trellis() 460 u->ssd = ssd;\ in adpcm_compress_trellis() 470 if (nodes_next[parent]->ssd <= ssd)\ in adpcm_compress_trellis() 521 if (nodes[0]->ssd > (1 << 28)) { in adpcm_compress_trellis() 523 nodes[j]->ssd -= nodes[0]->ssd; in adpcm_compress_trellis() [all …]
|
D | g722.h | 57 uint32_t ssd; member
|
D | dnxhdenc.h | 42 int ssd; member
|
D | dnxhdenc.c | 837 int ssd = 0; in dnxhd_calc_bits_thread() local 869 ssd += dnxhd_ssd_block(block, src_block); in dnxhd_calc_bits_thread() 872 ctx->mb_rc[(qscale * ctx->m.mb_num) + mb].ssd = ssd; in dnxhd_calc_bits_thread() 1035 ((unsigned) ctx->mb_rc[i].ssd << LAMBDA_FRAC_BITS); in dnxhd_encode_rdo() 1213 delta_bits ? ((ctx->mb_rc[rc].ssd - in dnxhd_encode_fast() 1214 ctx->mb_rc[rc + ctx->m.mb_num].ssd) * 100) / in dnxhd_encode_fast()
|
/third_party/openGLES/extensions/AMD/ |
D | AMD_sample_positions.txt | 114 abs(x0-x1) >= ssd and abs(y0-y1) >= ssd, 116 where ssd is the float value returned when querying SUBSAMPLE_DISTANCE_AMD. 186 is discretized based on the value of SUBSAMPLE_DISTANCE_AMD. Let ssd be the 188 infer the subpixilization to be 1/ssd+1. For example, if ssd = 0.06667 193 subpixel. A coordinate c will map to the greatest multiple of ssd that 195 and (x1, y1), if abs(x1-x0) < ssd and abs(y1-y0) < ssd, then both points 199 be sample positions and ssd = 0.06667. Both the x-coordinate values 0.201 206 is greater than ssd, that is 0.3-0.201 > 0.06667.
|
D | AMD_framebuffer_sample_positions.txt | 143 abs(x0 - x1) >= ssd and abs(y0 - y1) >= ssd, 145 where ssd is the float value returned when querying SUBSAMPLE_DISTANCE_AMD. 291 Let ssd be the float value returned when SUBSAMPLE_DISTANCE_AMD is 292 queried, then one can infer the subpixilization to be 1/ssd+1. For 293 example, if ssd = 0.06667 then the pixel is subdivided into 297 subpixel. A coordinate c will map to the greatest multiple of ssd that 299 (x0, y0) and (x1, y1), if abs(x1-x0) < ssd and abs(y1-y0) < ssd, then 305 b = (0.25, 0.5) be sample positions and ssd = 0.06667. Both the 313 ssd, that is 0.3-0.201 > 0.06667.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | AMD_sample_positions.txt | 114 abs(x0-x1) >= ssd and abs(y0-y1) >= ssd, 116 where ssd is the float value returned when querying SUBSAMPLE_DISTANCE_AMD. 186 is discretized based on the value of SUBSAMPLE_DISTANCE_AMD. Let ssd be the 188 infer the subpixilization to be 1/ssd+1. For example, if ssd = 0.06667 193 subpixel. A coordinate c will map to the greatest multiple of ssd that 195 and (x1, y1), if abs(x1-x0) < ssd and abs(y1-y0) < ssd, then both points 199 be sample positions and ssd = 0.06667. Both the x-coordinate values 0.201 206 is greater than ssd, that is 0.3-0.201 > 0.06667.
|
D | AMD_framebuffer_sample_positions.txt | 143 abs(x0 - x1) >= ssd and abs(y0 - y1) >= ssd, 145 where ssd is the float value returned when querying SUBSAMPLE_DISTANCE_AMD. 291 Let ssd be the float value returned when SUBSAMPLE_DISTANCE_AMD is 292 queried, then one can infer the subpixilization to be 1/ssd+1. For 293 example, if ssd = 0.06667 then the pixel is subdivided into 297 subpixel. A coordinate c will map to the greatest multiple of ssd that 299 (x0, y0) and (x1, y1), if abs(x1-x0) < ssd and abs(y1-y0) < ssd, then 305 b = (0.25, 0.5) be sample positions and ssd = 0.06667. Both the 313 ssd, that is 0.3-0.201 > 0.06667.
|
/third_party/libexif/m4m/ |
D | gp-config-msg.m4 | 76 ssd="$(basename "$sd")" 78 _subdirs="$ssd"; 80 _subdirs="$_subdirs $ssd"
|
/third_party/icu/icu4c/source/test/fuzzer/ |
D | uloc_canonicalize_fuzzer_seed_corpus.txt | 29 sr-sr-u-z2r-4su-nms-5rsu-mns-6um-s5su-msu-ins1-7rzx-ianu-ssd-ss5r-d0r-U22su-n5sx-lvar-5su-ssu-nax-l… 30 HR-u-roc85Y-4xU-d0r-U22x-lvariant-ims-0d0U22-js17zr-rsm-u56su-csu-ins1-ins17Rz-zax-ianu-ssd-d0U22-j…
|
D | uloc_get_name_fuzzer_seed_corpus.txt | 29 sr-sr-u-z2r-4su-nms-5rsu-mns-6um-s5su-msu-ins1-7rzx-ianu-ssd-ss5r-d0r-U22su-n5sx-lvar-5su-ssu-nax-l… 30 HR-u-roc85Y-4xU-d0r-U22x-lvariant-ims-0d0U22-js17zr-rsm-u56su-csu-ins1-ins17Rz-zax-ianu-ssd-d0U22-j…
|
D | uloc_open_keywords_fuzzer_seed_corpus.txt | 29 sr-sr-u-z2r-4su-nms-5rsu-mns-6um-s5su-msu-ins1-7rzx-ianu-ssd-ss5r-d0r-U22su-n5sx-lvar-5su-ssu-nax-l… 30 HR-u-roc85Y-4xU-d0r-U22x-lvariant-ims-0d0U22-js17zr-rsm-u56su-csu-ins1-ins17Rz-zax-ianu-ssd-d0U22-j…
|
D | uloc_is_right_to_left_fuzzer_seed_corpus.txt | 29 sr-sr-u-z2r-4su-nms-5rsu-mns-6um-s5su-msu-ins1-7rzx-ianu-ssd-ss5r-d0r-U22su-n5sx-lvar-5su-ssu-nax-l… 30 HR-u-roc85Y-4xU-d0r-U22x-lvariant-ims-0d0U22-js17zr-rsm-u56su-csu-ins1-ins17Rz-zax-ianu-ssd-d0U22-j…
|
D | uloc_for_language_tag_fuzzer_seed_corpus.txt | 29 sr-sr-u-z2r-4su-nms-5rsu-mns-6um-s5su-msu-ins1-7rzx-ianu-ssd-ss5r-d0r-U22su-n5sx-lvar-5su-ssu-nax-l… 30 HR-u-roc85Y-4xU-d0r-U22x-lvariant-ims-0d0U22-js17zr-rsm-u56su-csu-ins1-ins17Rz-zax-ianu-ssd-d0U22-j…
|
/third_party/ffmpeg/libswscale/tests/ |
D | swscale.c | 62 uint64_t ssd = 0; in getSSD() local 67 ssd += d * d; in getSSD() 70 return ssd; in getSSD()
|
/third_party/skia/third_party/externals/icu/source/data/misc/ |
D | likelySubtags.txt | 1135 ssd{"ssd_Latn_ZZ"}
|
D | langInfo.txt | 1373 "ssd","Latn","ZZ",
|
/third_party/icu/icu4c/source/data/misc/ |
D | likelySubtags.txt | 1152 ssd{"ssd_Latn_ZZ"}
|
D | langInfo.txt | 1394 "ssd","Latn","ZZ",
|
/third_party/FreeBSD/ |
D | UPDATING | 1583 Crucial has firmware http://www.crucial.com/usa/en/support-ssd-firmware
|
/third_party/lame/ |
D | ChangeLog | 6382 Replaced X9 by the former X10 (ssd).
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 57871 bool ssd; member
|