Lines Matching defs:fWeightsX

36 	FilterInfo* fWeightsX;
52 fWeightsX = filterData.fWeightsX;
99 FilterInfo* fWeightsX;
244 if (this->fWeightsX[xIndexMax].weight == 255)
261 const uint8* s = src + this->fWeightsX[x].index;
265 const uint16 wLeft = this->fWeightsX[x].weight;
280 const uint8* s = src + this->fWeightsX[xIndexR].index;
301 const uint8* s = src + this->fWeightsX[x].index;
302 const uint16 wLeft = this->fWeightsX[x].weight;
312 const uint8* s = src + this->fWeightsX[xIndexR].index;
342 const uint8* s = src + fWeightsX[x].index;
347 if (fWeightsX[x].weight == 255) {
355 const uint16 wLeft = fWeightsX[x].weight;
365 const uint8* s = src + fWeightsX[x].index;
366 if (fWeightsX[x].weight == 255) {
379 const uint16 wLeft = fWeightsX[x].weight;
422 if (fWeightsX[xIndexMax].weight == 255)
435 bilinear_scale_xloop_mmxsse(src, fDestination, fWeightsX, xIndexL,
442 const uint8* s = src + fWeightsX[xIndexR].index;
460 const uint8* s = src + fWeightsX[x].index;
461 const uint16 wLeft = fWeightsX[x].weight;
472 const uint8* s = src + fWeightsX[xIndexR].index;
518 filterData.fWeightsX = new (nothrow) FilterInfo[dstWidth];
520 if (filterData.fWeightsX == NULL || filterData.fWeightsY == NULL) {
521 delete[] filterData.fWeightsX;
531 filterData.fWeightsX = &xWeights[0];
553 filterData.fWeightsX[i].index = (uint16)index;
554 filterData.fWeightsX[i].weight =
555 255 - (uint16)((index - filterData.fWeightsX[i].index) * 255);
557 filterData.fWeightsX[i].index += xBitmapShift;
559 filterData.fWeightsX[i].index *= 4;
641 delete[] filterData.fWeightsX;