Home
last modified time | relevance | path

Searched refs:getChannel (Results 1 – 25 of 65) sorted by relevance

123

/external/deqp/framework/common/
DtcuBilinearImageCompare.cpp44 static inline deUint8 getChannel (deUint32 color) in getChannel() function
66 res |= getChannel<0>(raw) << RGBA::RED_SHIFT; in readRGBA8()
67 res |= getChannel<1>(raw) << RGBA::GREEN_SHIFT; in readRGBA8()
68 res |= getChannel<2>(raw) << RGBA::BLUE_SHIFT; in readRGBA8()
69 res |= getChannel<3>(raw) << RGBA::ALPHA_SHIFT; in readRGBA8()
106 …res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), ge… in bilinearSampleRGBA8()
107 …res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), ge… in bilinearSampleRGBA8()
108 …res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), ge… in bilinearSampleRGBA8()
109 …res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), ge… in bilinearSampleRGBA8()
DtcuFuzzyImageCompare.cpp38 static inline deUint8 getChannel (deUint32 color) in getChannel() function
43 static inline deUint8 getChannel (deUint32 color, int channel) in getChannel() function
55 …return Vec4((float)getChannel<0>(color), (float)getChannel<1>(color), (float)getChannel<2>(color),… in toFloatVec()
97 ptr[c] = getChannel(val, c); in writeUnorm8()
110 …int r = de::max<int>(de::abs((int)getChannel<0>(pa) - (int)getChannel<0>(pb)) - minErrThreshold, 0… in compareColors()
111 …int g = de::max<int>(de::abs((int)getChannel<1>(pa) - (int)getChannel<1>(pb)) - minErrThreshold, 0… in compareColors()
112 …int b = de::max<int>(de::abs((int)getChannel<2>(pa) - (int)getChannel<2>(pb)) - minErrThreshold, 0… in compareColors()
113 …int a = de::max<int>(de::abs((int)getChannel<3>(pa) - (int)getChannel<3>(pb)) - minErrThreshold, 0… in compareColors()
149 float f = (getChannel(p00, c)*(1.0f-a)*(1.0f-b)) + in bilinearSample()
150 (getChannel(p10, c)*( a)*(1.0f-b)) + in bilinearSample()
[all …]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DCommonTokenStream.java68 while ( tokens.get(p).getChannel()!=channel ) { in consume()
111 while ( tokens.get(i).getChannel()!=channel ) { // also stops at EOF (it's onchannel) in skipOffTokenChannels()
119 while ( i>=0 && ((Token)tokens.get(i)).getChannel()!=channel ) { in skipOffTokenChannelsReverse()
134 while ( tokens.get(i).getChannel()!=channel ) { in setup()
147 if ( t.getChannel()==channel ) n++; in getNumberOfOnChannelTokens()
DClassicToken.java56 channel = oldToken.getChannel(); in ClassicToken()
98 public int getChannel() { in getChannel() method in ClassicToken
DCommonToken.java78 channel = oldToken.getChannel(); in CommonToken()
131 public int getChannel() { in getChannel() method in CommonToken
DLegacyCommonTokenStream.java113 else if ( discardOffChannelTokens && t.getChannel()!=this.channel ) { in fillBuffer()
147 while ( i<n && ((Token)tokens.get(i)).getChannel()!=channel ) { in skipOffTokenChannels()
154 while ( i>=0 && ((Token)tokens.get(i)).getChannel()!=channel ) { in skipOffTokenChannelsReverse()
DToken.java77 public int getChannel(); in getChannel() method
/external/jetty/src/java/org/eclipse/jetty/io/nio/
DRandomAccessFileBuffer.java43 _channel=_file.getChannel(); in RandomAccessFileBuffer()
57 _channel=_file.getChannel(); in RandomAccessFileBuffer()
70 _channel=_file.getChannel(); in RandomAccessFileBuffer()
DSelectChannelEndPoint.java583 if (getChannel().isOpen()) in updateKey()
620 if (getChannel().isOpen()) in doUpdateKey()
626 SelectableChannel sc = (SelectableChannel)getChannel(); in doUpdateKey()
635 … _key=((SelectableChannel)getChannel()).register(_selectSet.getSelector(),_interestOps,this); in doUpdateKey()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
DFlatPackageWriterImpl.java99 muxed.getBox(muxedFileOutputStream.getChannel()); in write()
110 muxed.getBox(muxedFileOutputStream.getChannel()); in write()
117 isoFile.getBox(allQualis.getChannel()); in write()
150 FileChannel fc = fos.getChannel(); in write()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3commontoken.c49 static ANTLR3_UINT32 getChannel (pANTLR3_COMMON_TOKEN token);
338 token->getChannel = getChannel; in antlr3SetTokenAPI()
494 static ANTLR3_UINT32 getChannel (pANTLR3_COMMON_TOKEN token) in getChannel() function
571 if (token->getChannel(token) > ANTLR3_TOKEN_DEFAULT_CHANNEL) in toString()
574 outtext->addi (outtext, (ANTLR3_INT32)token->getChannel(token)); in toString()
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRCommonTokenStream.h42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
DANTLRRecognizerSharedState.h61 @property (getter=getChannel,setter=setChannel:) NSUInteger channel;
81 - (NSUInteger) getChannel;
DANTLRToken.h71 - (NSUInteger) getChannel;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRCommonTokenStream.h42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
DANTLRRecognizerSharedState.h61 @property (getter=getChannel,setter=setChannel:) NSUInteger channel;
81 - (NSUInteger) getChannel;
DANTLRToken.h71 - (NSUInteger) getChannel;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRCommonTokenStream.h42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
DANTLRRecognizerSharedState.h61 @property (getter=getChannel,setter=setChannel:) NSUInteger channel;
81 - (NSUInteger) getChannel;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DCommonTokenStream.js58 t.getChannel()!=this.channel )
93 while ( i<n && (this.tokens[i]).getChannel()!=this.channel ) {
100 while ( i>=0 && (this.tokens[i]).getChannel()!=this.channel ) {
DCommonToken.js18 this.channel = oldToken.getChannel();
80 getChannel: function() { method
/external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
DAndroidAudioRenderer.java99 if (src.getChannel() < 0) { in updateSourceParam()
183 soundPool.setVolume(src.getChannel(), src.getVolume(), in updateSourceParam()
441 int channel = src.getChannel(); in pauseSource()
460 int channel = src.getChannel(); in stopSource()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtokens.py108 def getChannel(self): member in Token
266 def getChannel(self): member in CommonToken
371 def getChannel(self): member in ClassicToken
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
DLwjglAudioRenderer.java312 if (src.getChannel() < 0) in updateSourceParam()
315 assert src.getChannel() >= 0; in updateSourceParam()
317 int id = channels[src.getChannel()]; in updateSourceParam()
739 boolean boundSource = i == src.getChannel(); in updateInThread()
892 alSourcePlay(channels[src.getChannel()]); in playSource()
911 assert src.getChannel() != -1; in pauseSource()
913 alSourcePause(channels[src.getChannel()]); in pauseSource()
932 int chan = src.getChannel(); in stopSource()
/external/smali/smali/src/test/java/
DLexerTest.java174 if (discardHiddenTokens && token.getChannel() == smaliParser.HIDDEN) { in runTest()
184 token.getChannel() == smaliParser.ERROR_CHANNEL); in runTest()

123