Home
last modified time | relevance | path

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

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DSocksProxy.java100 BufferedSource fromSource = Okio.buffer(Okio.source(from)); in service()
102 hello(fromSource, fromSink); in service()
103 acceptCommand(from.getInetAddress(), fromSource, fromSink); in service()
112 private void hello(BufferedSource fromSource, BufferedSink fromSink) throws IOException { in hello() argument
113 int version = fromSource.readByte() & 0xff; in hello()
114 int methodCount = fromSource.readByte() & 0xff; in hello()
122 int candidateMethod = fromSource.readByte() & 0xff; in hello()
140 private void acceptCommand(InetAddress fromAddress, BufferedSource fromSource, in acceptCommand() argument
143 int version = fromSource.readByte() & 0xff; in acceptCommand()
145 int command = fromSource.readByte() & 0xff; in acceptCommand()
[all …]
/external/opencv3/modules/imgproc/src/
Dgrabcut.cpp463 double fromSource, toSink; in constructGCGraph() local
466 fromSource = -log( bgdGMM(color) ); in constructGCGraph()
471 fromSource = 0; in constructGCGraph()
476 fromSource = lambda; in constructGCGraph()
479 graph.addTermWeights( vtxIdx, fromSource, toSink ); in constructGCGraph()