Searched refs:interpolated (Results 1 - 8 of 8) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | vf_lensfun.c | 316 float interpolated, new_x, new_y, d, norm; in distortion_correction_filter_slice() local 334 interpolated = 0.0f; in distortion_correction_filter_slice() 350 interpolated = 0.0f; in distortion_correction_filter_slice() 365 interpolated += thread_data->data_in[(new_x_int + i - 2) * 3 + rgb_index + (new_y_int + j - 2) * thread_data->linesize_in] * d; in distortion_correction_filter_slice() 370 interpolated /= norm; in distortion_correction_filter_slice() 371 thread_data->data_out[x * 3 + rgb_index + y * thread_data->linesize_out] = interpolated < 0.0f ? 0.0f : interpolated > 255.0f ? 255.0f : interpolated; in distortion_correction_filter_slice() 388 interpolated = 0.0f; in distortion_correction_filter_slice() 404 interpolated in distortion_correction_filter_slice() [all...] |
H A D | af_adeclick.c | 35 double *interpolated; member 178 c->interpolated = av_calloc(s->window_size, sizeof(*c->interpolated)); in config_input() 180 !c->index || !c->interpolated || !c->acorrelation || !c->tmp) in config_input() 338 double *auxiliary, double *interpolated) in interpolation() 377 return do_interpolation(c, matrix, vector, nb_errors, interpolated); in interpolation() 494 double *interpolated = c->interpolated; in filter_channel() local 504 nb_errors, c->auxiliary, interpolated); in filter_channel() 512 dst[index[j]] = interpolated[ in filter_channel() 336 interpolation(DeclickChannel *c, const double *src, int ar_order, double *acoefficients, int *index, int nb_errors, double *auxiliary, double *interpolated) interpolation() argument [all...] |
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/effects/ |
H A D | DelayLineEffect.h | 48 // auto interpolated = fracComp * delayLine[index] + (1 - fracComp) * delayLine[index + 1]; in operator ()() 50 float interpolated = fracComp * delayLine[index] + delayLine[index + 1] in operator ()() local 53 prevInterpolated = interpolated; in operator ()() 55 x = interpolated * kFeedForward + kBlend * delayInput; in operator ()()
|
/third_party/vk-gl-cts/modules/internal/ |
H A D | ditFrameworkTests.cpp | 709 TextureLevel interpolated (TextureFormat(TextureFormat::RGBA, TextureFormat::FLOAT), numSamples, width, height); in runCase() 720 clear (interpolated.getAccess(), subCase.varying - Vec4(0.0f, 0.0f, 0.0f, 1.0f)); in runCase() 771 const rr::MultisamplePixelBufferAccess colorAccess = rr::MultisamplePixelBufferAccess::fromMultisampleAccess(interpolated.getAccess()); in runCase() 798 // Verify interpolated values in runCase() 800 TextureLevel resolvedColor (interpolated.getFormat(), width, height); // For debugging in runCase() 803 const ConstPixelBufferAccess interpAccess = interpolated.getAccess(); in runCase() 813 rr::resolveMultisampleBuffer(resolvedColor.getAccess(), rr::MultisampleConstPixelBufferAccess::fromMultisampleAccess(interpolated.getAccess())); in runCase()
|
/third_party/python/Lib/ |
H A D | statistics.py | 553 When the number of data points is even, the median is interpolated by 783 The cut points are linearly interpolated between data points. 800 interpolated = (data[j] * (n - delta) + data[j + 1] * delta) / n 801 result.append(interpolated) 810 interpolated = (data[j - 1] * (n - delta) + data[j] * delta) / n 811 result.append(interpolated)
|
/third_party/ffmpeg/libavcodec/ |
H A D | diracdec.c | 78 int interpolated[3]; /* 1 if hpel[] is valid */ member 360 memset(s->all_frames[i].interpolated, 0, sizeof(s->all_frames[i].interpolated)); in free_sequence_buffers() 1854 if (!ref->interpolated[plane]) { in interpolate_refplane() 1862 ref->interpolated[plane] = 1; in interpolate_refplane() 2277 memset(s->all_frames[i].interpolated, 0, sizeof(s->all_frames[i].interpolated)); in dirac_decode_frame()
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 763 If you want a variable interpolated, you write it the way you would in 803 statement is a string, which is interpolated into the template in 824 C<$more> set in the second fragment will persist and be interpolated 1233 interpolated into the template as if that value had been the return 1236 interpolated into the output of the template in place of the program 1247 interpolated into the template at the place the error occurred, so 1872 interpolated. This is what is known as a `trick'.
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 763 If you want a variable interpolated, you write it the way you would in 803 statement is a string, which is interpolated into the template in 824 C<$more> set in the second fragment will persist and be interpolated 1233 interpolated into the template as if that value had been the return 1236 interpolated into the output of the template in place of the program 1247 interpolated into the template at the place the error occurred, so 1872 interpolated. This is what is known as a `trick'.
|
Completed in 14 milliseconds