HomeSort by relevance Sort by last modified time
    Searched full:ack (Results 1 - 25 of 931) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
controlflow-recursive.js 5 function ack(m,n){ function
7 if (n==0) { return ack(m-1,1); }
8 return ack(m-1, ack(m,n-1) );
22 ack(3,i);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
controlflow-recursive.js 5 function ack(m,n){ function
7 if (n==0) { return ack(m-1,1); }
8 return ack(m-1, ack(m,n-1) );
22 ack(3,i);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
controlflow-recursive.js 5 function ack(m,n){ function
7 if (n==0) { return ack(m-1,1); }
8 return ack(m-1, ack(m,n-1) );
22 ack(3,i);
  /external/tcpdump/
atime.awk 1 $6 ~ /^ack/ && $5 !~ /[SFR]/ {
2 # given a tcpdump ftp trace, output one line for each ack
4 # <ack time> <seq no>
5 # where <ack time> is the time packet was acked (in seconds with
7 # number of the ack divided by 1024 (i.e., Kbytes acked).
print-decnet.c 435 int ack; local
444 ack = EXTRACT_LE_16BITS(shp->sh_seq[0]);
445 if (ack & SGQ_ACK) { /* acknum field */
446 if ((ack & SGQ_NAK) == SGQ_NAK)
447 (void)printf("nak %d ", ack & SGQ_MASK);
449 (void)printf("ack %d ", ack & SGQ_MASK);
454 ack = EXTRACT_LE_16BITS(shp->sh_seq[1]);
455 if (ack & SGQ_OACK) { /* ackoth field */
456 if ((ack & SGQ_ONAK) == SGQ_ONAK
481 int ack; local
529 int ack; local
593 int ack; local
618 int ack; local
    [all...]
packetdat.awk 13 # <1st ack time>
14 # <last ack time>
20 if ($6 != "ack") {
47 # for packets that were implicitly acked, make the ack time
48 # be the ack time of next explicitly acked packet.
  /external/chromium_org/net/quic/congestion_control/
quic_congestion_control_test.cc 68 QuicAckFrame ack; local
69 ack.received_info.largest_observed = 0;
70 manager_->OnIncomingAckFrame(ack, clock_.Now());
86 // Ack the packet we sent.
87 ack.received_info.largest_observed = max(
88 i, ack.received_info.largest_observed);
89 manager_->OnIncomingAckFrame(ack, clock_.Now());
97 QuicAckFrame ack; local
98 ack.received_info.largest_observed = 0;
99 manager_->OnIncomingAckFrame(ack, clock_.Now())
    [all...]
quic_congestion_manager_test.cc 53 QuicAckFrame ack; local
54 manager_->OnIncomingAckFrame(ack, clock_.Now());
68 // Ack the packet we sent.
69 ack.received_info.largest_observed = i;
70 manager_->OnIncomingAckFrame(ack, clock_.Now());
82 QuicAckFrame ack; local
83 manager_->OnIncomingAckFrame(ack, clock_.Now());
97 // Ack the packet we sent.
98 ack.received_info.largest_observed = sequence_number;
99 manager_->OnIncomingAckFrame(ack, clock_.Now())
151 QuicAckFrame ack; local
177 QuicAckFrame ack; local
203 QuicAckFrame ack; local
228 QuicAckFrame ack; local
    [all...]
hybrid_slow_start.h 32 // Returns true if this ack the last sequence number of our current slow start
35 bool EndOfRound(QuicPacketSequenceNumber ack);
40 // rtt: it the RTT for this ack packet.
58 QuicTime last_time_; // Last time when the ACK spacing was close.
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
sunspider-controlflow-recursive.html 9 function ack(m,n){
11 if (n==0) { return ack(m-1,1); }
12 return ack(m-1, ack(m,n-1) );
27 test("Ack", function(){
29 ack(3,i);
  /external/nist-sip/java/javax/sip/message/
Request.java 7 String ACK = "ACK";
  /external/chromium_org/content/port/common/
input_event_ack_state.h 10 // Describes the state of the input event ACK coming back to the browser side.
  /external/arduino/libraries/Wire/utility/
twi.c 134 // On receive, the previously configured ACK/NACK setting is transmitted in
283 * Input ack: byte indicating to ack or to nack
286 void twi_reply(uint8_t ack)
288 // transmit master read ready signal, with or without ack
289 if(ack){
338 // copy device address and r/w bit to output register and ack
348 // copy data to output register and ack
369 case TW_MR_DATA_ACK: // data received, ack sent
372 case TW_MR_SLA_ACK: // address sent, ack receive
    [all...]
  /external/chromium_org/sync/notifier/
ack_tracker_unittest.cc 115 // Tests that various combinations of Track()/Ack() behave as
130 ack_tracker_.Ack(ids_one);
131 ack_tracker_.Ack(ids_two);
136 ack_tracker_.Ack(ids_one);
137 ack_tracker_.Ack(ids_two);
143 ack_tracker_.Ack(ids_all);
148 ack_tracker_.Ack(ids_all);
160 ack_tracker_.Ack(ids);
169 ack_tracker_.Ack(ids);
226 ack_tracker_.Ack(ids)
    [all...]
  /external/iptables/extensions/
libxt_tcpmss.man 1 This matches the TCP MSS (maximum segment size) field of the TCP header. You can only use this on TCP SYN or SYN/ACK packets, since the MSS is only negotiated during the TCP handshake at connection startup time.
libxt_tcp.man 25 .BR "SYN ACK FIN RST URG PSH ALL NONE" .
28 iptables \-A FORWARD \-p tcp \-\-tcp\-flags SYN,ACK,FIN,RST SYN
30 will only match packets with the SYN flag set, and the ACK, FIN and
34 Only match TCP packets with the SYN bit set and the ACK,RST and FIN bits
39 It is equivalent to \fB\-\-tcp\-flags SYN,RST,ACK,FIN SYN\fP.
  /external/llvm/test/Transforms/TailCallElim/
ackermann.ll 5 define i32 @Ack(i32 %M.1, i32 %N.1) {
17 %tmp.8 = call i32 @Ack( i32 %tmp.10, i32 1 ) ; <i32> [#uses=1]
22 %tmp.14 = call i32 @Ack( i32 %M.1, i32 %tmp.17 ) ; <i32> [#uses=1]
23 %tmp.11 = call i32 @Ack( i32 %tmp.13, i32 %tmp.14 ) ; <i32> [#uses=1]
  /system/core/libcutils/
debugger.c 38 char ack; local
39 if (TEMP_FAILURE_RETRY(read(s, &ack, 1)) != 1) {
71 char ack; local
72 if (TEMP_FAILURE_RETRY(read(s, &ack, 1)) != 1) {
  /frameworks/base/core/java/android/net/dhcp/
DhcpAckPacket.java 25 * This class implements the DHCP-ACK packet.
50 return s + " ACK: your new IP " + mYourIp +
57 * Fills in a packet with the requested ACK parameters.
71 * Adds the optional parameters to the client-generated ACK packet.
104 * Notifies the specified state machine of the ACK packet parameters.
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_compositing_helper.cc 54 cc::CompositorFrameAck ack;
55 delegated_layer_->TakeUnusedResourcesForChildCompositor(&ack.resources);
64 ack));
114 // We need to send an ACK to for every buffer sent to us.
117 // buffer arriving, no ACK is needed.
138 cc::CompositorFrameAck ack; local
139 ack.gl_frame_data.reset(new cc::GLFrameData());
140 ack.gl_frame_data->mailbox = mailbox.name;
141 ack.gl_frame_data->size = mailbox.size;
142 ack.gl_frame_data->sync_point = sync_point
155 cc::CompositorFrameAck ack; local
    [all...]
  /external/chromium_org/content/common/
swapped_out_messages.cc 61 // Sends an ACK.
63 // Sends an ACK.
65 // Sends an ACK.
71 // Sends an ACK.
75 // Sends an ACK.
77 // Sends an ACK.
  /external/chromium_org/sync/internal_api/public/base/
invalidation.h 21 // Opaque class that represents a local ack handle. We don't reuse the
22 // invalidation ack handles to avoid unnecessary dependencies.
48 // associated ack handle that an InvalidationHandler implementation can use to
  /frameworks/av/include/media/
SingleStateQueue.h 58 // returns a sequence number which can be used with ack()
62 bool ack();
65 bool ack(int32_t sequence);
  /packages/apps/Bluetooth/res/values/
test_strings.xml 7 <string name="ack_record">Ack record</string>
  /external/chromium_org/content/browser/renderer_host/input/
tap_suppression_controller_unittest.cc 177 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
190 // Send GestureFlingCancel Ack.
213 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
226 // Send GestureFlingCancel Ack.
257 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
270 // Send processed GestureFlingCancel Ack.
300 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
301 // TapDown, but there is a small delay between the Ack and TapDown.
313 // Send GestureFlingCancel Ack.
344 // Test TapSuppressionController for when GestureFlingCancel Ack comes befor
    [all...]

Completed in 1354 milliseconds

1 2 3 4 5 6 7 8 91011>>