Home
last modified time | relevance | path

Searched refs:cRange (Results 1 – 2 of 2) sorted by relevance

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
DCommentsCollection.java80 Range cRange = c.getRange().get(); in contains() local
83 if (cRange.begin.equals(commentRange.begin) && in contains()
84 cRange.end.line == commentRange.end.line && in contains()
85 Math.abs(cRange.end.column - commentRange.end.column) < 2) { in contains()
/external/deqp/framework/common/
DtcuTextureUtil.cpp460 const Vec2 cRange = getFloatChannelValueRange(format.type); in getTextureFormatInfo() local
466 const float scale = 1.0f / (cRange[1] - cRange[0]); in getTextureFormatInfo()
467 const float bias = -cRange[0] * scale; in getTextureFormatInfo()
469 return TextureFormatInfo(select(cRange[0], 0.0f, chnMask), in getTextureFormatInfo()
470 select(cRange[1], 0.0f, chnMask), in getTextureFormatInfo()