Searched defs:incoming (Results 1 - 25 of 31) sorted by relevance

12

/external/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp92 Value *incoming = P->getIncomingValueForBlock(exitingBlocks[0]); local
94 // Make sure all exiting blocks produce the same incoming value for the exit
95 // block. If there are different incoming values for different exiting
99 if (incoming != P->getIncomingValueForBlock(exitingBlocks[i]))
103 if (Instruction *I = dyn_cast<Instruction>(incoming))
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DSaslClient.java34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; argument
H A DSaslServer.java34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; argument
/external/chromium_org/cc/trees/
H A Dlayer_sorter.h59 std::vector<GraphEdge*> incoming; member in struct:cc::GraphNode
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_tcp_server_unittest.cc116 // Accept incoming connection.
118 FakeSocket* incoming = new FakeSocket(NULL); local
119 incoming->SetLocalAddress(ParseAddress(kTestLocalIpAddress, kTestPort1));
121 incoming->SetPeerAddress(addr);
125 socket_->AddIncoming(incoming);
132 EXPECT_EQ(incoming, GetSocketFormTcpSocketHost(
/external/chromium_org/third_party/WebKit/Source/core/dom/default/
H A DPlatformMessagePortChannel.cpp154 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing) argument
156 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing));
159 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing) argument
160 : m_incomingQueue(incoming)
190 // Disentangle ourselves from the other end. We still maintain a reference to our incoming queue, since previously-existing messages should still be delivered.
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c344 struct brw_reg incoming = get_element_ud(c->reg.R0, 2); local
348 brw_SHR(p, c->reg.planemask, incoming, brw_imm_ud(26));
356 brw_AND(p, tmp, incoming, brw_imm_ud(0x3f<<14));
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dcodegen.ml83 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in var
84 let phi = build_phi incoming "iftmp" builder in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml101 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in var
102 let phi = build_phi incoming "iftmp" builder in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml131 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in var
132 let phi = build_phi incoming "iftmp" builder in
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c344 struct brw_reg incoming = get_element_ud(c->reg.R0, 2); local
348 brw_SHR(p, c->reg.planemask, incoming, brw_imm_ud(26));
356 brw_AND(p, tmp, incoming, brw_imm_ud(0x3f<<14));
/external/smack/src/org/apache/qpid/management/common/sasl/
H A DPlainSaslClient.java111 public byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException argument
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
H A DSasl3Test.java355 public byte[] unwrap(byte[] incoming, int offset, int len) argument
H A DSasl4Test.java351 public byte[] unwrap(byte[] incoming, int offset, int len) argument
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dtcpport.cc71 // We can't accept TCP connections incoming on other ports
100 // recognize our incoming TCP connections.
145 Incoming incoming; local
146 incoming.addr = new_socket->GetRemoteAddress();
147 incoming.socket = new_socket;
148 incoming.socket->SignalReadPacket.connect(this, &TCPPort::OnReadPacket);
151 << incoming.addr.ToString();
152 incoming_.push_back(incoming);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhttpserver.cc289 AsyncSocket* incoming = listener_->Accept(NULL); local
290 if (incoming) {
291 StreamInterface* stream = new SocketStream(incoming);
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtcpport.cc80 // We can't accept TCP connections incoming on other ports
125 // recognize our incoming TCP connections.
179 Incoming incoming; local
180 incoming.addr = new_socket->GetRemoteAddress();
181 incoming.socket = new_socket;
182 incoming.socket->SignalReadPacket.connect(this, &TCPPort::OnReadPacket);
183 incoming.socket->SignalReadyToSend.connect(this, &TCPPort::OnReadyToSend);
186 << incoming.addr.ToSensitiveString();
187 incoming_.push_back(incoming);
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DBasicBlock.java30 public int incoming; // the number of incoming branches. field in class:BasicBlock
38 incoming = 0;
77 .append(length).append(", in=").append(incoming)
202 m.block.incoming++;
340 bb.incoming++;
349 // the incoming flow from dead code is not counted
350 // bb.incoming++;
386 handler.incoming--;
392 handler.incoming
[all...]
/external/llvm/lib/Analysis/
H A DProfileEstimatorPass.cpp113 // weight of the incoming edges must be equal the block weight which must in
128 // To get the block weight, read all incoming edges.
178 // There is at least one incoming backedge that will bring us this flow later
181 double incoming = BBWeight; local
193 incoming -= MinimalWeight[*ei];
197 incoming -= w;
218 double fraction = floor(incoming/Edges.size());
224 incoming -= fraction;
226 w = incoming;
/external/mtpd/
H A Dpptp.c132 } incoming, outgoing; variable in typeref:struct:packet
154 /* We are going to read a new message if incoming.expect is 0. */
155 if (!incoming.expect) {
156 incoming.length = 0;
157 incoming.expect = HEADER_SIZE;
163 length = incoming.expect - incoming.length;
164 if (incoming.length >= MAX_PACKET_LENGTH) {
168 if (incoming.expect > MAX_PACKET_LENGTH) {
169 length = MAX_PACKET_LENGTH - incoming
[all...]
H A Dl2tp.c119 } incoming, outgoing; variable in typeref:struct:packet
185 uint16_t *p = (uint16_t *)incoming.buffer;
187 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0);
188 if (incoming.length == -1) {
197 if ((incoming.length != ACK_SIZE && incoming.length < MESSAGE_HEADER_SIZE)
199 ntohs(p[1]) != incoming.length || p[2] != local_tunnel) {
203 if (incoming.length == ACK_SIZE) {
204 incoming
[all...]
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DDigestMD5SaslClient.java223 * incoming is the contents of the SASL buffer as defined in RFC 2222
225 * offset and len specify the portion of incoming to use.
227 * @param incoming A non-null byte array containing the encoded bytes
229 * @param offset The starting position at incoming of the bytes to use
231 * @param len The number of bytes from incoming to use
237 byte[] incoming,
263 * @exception SaslException if incoming cannot be successfully unwrapped.
236 unwrap( byte[] incoming, int offset, int len) argument
/external/smack/src/com/novell/sasl/client/
H A DDigestMD5SaslClient.java223 * incoming is the contents of the SASL buffer as defined in RFC 2222
225 * offset and len specify the portion of incoming to use.
227 * @param incoming A non-null byte array containing the encoded bytes
229 * @param offset The starting position at incoming of the bytes to use
231 * @param len The number of bytes from incoming to use
237 byte[] incoming,
263 * @exception SaslException if incoming cannot be successfully unwrapped.
236 unwrap( byte[] incoming, int offset, int len) argument
/external/clang/lib/CodeGen/
H A DCGStmt.cpp99 llvm::BasicBlock *incoming = Builder.GetInsertBlock(); local
100 assert(incoming && "expression emission must have an insertion point");
114 // However, we must be careful not to do this to our incoming
119 if (incoming != outgoing && outgoing->use_empty()) {
/external/openssh/
H A Dmonitor.c119 z_stream incoming; member in struct:__anon23468
1766 memcpy(&incoming_stream, &child_state.incoming,
1898 if (plen != sizeof(child_state.incoming))
1900 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));

Completed in 378 milliseconds

12