/third_party/ffmpeg/libpostproc/ |
H A D | postprocess.c | 294 int sums[10]; in doHorizLowPass_C() local 295 sums[0] = 4*first + dst[0] + dst[1] + dst[2] + 4; in doHorizLowPass_C() 296 sums[1] = sums[0] - first + dst[3]; in doHorizLowPass_C() 297 sums[2] = sums[1] - first + dst[4]; in doHorizLowPass_C() 298 sums[3] = sums[2] - first + dst[5]; in doHorizLowPass_C() 299 sums[4] = sums[ in doHorizLowPass_C() 428 int sums[10]; do_a_deblock_C() local [all...] |
H A D | postprocess_template.c | 374 int sums[10]; in doVertLowPass() 375 sums[0] = 4*first + src[l1] + src[l2] + src[l3] + 4; in doVertLowPass() 376 sums[1] = sums[0] - first + src[l4]; in doVertLowPass() 377 sums[2] = sums[1] - first + src[l5]; in doVertLowPass() 378 sums[3] = sums[2] - first + src[l6]; in doVertLowPass() 379 sums[4] = sums[ in doVertLowPass() 2550 int64_t sums[10*8*2]; do_a_deblock() local [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | texcompress_bptc_tmp.h | 1210 int sums[2][4]; in get_rgba_endpoints_unorm() local 1219 memset(sums, 0, sizeof sums); in get_rgba_endpoints_unorm() 1231 sums[endpoint][i] += p[i]; in get_rgba_endpoints_unorm() 1239 sums[endpoint][3] += p[3]; in get_rgba_endpoints_unorm() 1251 (sums[0][i] + sums[1][i]) / (width * height); in get_rgba_endpoints_unorm() 1254 endpoints[0][i] = sums[0][i] / rgb_left_endpoint_count; in get_rgba_endpoints_unorm() 1255 endpoints[1][i] = (sums[1][i] / in get_rgba_endpoints_unorm() 1263 (sums[ in get_rgba_endpoints_unorm() 1514 float sums[2][3]; get_endpoints_float() local [all...] |
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_ssim_init.c | 27 int (*sums)[4], int w); 30 int (*sums)[4], int w);
|
H A D | vf_ssim.asm | 35 cglobal ssim_4x4_line, 6, 8, %1, buf, buf_stride, ref, ref_stride, sums, w, buf_stride3, ref_stride3 37 cglobal ssim_4x4_line, 5, 7, %1, buf, buf_stride, ref, ref_stride, sums, buf_stride3, ref_stride3
|
/third_party/ffmpeg/tests/ |
H A D | tiny_ssim.c | 27 * overlapped 8x8 block sums, rather than the original gaussian weights. 48 int sums[2][4] ) in ssim_4x4x2_core() 66 sums[z][0] = s1; in ssim_4x4x2_core() 67 sums[z][1] = s2; in ssim_4x4x2_core() 68 sums[z][2] = ss; in ssim_4x4x2_core() 69 sums[z][3] = s12; in ssim_4x4x2_core()
|
/third_party/node/deps/v8/tools/ |
H A D | v8_presubmit.py | 175 self.sums = {} 183 self.sums = pickle.load(sums_file) 194 pickle.dump(self.sums, sums_file) 212 if not file in self.sums or self.sums[file] != file_sum: 214 self.sums[file] = file_sum 220 if file in self.sums: 221 self.sums.pop(file)
|
H A D | callstats.py | 432 # Append the sums as single entries to domain. 472 # Print and calculate partial sums, if necessary. 530 sums = parent[key] 532 if i >= len(sums): 533 sums.extend([0] * (i - len(sums) + 1)) 535 sums[i] += item
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_ssim.c | 29 * overlapped 8x8 block sums, rather than the original gaussian weights. 97 int64_t (*sums)[4], int width) in ssim_4x4xn_16bit() 122 sums[z][0] = s1; in ssim_4x4xn_16bit() 123 sums[z][1] = s2; in ssim_4x4xn_16bit() 124 sums[z][2] = ss; in ssim_4x4xn_16bit() 125 sums[z][3] = s12; in ssim_4x4xn_16bit() 133 int (*sums)[4], int width) in ssim_4x4xn_8bit() 153 sums[z][0] = s1; in ssim_4x4xn_8bit() 154 sums[z][1] = s2; in ssim_4x4xn_8bit() 155 sums[ in ssim_4x4xn_8bit() 95 ssim_4x4xn_16bit(const uint8_t *main8, ptrdiff_t main_stride, const uint8_t *ref8, ptrdiff_t ref_stride, int64_t (*sums)[4], int width) ssim_4x4xn_16bit() argument 131 ssim_4x4xn_8bit(const uint8_t *main, ptrdiff_t main_stride, const uint8_t *ref, ptrdiff_t ref_stride, int (*sums)[4], int width) ssim_4x4xn_8bit() argument [all...] |
H A D | ssim.h | 30 int (*sums)[4], int w);
|
/third_party/ffmpeg/libavcodec/ |
H A D | flacenc.c | 585 static int find_optimal_param_exact(uint64_t sums[32][MAX_PARTITIONS], int i, int max_param) in find_optimal_param_exact() argument 592 int64_t bits = sums[k][i]; in find_optimal_param_exact() 603 uint64_t sums[32][MAX_PARTITIONS], in calc_optimal_rice_params() 616 k = find_optimal_param_exact(sums, i, max_param); in calc_optimal_rice_params() 617 all_bits += sums[k][i]; in calc_optimal_rice_params() 619 k = find_optimal_param(sums[0][i], cnt, max_param); in calc_optimal_rice_params() 620 all_bits += rice_encode_count(sums[0][i], cnt, k); in calc_optimal_rice_params() 633 uint64_t sums[32][MAX_PARTITIONS]) in calc_sum_top() 639 /* sums for highest level */ in calc_sum_top() 650 sums[ in calc_sum_top() 602 calc_optimal_rice_params(RiceContext *rc, int porder, uint64_t sums[32][MAX_PARTITIONS], int n, int pred_order, int max_param, int exact) calc_optimal_rice_params() argument 632 calc_sum_top(int pmax, int kmax, const uint32_t *data, int n, int pred_order, uint64_t sums[32][MAX_PARTITIONS]) calc_sum_top() argument 662 calc_sum_next(int level, uint64_t sums[32][MAX_PARTITIONS], int kmax) calc_sum_next() argument 672 calc_rice_params(RiceContext *rc, uint32_t udata[FLAC_MAX_BLOCKSIZE], uint64_t sums[32][MAX_PARTITIONS], int pmin, int pmax, const int32_t *data, int n, int pred_order, int exact) calc_rice_params() argument [all...] |
/third_party/ffmpeg/libswscale/arm/ |
H A D | hscale.S | 60 vpadd.s32 d8, d8, d9 @ horizontal pair adding of the 8x32-bit sums into 4x32-bit (part 1) 61 vpadd.s32 d9, d10, d11 @ horizontal pair adding of the 8x32-bit sums into 4x32-bit (part 2) 62 vpadd.s32 d8, d8, d9 @ horizontal pair adding of the 4x32-bit sums into 2x32-bit
|
/third_party/python/Lib/ |
H A D | trace.py | 247 sums = {} 279 sums[modulename] = n_lines, percent, modulename, filename 282 if summary and sums: 284 for m in sorted(sums): 285 n_lines, percent, modulename, filename = sums[m] 286 print("%5d %3d%% %s (%s)" % sums[m])
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_fs_bank_conflicts.cpp | 157 sums(const vector_type &v) 251 sums(vector_type v) 711 any_conflicts[r] |= sums(conflicts[r].v[s]); in have_any_conflicts() 747 return sums(subs(s_p, s_n)); in delta_conflicts()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | vp8l_enc.c | 246 struct Sum sums[MAX_PALETTE_SIZE]; in PaletteSortModifiedZeng() local 271 // Initialize the sums with the first two remappings and find the best one in PaletteSortModifiedZeng() 272 struct Sum* best_sum = &sums[0]; in PaletteSortModifiedZeng() 277 sums[j].index = i; in PaletteSortModifiedZeng() 278 sums[j].sum = cooccurrence[i * num_colors + remapping[0]] + in PaletteSortModifiedZeng() 280 if (sums[j].sum > best_sum->sum) best_sum = &sums[j]; in PaletteSortModifiedZeng() 301 // Remove best_sum from sums. in PaletteSortModifiedZeng() 302 *best_sum = sums[num_sums - 1]; in PaletteSortModifiedZeng() 304 // Update all the sums an in PaletteSortModifiedZeng() [all...] |
/third_party/jerryscript/tools/runners/ |
H A D | run-benchmarks.sh | 33 run jerry/sunspider/math-partial-sums
|
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/ |
H A D | fuzzer_replayer_test.cpp | 920 OpName %184 "sums"
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
H A D | fuzzer_replayer_test.cpp | 920 OpName %184 "sums"
|
/third_party/spirv-tools/test/fuzz/ |
H A D | fuzzer_replayer_test.cpp | 920 OpName %184 "sums"
|
/third_party/skia/tests/ |
H A D | SkSLInterpreterTest.cpp | 496 "float sums(float a[8]) {\n" in DEF_TEST() 522 sums = SkSL::Program_GetFunction(*program, "sums"), in DEF_TEST() local 588 skvm::Program p = build(sums); in DEF_TEST()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkRayTracingUtil.cpp | 1832 tcu::Vector<VkDeviceSize, 4> sums(0); 1840 if (sums[c] + sizes[c] <= maxBufferSize) 1842 sums[c] += sizes[c]; 1849 sums[c] = 0;
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | hevc_idct.asm | 535 ; %6, %7 - registers for intermidiate sums
|