Home
last modified time | relevance | path

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

12345

/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.cpp43 static inline deUint8 getChannel (deUint32 color) in getChannel() function
48 static inline deUint8 getChannel (deUint32 color, int channel) in getChannel() function
60 …return Vec4((float)getChannel<0>(color), (float)getChannel<1>(color), (float)getChannel<2>(color),… in toFloatVec()
102 ptr[c] = getChannel(val, c); in writeUnorm8()
115 …const int r = de::max<int>(de::abs((int)getChannel<0>(pa) - (int)getChannel<0>(pb)) - MIN_ERR_THRE… in colorDistSquared()
116 …const int g = de::max<int>(de::abs((int)getChannel<1>(pa) - (int)getChannel<1>(pb)) - MIN_ERR_THRE… in colorDistSquared()
117 …const int b = de::max<int>(de::abs((int)getChannel<2>(pa) - (int)getChannel<2>(pb)) - MIN_ERR_THRE… in colorDistSquared()
118 …const int a = de::max<int>(de::abs((int)getChannel<3>(pa) - (int)getChannel<3>(pb)) - MIN_ERR_THRE… in colorDistSquared()
151 float f = (getChannel(p00, c)*(1.0f-a)*(1.0f-b)) + in bilinearSample()
152 (getChannel(p10, c)*( a)*(1.0f-b)) + in bilinearSample()
[all …]
/external/grpc-grpc-java/testing/src/test/java/io/grpc/testing/
DGrpcServerRuleTest.java47 assertThat(grpcServerRule1.getChannel().isShutdown()).isFalse(); in serverAndChannelAreStarted_withoutDirectExecutor()
48 assertThat(grpcServerRule1.getChannel().isTerminated()).isFalse(); in serverAndChannelAreStarted_withoutDirectExecutor()
61 SimpleServiceGrpc.newBlockingStub(grpcServerRule1.getChannel()); in serverAllowsServicesToBeAddedViaServiceRegistry_withoutDirectExecutor()
80 SimpleServiceGrpc.newBlockingStub(grpcServerRule1.getChannel()); in serviceIsNotRunOnSameThreadAsTest_withoutDirectExecutor()
97 assertThat(grpcServerRule2.getChannel().isShutdown()).isFalse(); in serverAndChannelAreStarted_withDirectExecutor()
98 assertThat(grpcServerRule2.getChannel().isTerminated()).isFalse(); in serverAndChannelAreStarted_withDirectExecutor()
111 SimpleServiceGrpc.newBlockingStub(grpcServerRule2.getChannel()); in serverAllowsServicesToBeAddedViaServiceRegistry_withDirectExecutor()
130 SimpleServiceGrpc.newBlockingStub(grpcServerRule2.getChannel()); in serviceIsRunOnSameThreadAsTest_withDirectExecutor()
142 assertThat(grpcServerRule.getChannel()).isNull(); in serverAndChannelAreShutdownAfterRule()
158 assertThat(grpcServerRule.getChannel()).isNull(); in serverAndChannelAreShutdownAfterRule()
[all …]
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DCommonTokenStream.java69 while ( tokens.get(p).getChannel()!=channel ) { in consume()
114 while ( tokens.get(i).getChannel()!=channel ) { // also stops at EOF (it's onchannel) in skipOffTokenChannels()
122 while ( i>=0 && tokens.get(i).getChannel()!=channel ) { in skipOffTokenChannelsReverse()
139 while ( tokens.get(i).getChannel()!=channel ) { in setup()
152 if ( t.getChannel()==channel ) n++; in getNumberOfOnChannelTokens()
DClassicToken.java56 channel = oldToken.getChannel(); in ClassicToken()
106 public int getChannel() { in getChannel() method in ClassicToken
DLegacyCommonTokenStream.java112 else if ( discardOffChannelTokens && t.getChannel()!=this.channel ) { in fillBuffer()
147 while ( i<n && tokens.get(i).getChannel()!=channel ) { in skipOffTokenChannels()
154 while ( i>=0 && tokens.get(i).getChannel()!=channel ) { in skipOffTokenChannelsReverse()
DCommonToken.java78 channel = oldToken.getChannel(); in CommonToken()
139 public int getChannel() { in getChannel() method in CommonToken
/external/grpc-grpc-java/services/src/generated/main/grpc/io/grpc/channelz/v1/
DChannelzGrpc.java293 public void getChannel(io.grpc.channelz.v1.GetChannelRequest request, in getChannel() method in ChannelzGrpc.ChannelzImplBase
397getChannel().newCall(getGetTopChannelsMethod(), getCallOptions()), request, responseObserver); in getTopChannels()
408 getChannel().newCall(getGetServersMethod(), getCallOptions()), request, responseObserver); in getServers()
419getChannel().newCall(getGetServerSocketsMethod(), getCallOptions()), request, responseObserver); in getServerSockets()
427 public void getChannel(io.grpc.channelz.v1.GetChannelRequest request, in getChannel() method in ChannelzGrpc.ChannelzStub
430 getChannel().newCall(getGetChannelMethod(), getCallOptions()), request, responseObserver); in getChannel()
441getChannel().newCall(getGetSubchannelMethod(), getCallOptions()), request, responseObserver); in getSubchannel()
452 getChannel().newCall(getGetSocketMethod(), getCallOptions()), request, responseObserver); in getSocket()
486 getChannel(), getGetTopChannelsMethod(), getCallOptions(), request); in getTopChannels()
496 getChannel(), getGetServersMethod(), getCallOptions(), request); in getServers()
[all …]
/external/grpc-grpc/src/php/tests/unit_tests/
DCallInvokerTest.php86 public function getChannel() { function in CallInvokerUpdateChannel
117 public function getChannel() { function in CallInvokerChangeRequest
192 $this->assertEquals($call_invoker->getChannel()->getTarget(), 'localhost:50050');
193 $call_invoker->getChannel()->close();
223 $call_invoker->getChannel()->close();
/external/grpc-grpc-java/services/src/generated/main/java/io/grpc/channelz/v1/
DGetChannelResponse.java110 public io.grpc.channelz.v1.Channel getChannel() { in getChannel() method in GetChannelResponse
122 return getChannel(); in getChannelOrBuilder()
138 output.writeMessage(1, getChannel()); in writeTo()
150 .computeMessageSize(1, getChannel()); in getSerializedSize()
170 result = result && getChannel() in equals()
171 .equals(other.getChannel()); in equals()
186 hash = (53 * hash) + getChannel().hashCode(); in hashCode()
392 mergeChannel(other.getChannel()); in mergeFrom()
443 public io.grpc.channelz.v1.Channel getChannel() { in getChannel() method in GetChannelResponse.Builder
575 getChannel(), in getChannelFieldBuilder()
/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/
DTestServiceGrpc.java503 getChannel().newCall(getEmptyCallMethod(), getCallOptions()), request, responseObserver); in emptyCall()
514 getChannel().newCall(getUnaryCallMethod(), getCallOptions()), request, responseObserver); in unaryCall()
527getChannel().newCall(getCacheableUnaryCallMethod(), getCallOptions()), request, responseObserver); in cacheableUnaryCall()
539getChannel().newCall(getStreamingOutputCallMethod(), getCallOptions()), request, responseObserver); in streamingOutputCall()
551 getChannel().newCall(getStreamingInputCallMethod(), getCallOptions()), responseObserver); in streamingInputCall()
564 getChannel().newCall(getFullDuplexCallMethod(), getCallOptions()), responseObserver); in fullDuplexCall()
578 getChannel().newCall(getHalfDuplexCallMethod(), getCallOptions()), responseObserver); in halfDuplexCall()
590getChannel().newCall(getUnimplementedCallMethod(), getCallOptions()), request, responseObserver); in unimplementedCall()
623 getChannel(), getEmptyCallMethod(), getCallOptions(), request); in emptyCall()
633 getChannel(), getUnaryCallMethod(), getCallOptions(), request); in unaryCall()
[all …]
DReconnectServiceGrpc.java187 getChannel().newCall(getStartMethod(), getCallOptions()), request, responseObserver); in start()
195 getChannel().newCall(getStopMethod(), getCallOptions()), request, responseObserver); in stop()
224 getChannel(), getStartMethod(), getCallOptions(), request); in start()
231 getChannel(), getStopMethod(), getCallOptions(), request); in stop()
261 getChannel().newCall(getStartMethod(), getCallOptions()), request); in start()
269 getChannel().newCall(getStopMethod(), getCallOptions()), request); in stop()
DMetricsServiceGrpc.java189getChannel().newCall(getGetAllGaugesMethod(), getCallOptions()), request, responseObserver); in getAllGauges()
200 getChannel().newCall(getGetGaugeMethod(), getCallOptions()), request, responseObserver); in getGauge()
231 getChannel(), getGetAllGaugesMethod(), getCallOptions(), request); in getAllGauges()
241 getChannel(), getGetGaugeMethod(), getCallOptions(), request); in getGauge()
271 getChannel().newCall(getGetGaugeMethod(), getCallOptions()), request); in getGauge()
/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/runtime/C/src/
Dantlr3commontoken.c49 static ANTLR3_UINT32 getChannel (pANTLR3_COMMON_TOKEN token);
361 token->getChannel = getChannel; in antlr3SetTokenAPI()
517 static ANTLR3_UINT32 getChannel (pANTLR3_COMMON_TOKEN token) in getChannel() function
594 if (token->getChannel(token) > ANTLR3_TOKEN_DEFAULT_CHANNEL) in toString()
597 outtext->addi (outtext, (ANTLR3_INT32)token->getChannel(token)); in toString()
/external/conscrypt/testing/src/main/java/org/conscrypt/
DChannelType.java61 assertNull(wrapped.getChannel()); in newClientSocket()
76 assertNull(wrapped.getChannel()); in accept()
100 ServerSocketChannel serverChannel = serverSocket.getChannel(); in accept()
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/
DChannelType.java63 assertNull(wrapped.getChannel()); in newClientSocket()
78 assertNull(wrapped.getChannel()); in accept()
102 ServerSocketChannel serverChannel = serverSocket.getChannel(); in accept()
/external/flatbuffers/tests/MyGame/Example/
DMonsterStorageGrpc.java309 getChannel().newCall(getStoreMethod(), getCallOptions()), request, responseObserver); in store()
317 getChannel().newCall(getRetrieveMethod(), getCallOptions()), request, responseObserver); in retrieve()
325 getChannel().newCall(getGetMaxHitPointMethod(), getCallOptions()), responseObserver); in getMaxHitPoint()
333 getChannel().newCall(getGetMinMaxHitPointsMethod(), getCallOptions()), responseObserver); in getMinMaxHitPoints()
359 getChannel(), getStoreMethod(), getCallOptions(), request); in store()
367 getChannel(), getRetrieveMethod(), getCallOptions(), request); in retrieve()
394 getChannel().newCall(getStoreMethod(), getCallOptions()), request); in store()
/external/grpc-grpc-java/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/
DWorkerServiceGrpc.java300 getChannel().newCall(getRunServerMethod(), getCallOptions()), responseObserver); in runServer()
316 getChannel().newCall(getRunClientMethod(), getCallOptions()), responseObserver); in runClient()
327 getChannel().newCall(getCoreCountMethod(), getCallOptions()), request, responseObserver); in coreCount()
338 getChannel().newCall(getQuitWorkerMethod(), getCallOptions()), request, responseObserver); in quitWorker()
367 getChannel(), getCoreCountMethod(), getCallOptions(), request); in coreCount()
377 getChannel(), getQuitWorkerMethod(), getCallOptions(), request); in quitWorker()
407 getChannel().newCall(getCoreCountMethod(), getCallOptions()), request); in coreCount()
418 getChannel().newCall(getQuitWorkerMethod(), getCallOptions()), request); in quitWorker()
DBenchmarkServiceGrpc.java341 getChannel().newCall(getUnaryCallMethod(), getCallOptions()), request, responseObserver); in unaryCall()
354 getChannel().newCall(getStreamingCallMethod(), getCallOptions()), responseObserver); in streamingCall()
366 getChannel().newCall(getStreamingFromClientMethod(), getCallOptions()), responseObserver); in streamingFromClient()
378getChannel().newCall(getStreamingFromServerMethod(), getCallOptions()), request, responseObserver); in streamingFromServer()
390 getChannel().newCall(getStreamingBothWaysMethod(), getCallOptions()), responseObserver); in streamingBothWays()
420 getChannel(), getUnaryCallMethod(), getCallOptions(), request); in unaryCall()
432 getChannel(), getStreamingFromServerMethod(), getCallOptions(), request); in streamingFromServer()
463 getChannel().newCall(getUnaryCallMethod(), getCallOptions()), request); in unaryCall()
/external/antlr/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/grpc-grpc-java/testing-proto/src/generated/main/grpc/io/grpc/testing/protobuf/
DSimpleServiceGrpc.java294 getChannel().newCall(getUnaryRpcMethod(), getCallOptions()), request, responseObserver); in unaryRpc()
305 getChannel().newCall(getClientStreamingRpcMethod(), getCallOptions()), responseObserver); in clientStreamingRpc()
316getChannel().newCall(getServerStreamingRpcMethod(), getCallOptions()), request, responseObserver); in serverStreamingRpc()
327 getChannel().newCall(getBidiStreamingRpcMethod(), getCallOptions()), responseObserver); in bidiStreamingRpc()
359 getChannel(), getUnaryRpcMethod(), getCallOptions(), request); in unaryRpc()
370 getChannel(), getServerStreamingRpcMethod(), getCallOptions(), request); in serverStreamingRpc()
403 getChannel().newCall(getUnaryRpcMethod(), getCallOptions()), request); in unaryRpc()
/external/antlr/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/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DRandomAccessObject.java365 mFileChannel = randomAccessFile.getChannel(); in RandomAccessMmapObject()
406 mFileChannel = file.getChannel(); in RandomAccessMmapObject()
455 mFileChannel = file.getChannel(); in RandomAccessMmapObject()

12345