HomeSort by relevance Sort by last modified time
    Searched defs:incoming (Results 1 - 25 of 32) sorted by null

1 2

  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 30 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/Transforms/Scalar/
LoopDeletion.cpp 92 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))
  /packages/apps/Nfc/src/com/android/nfc/handover/
PendingHandoverTransfer.java 26 public boolean incoming; field in class:PendingHandoverTransfer
31 PendingHandoverTransfer(int id, boolean incoming, BluetoothDevice remoteDevice,
34 this.incoming = incoming;
44 boolean incoming = (in.readInt() == 1) ? true : false;
53 return new PendingHandoverTransfer(id, incoming, remoteDevice,
71 dest.writeInt(incoming ? 1 : 0);
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
Chromoting.java 240 Scanner incoming = new Scanner(link.getInputStream()); local
242 while (incoming.hasNext()) {
243 response.append(incoming.nextLine());
245 incoming.close();
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 71 // 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);
158 for (std::list<Incoming>::iterator it = incoming_.begin()
    [all...]
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_tcp_server_unittest.cc 118 // Accept incoming connection.
120 FakeSocket* incoming = new FakeSocket(NULL); local
121 incoming->SetLocalAddress(ParseAddress(kTestLocalIpAddress, kTestPort1));
123 incoming->SetPeerAddress(addr);
127 socket_->AddIncoming(incoming);
134 EXPECT_EQ(incoming, GetSocketFormTcpSocketHost(
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip_util.c 344 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/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_util.c 344 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/chromium_org/cc/trees/
layer_sorter.h 59 std::vector<GraphEdge*> incoming; member in struct:cc::GraphNode
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver.cc 289 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/
tcpport.cc 70 std::list<Incoming>::iterator it;
84 // We can't accept TCP connections incoming on other ports
129 // recognize our incoming TCP connections.
193 Incoming incoming; local
194 incoming.addr = new_socket->GetRemoteAddress();
195 incoming.socket = new_socket;
196 incoming.socket->SignalReadPacket.connect(this, &TCPPort::OnReadPacket);
197 incoming.socket->SignalReadyToSend.connect(this, &TCPPort::OnReadyToSend);
200 << incoming.addr.ToSensitiveString()
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 83 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/
codegen.ml 101 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/
codegen.ml 131 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in var
132 let phi = build_phi incoming "iftmp" builder in
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 81 return mResources.incoming;
115 public final Drawable incoming; field in class:CallTypeIconsView.Resources
123 incoming = r.getDrawable(R.drawable.ic_call_incoming_holo_dark);
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 113 // 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;
  /art/compiler/dex/
mir_optimization.cc 127 * opcodes or incoming arcs. However, if the result of the invoke is not
428 * Phi node (and fix up the incoming arc list).
437 int* incoming = reinterpret_cast<int*>(phi->dalvikInsn.vB); local
440 incoming[i] = bb->id;
447 incoming[i] = incoming[last_slot];
655 // Starting state is intersection of all incoming arcs
    [all...]
ssa_transformation.cc 158 * Also set the incoming parameters as defs in the entry block.
616 int* incoming = local
619 mir->dalvikInsn.vB = reinterpret_cast<uintptr_t>(incoming);
625 *incoming++ = incoming_arc[i];
mir_graph.cc 918 int* incoming = reinterpret_cast<int*>(insn.vB); local
    [all...]
  /external/mtpd/
pptp.c 132 } 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.length
    [all...]
l2tp.c 119 } 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.message = ACK
    [all...]
  /ndk/build/core/
definitions-graph.mk 266 # For topological sort, we need to count the number of incoming edges
270 # Count the number of incoming edges for each node during topological
279 # zero the incoming edge counter for module $1
280 -ndk-mod-topo-zero-incoming = \
283 # increment the incoming edge counter for module $1
284 -ndk-mod-topo-increment-incoming = \
287 # decrement the incoming edge counter for module $1
288 -ndk-mod-topo-decrement-incoming = \
291 # return non-empty if the module $1's incoming edge counter is > 0
292 -ndk-mod-topo-has-incoming = $(_ndk_mod_topo_incoming.$1
    [all...]
  /external/chromium_org/sync/notifier/
sync_invalidation_listener_unittest.cc 238 const SingleObjectInvalidationSet& incoming = variable
241 list.insert(list.end(), incoming.begin(), incoming.end());
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 1555 int* incoming = reinterpret_cast<int*>(mir->dalvikInsn.vB); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupBasics.java 84 * -e INCOMING imap+ssl+://test_account:test_password@imap.gmail.com \
105 private static final String EXTRA_CREATE_ACCOUNT_INCOMING = "INCOMING";
249 // Set aside incoming AccountAuthenticatorResponse, if there was any
286 final String incoming = intent.getStringExtra(EXTRA_CREATE_ACCOUNT_INCOMING); local
289 TextUtils.isEmpty(incoming) || TextUtils.isEmpty(outgoing)) {
291 "USER, INCOMING, OUTGOING");
295 forceCreateAccount(email, user, incoming, outgoing);
602 * @param incoming The URI-style string defining the incoming account
605 private void forceCreateAccount(String email, String user, String incoming, String outgoing)
    [all...]

Completed in 1660 milliseconds

1 2