HomeSort by relevance Sort by last modified time
    Searched refs:x_data (Results 1 - 9 of 9) sorted by null

  /frameworks/av/media/libeffects/loudness/dsp/core/
basic-inl.h 27 int SearchIndex(const T x_data[],
35 if (x_data[i] > x) {
basic.h 37 int SearchIndex(const T x_data[],
interpolator_base.h 37 // InterpolatorSplines<float> interp(x_data, y_data, data_length);
56 // x_data: [(data_length)x1] x-axis coordinates (searching axis)
60 bool Initialize(const T *x_data, const T *y_data, int data_length);
63 // x_data: x-axis coordinates (searching axis)
66 bool Initialize(const vector<T> &x_data, const vector<T> &y_data);
69 // x_data[i] = x_start_offset + i * x_sampling_interval
75 // x_data[i] = x_start_offset + i * x_sampling_interval
interpolator_base-inl.h 53 bool InterpolatorBase<T, Algorithm>::Initialize(const vector<T> &x_data,
56 if (x_data.size() != y_data.size()) {
58 " (%d)", x_data.size(), y_data.size());
61 return Initialize(&x_data[0], &y_data[0], x_data.size());
97 const T *x_data, const T *y_data, int data_length) {
106 x_data_ = x_data;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
diagnostic.h 36 void *x_data; member in struct:diagnostic_info
172 void *x_data; member in struct:diagnostic_context
201 #define diagnostic_context_auxiliary_data(DC) (DC)->x_data
202 #define diagnostic_info_auxiliary_data(DI) (DI)->x_data
tree-pretty-print.h 34 #define pp_ti_abstract_origin(TI) ((tree *) (TI)->x_data)
pretty-print.h 38 void **x_data; member in struct:__anon48400
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11mouse.c 60 char *x_data, *x_mask; local
73 x_data = (char *)SDL_malloc(clen);
74 if ( x_data == NULL ) {
82 SDL_free(x_data);
92 x_data[i] = data[i];
101 1, XYBitmap, 0, x_data, w, h, 8, w/8);
129 /* These free the x_data and x_mask memory pointers */
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 406 float* x_data = (float*)(xmat->data.ptr + xmat->step*y); local
416 icvSqrMagnitude_32f( x_data + x, y_data + x, mag_buffer, len );
420 icvFastArctan_32f( y_data + x, x_data + x, angle_data + x, len );
435 double* x_data = (double*)(xmat->data.ptr + xmat->step*y); local
446 icvCvt_64f32f( x_data + x, x_buffer, len );
452 icvSqrMagnitude_64f( x_data + x, y_data + x, mag_data + x, len );
649 float* x_data = (float*)(xmat ? xmat->data.ptr + xmat->step*y : 0); local
673 x_data[x+i] = tx;
684 double* x_data = (double*)(xmat ? xmat->data.ptr + xmat->step*y : 0); local
695 x_data[x] = cos(phi)*magval
    [all...]

Completed in 238 milliseconds