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

12

/external/swiftshader/third_party/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/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/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp50 Value *incoming = P->getIncomingValueForBlock(exitingBlocks[0]); local
52 // Make sure all exiting blocks produce the same incoming value for the exit
53 // block. If there are different incoming values for different exiting
58 return incoming == P->getIncomingValueForBlock(BB);
64 if (Instruction *I = dyn_cast<Instruction>(incoming))
/external/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/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/libese/apps/boot/card/src/com/android/verifiedboot/storage/
H A DStorage.java396 * Fills the incoming buffer from APDU streams.
399 * @param incoming buffer to fill from apdu buffer.
400 * @param iOffset starting offset into incoming.
402 * @return offset/length into incoming.
404 private short fillIncomingBuffer(APDU apdu, byte[] incoming, short iOffset, short available) { argument
410 incoming, (short)(sum + iOffset), available);
414 if (sum > (short)(incoming.length - available)) {
415 available = (short)(incoming.length - sum);
440 * Handles incoming APDU requests
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c422 struct brw_reg incoming = get_element_ud(c->reg.R0, 2); local
426 brw_SHR(p, c->reg.planemask, incoming, brw_imm_ud(26));
435 brw_AND(p, tmp, incoming, brw_imm_ud(0xff<<14));
437 brw_AND(p, tmp, incoming, brw_imm_ud(0x3f<<14));
/external/swiftshader/third_party/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/v8/src/builtins/
H A Dbuiltins-function.cc457 Arguments* incoming = reinterpret_cast<Arguments*>(args[0]); local
459 int argc = incoming->length() + BuiltinArguments::kNumExtraArgsWithReceiver;
460 BuiltinArguments caller_args(argc, incoming->arguments() + 1);
/external/webrtc/webrtc/base/
H A Dhttpserver.cc272 AsyncSocket* incoming = listener_->Accept(NULL); local
273 if (incoming) {
274 StreamInterface* stream = new SocketStream(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.c120 } incoming, outgoing; variable in typeref:struct:packet
186 uint16_t *p = (uint16_t *)incoming.buffer;
188 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0);
189 if (incoming.length == -1) {
198 if ((incoming.length != ACK_SIZE && incoming.length < MESSAGE_HEADER_SIZE)
200 ntohs(p[1]) != incoming.length || p[2] != local_tunnel) {
204 if (incoming.length == ACK_SIZE) {
205 incoming
[all...]
/external/webrtc/webrtc/p2p/base/
H A Dtcpport.cc13 * passive side just waits for an incoming connection.
139 // We can't accept TCP connections incoming on other ports
185 // recognize our incoming TCP connections. According to
256 Incoming incoming; local
257 incoming.addr = new_socket->GetRemoteAddress();
258 incoming.socket = new_socket;
259 incoming.socket->SignalReadPacket.connect(this, &TCPPort::OnReadPacket);
260 incoming.socket->SignalReadyToSend.connect(this, &TCPPort::OnReadyToSend);
261 incoming.socket->SignalSentPacket.connect(this, &TCPPort::OnSentPacket);
264 << incoming
[all...]
/external/webrtc/webrtc/call/
H A Drtc_event_log_unittest.cc226 bool incoming,
235 EXPECT_EQ(incoming, rtp_packet.incoming());
248 bool incoming,
256 EXPECT_EQ(incoming, rtcp_packet.incoming());
482 (i % 2 == 0), // Every second packet is incoming.
487 rtcp_index % 2 == 0, // Every second packet is incoming
528 (i % 2 == 0), // Every second packet is incoming.
535 rtcp_index % 2 == 0, // Every second packet is incoming
225 VerifyRtpEvent(const rtclog::Event& event, bool incoming, MediaType media_type, const uint8_t* header, size_t header_size, size_t total_size) argument
247 VerifyRtcpEvent(const rtclog::Event& event, bool incoming, MediaType media_type, const uint8_t* packet, size_t total_size) argument
[all...]
/external/libpcap/
H A Dpcap-usb-linux.c523 int incoming=0; local
585 incoming = 1;
588 incoming = !incoming;
591 if (incoming)
/external/v8/src/compiler/
H A Dlinkage.h328 // for incoming parameters and return value(s) as well as the outgoing calling
343 explicit Linkage(CallDescriptor* incoming) : incoming_(incoming) {} argument
348 // of incoming parameters and the outgoing return value(s).
383 // Get the location of an (incoming) parameter to this function.
388 // Get the machine type of an (incoming) parameter to this function.
408 // Get the location where an incoming OSR value is stored.
H A Dwasm-compiler.cc3763 CallDescriptor* incoming = Linkage::GetJSCallDescriptor( local
3783 Handle<Code> code = Pipeline::GenerateCodeForTesting(&info, incoming, &graph);
3840 CallDescriptor* incoming = local
3843 incoming = wasm::ModuleEnv::GetI32WasmCallDescriptor(&zone, incoming);
3862 code = Pipeline::GenerateCodeForTesting(&info, incoming, &graph, nullptr,
3923 CallDescriptor* incoming = local
3926 incoming = wasm::ModuleEnv::GetI32WasmCallDescriptor(&zone, incoming);
3936 code = Pipeline::GenerateCodeForTesting(&info, incoming,
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp104 llvm::BasicBlock *incoming = Builder.GetInsertBlock(); local
105 assert(incoming && "expression emission must have an insertion point");
119 // However, we must be careful not to do this to our incoming
124 if (incoming != outgoing && outgoing->use_empty()) {
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli1891 (** [incoming pn] returns the list of value-block pairs for phi node [pn].
1893 val incoming : llvalue -> (llvalue * llbasicblock) list var
2457 (** [build_phi incoming name b] creates a
2458 [%name = phi %incoming]
2460 [incoming] is a list of [(llvalue, llbasicblock)] tuples.
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.mli1632 (** [incoming pn] returns the list of value-block pairs for phi node [pn].
1634 val incoming : llvalue -> (llvalue * llbasicblock) list var
2250 (** [build_phi incoming name b] creates a
2251 [%name = phi %incoming]
2253 [incoming] is a list of [(llvalue, llbasicblock)] tuples.
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.c637 static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role, argument
650 wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
691 incoming == P2PS_SETUP_GROUP_OWNER ||
700 if (!incoming)
703 if (incoming == P2PS_SETUP_NEW) {
717 switch (incoming) {
740 if (incoming == role || cli_wpa_s)
747 if (incoming != role) {
763 switch (incoming) {
770 else if (incoming
[all...]

Completed in 1022 milliseconds

12