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

1 2 3 4 5 6 7 8 910

  /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/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
debug-mode.rb 40 ack
44 ack
54 def ack method in class:ANTLRDebugger
55 @socket.write( "ACK\n" )
  /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/av/media/libmedia/
SingleStateQueue.cpp 45 template<typename T> bool SingleStateQueue<T>::Mutator::ack() function in class:android::SingleStateQueue::Mutator
50 template<typename T> bool SingleStateQueue<T>::Mutator::ack(int32_t sequence) function in class:android::SingleStateQueue::Mutator
  /frameworks/av/services/audioflinger/
StateQueue.cpp 94 #define PUSH_BLOCK_ACK_NS 3000000L // 3 ms: time between checks for ack in push()
118 const T *ack = (const T *) mAck; // no additional barrier needed local
119 if (ack == mExpecting) {
162 const T *ack = (const T *) mAck; // no additional barrier needed local
163 if (ack == mExpecting) {
  /external/chromium_org/content/renderer/input/
input_event_filter.cc 136 InputEventAckState ack = handler_.Run(routing_id, event, &latency_info); local
138 if (ack == INPUT_EVENT_ACK_STATE_NOT_CONSUMED) {
150 SendACK(event->type, ack, latency_info, routing_id);
  /external/smack/src/org/jivesoftware/smack/
SASLAuthentication.java 466 IQ ack = (IQ) collector.nextResult(SmackConfiguration.getPacketReplyTimeout()); local
468 if (ack == null) {
472 else if (ack.getType() == IQ.Type.ERROR) {
473 throw new XMPPException(ack.getError());
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceiptManager.java 122 Message ack = new Message(packet.getFrom(), Message.Type.normal); local
123 ack.addExtension(new DeliveryReceipt(packet.getPacketID()));
124 connection.sendPacket(ack);
  /external/chromium_org/content/browser/renderer_host/input/
touch_input_browsertest.cc 114 InputEventAckState ack = INPUT_EVENT_ACK_STATE_UNKNOWN; variable
115 InputHostMsg_HandleInputEvent_ACK::Read(&message, &type, &ack, &latency);
118 this, type, ack));
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_compositing_helper.cc 76 cc::CompositorFrameAck ack; local
78 ack.last_software_frame_id = unacked_software_frames_.back();
89 ack));
96 cc::CompositorFrameAck ack;
97 resource_collection_->TakeUnusedResourcesForChildCompositor(&ack.resources);
106 ack));
163 // We need to send an ACK to for every buffer sent to us.
166 // buffer arriving, no ACK is needed.
187 cc::CompositorFrameAck ack; local
188 ack.gl_frame_data.reset(new cc::GLFrameData())
448 cc::CompositorFrameAck ack; local
    [all...]
  /external/smack/src/com/kenai/jbosh/
CMSessionParams.java 44 private final AttrAck ack; field in class:CMSessionParams
75 ack = aAck;
85 resp.getAttribute(Attributes.ACK));
166 return ack;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cn_proc.h 65 } ack; member in union:proc_event::__anon40173
connector.h 64 __u32 ack; member in struct:cn_msg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 65 } ack; member in union:proc_event::__anon41764
connector.h 64 __u32 ack; member in struct:cn_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 65 } ack; member in union:proc_event::__anon43278
connector.h 64 __u32 ack; member in struct:cn_msg
  /bionic/libc/kernel/common/linux/
if_arcnet.h 75 uint8_t ack; member in union:arc_cap::__anon395
irq.h 69 void (*ack)(unsigned int irq); member in struct:irq_chip
  /development/ndk/platforms/android-3/include/linux/
if_arcnet.h 67 uint8_t ack; member in union:arc_cap::__anon1073
irq.h 61 void (*ack)(unsigned int irq); member in struct:irq_chip
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3debugeventlistener.h 288 void (*ack) (pANTLR3_DEBUG_EVENT_LISTENER delboy); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3debughandlers.c 87 static void ack (pANTLR3_DEBUG_EVENT_LISTENER delboy);
314 ack (delboy);
321 // Send the supplied text and wait for an ack from the client
326 ack(delboy);
330 ack (pANTLR3_DEBUG_EVENT_LISTENER delboy) function
337 // Ack terminates in a line feed, so we just wait for
350 // completely if we don't get the terminating '\n' for the ack.
640 // Transmit the message and wait for ack
660 // Transmit the message and wait for ack
689 // Transmit the message and wait for ack
    [all...]

Completed in 1311 milliseconds

1 2 3 4 5 6 7 8 910