OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:validh
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
vertical_blur.rs
70
int
validH
= rsClamp((int)y + r, (int)0, (int)(fs->height - 1));
71
const float4 *i = (const float4 *)rsGetElementAt(fs->ain, x,
validH
);
/frameworks/base/libs/hwui/
FontRenderer.cpp
884
int
validH
= y + r;
886
if (
validH
< 0) {
887
validH
= 0;
889
if (
validH
> height - 1) {
890
validH
= height - 1;
893
const uint8_t *i = input +
validH
* width;
Completed in 168 milliseconds