OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yFactor
(Results
1 - 9
of
9
) sorted by null
/external/deqp/framework/delibs/deimage/
deImage.c
133
int
yFactor
= (yFixed & 0xFF);
134
int f00 = ((256-xFactor) * (256-
yFactor
)) >> 8;
135
int f10 = ((256-xFactor) *
yFactor
) >> 8;
136
int f01 = (xFactor * (256-
yFactor
)) >> 8;
137
int f11 = (xFactor *
yFactor
) >> 8;
/external/deqp/modules/glshared/
glsFragmentOpUtil.cpp
39
inline T triQuadInterpolate (const T values[4], float xFactor, float
yFactor
)
41
if (xFactor +
yFactor
< 1.0f)
42
return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*
yFactor
;
44
return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[2]-values[3])*(1.0f-
yFactor
);
/prebuilts/go/darwin-x86/src/image/png/
reader.go
72
xFactor,
yFactor
, xOffset, yOffset int
429
height = (height - p.yOffset + p.
yFactor
- 1) / p.
yFactor
834
dBase := (y*p.
yFactor
+p.yOffset-rect.Min.Y)*stride + (p.xOffset-rect.Min.X)*bytesPerPixel
/prebuilts/go/linux-x86/src/image/png/
reader.go
72
xFactor,
yFactor
, xOffset, yOffset int
429
height = (height - p.yOffset + p.
yFactor
- 1) / p.
yFactor
834
dBase := (y*p.
yFactor
+p.yOffset-rect.Min.Y)*stride + (p.xOffset-rect.Min.X)*bytesPerPixel
/external/ImageMagick/MagickCore/
accelerate.c
[
all
...]
accelerate-kernels-private.h
[
all
...]
/external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp
494
static inline T triQuadInterpolate (const T (&values)[4], float xFactor, float
yFactor
)
496
if (xFactor +
yFactor
< 1.0f)
497
return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*
yFactor
;
499
return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[2]-values[3])*(1.0f-
yFactor
);
[
all
...]
es31fTextureBorderClampTests.cpp
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureGatherTests.cpp
523
static inline T triQuadInterpolate (const T (&values)[4], float xFactor, float
yFactor
)
525
if (xFactor +
yFactor
< 1.0f)
526
return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*
yFactor
;
528
return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[2]-values[3])*(1.0f-
yFactor
);
[
all
...]
Completed in 720 milliseconds