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

/external/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp90 Value* incoming = P->getIncomingValueForBlock(exitingBlocks[0]); local
92 // Make sure all exiting blocks produce the same incoming value for the exit
93 // block. If there are different incoming values for different exiting
97 if (incoming != P->getIncomingValueForBlock(exitingBlocks[i]))
101 if (Instruction* I = dyn_cast<Instruction>(incoming))
/external/quake/quake/src/QW/client/
H A Dgl_test.c70 vec3_t incoming; local
82 VectorSubtract (r_refdef.vieworg, origin, incoming);
83 VectorSubtract (origin, incoming, temp);
86 VectorNormalize (incoming);
87 d = DotProduct (incoming, plane->normal);
88 VectorSubtract (vec3_origin, incoming, p->reflect);
94 CrossProduct (incoming, p->normal, p->up);
/external/quake/quake/src/WinQuake/
H A Dgl_test.cpp70 vec3_t incoming; local
82 VectorSubtract (r_refdef.vieworg, origin, incoming);
83 VectorSubtract (origin, incoming, temp);
86 VectorNormalize (incoming);
87 d = DotProduct (incoming, plane->normal);
88 VectorSubtract (vec3_origin, incoming, p->reflect);
94 CrossProduct (incoming, p->normal, p->up);
/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/webkit/Source/WebCore/dom/default/
H A DPlatformMessagePortChannel.cpp101 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing) argument
103 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing));
106 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing) argument
108 , m_incomingQueue(incoming)
120 // Create incoming/outgoing queues.
219 // Disentangle ourselves from the other end. We still maintain a reference to our incoming queue, since previously-existing messages should still be delivered.
/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/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/dbus/dbus/
H A Ddbus-auth.c133 * Auth state function, determines the reaction to incoming events for
158 DBusString incoming; /**< Incoming data buffer */ member in struct:DBusAuth
359 if (!_dbus_string_init (&auth->incoming))
411 _dbus_string_free (&auth->incoming);
2167 if (!_dbus_string_find (&auth->incoming, 0, "\r\n", &eol))
2183 if (!_dbus_string_copy_len (&auth->incoming, 0, eol, &line, 0))
2221 * of the incoming buffer and return TRUE to try another command.
2224 _dbus_string_delete (&auth->incoming, 0, eol);
2227 _dbus_string_delete (&auth->incoming, 0, 2);
2386 _dbus_string_free (&auth->incoming);
[all...]
/external/openssh/
H A Dmonitor.c119 z_stream incoming; member in struct:__anon9651
1766 memcpy(&incoming_stream, &child_state.incoming,
1898 if (plen != sizeof(child_state.incoming))
1900 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
/external/regex-re2/lib/codereview/
H A Dcodereview.py110 def incoming(repo, other): function
112 ret = commands.incoming(fui, repo, *[other.path], **{'bundle': '', 'force': False})
1698 if not opts["no_incoming"] and incoming(repo, other):
1949 ('', 'no_incoming', None, 'disable check for incoming changes'),
1995 ('', 'no_incoming', None, 'disable check for incoming changes'),
2003 ('', 'no_incoming', None, 'disable initial incoming check (for testing)'),
2019 ('', 'no_incoming', None, 'disable check for incoming changes'),
/external/clang/lib/CodeGen/
H A DCGStmt.cpp97 llvm::BasicBlock *incoming = Builder.GetInsertBlock(); local
98 assert(incoming && "expression emission must have an insertion point");
112 // However, we must be careful not to do this to our incoming
117 if (incoming != outgoing && outgoing->use_empty()) {
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli1633 (** [incoming pn] returns the list of value-block pairs for phi node [pn].
1635 val incoming : llvalue -> (llvalue * llbasicblock) list var
2251 (** [build_phi incoming name b] creates a
2252 [%name = phi %incoming]
2254 [incoming] is a list of [(llvalue, llbasicblock)] tuples.
/external/qemu/
H A Dvl-android.c2561 const char *incoming = NULL; local
3315 incoming = optarg;
4480 if (incoming) {
4482 qemu_start_incoming_migration(incoming);
H A Dvl.c2095 const char *incoming = NULL; local
2750 incoming = optarg;
3202 if (incoming) {
3204 qemu_start_incoming_migration(incoming);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar ... private static boolean detailedResult private java.io.File incoming static void " href="/4.2_r1/s?defs= ...

Completed in 731 milliseconds