HomeSort by relevance Sort by last modified time
    Searched refs:overflowed (Results 1 - 14 of 14) sorted by null

  /external/quake/quake/src/QW/server/
sv_nchan.c 44 cl->netchan.message.overflowed = true; // this will drop the client
69 if (cl->backbuf.overflowed) {
71 cl->netchan.message.overflowed = true; // this will drop the client
sv_send.c 578 msg.overflowed = false;
590 if (client->datagram.overflowed)
591 Con_Printf ("WARNING: datagram overflowed for %s\n", client->name);
600 if (msg.overflowed)
602 Con_Printf ("WARNING: msg overflowed for %s\n", client->name);
666 if (sv.datagram.overflowed)
750 // if the reliable message overflowed,
752 if (c->netchan.message.overflowed)
756 SV_BroadcastPrintf (PRINT_HIGH, "%s overflowed\n", c->name);
  /external/quake/quake/src/WinQuake/
common.h 42 qboolean overflowed; // set to true if the buffer size failed member in struct:sizebuf_s
sv_main.cpp 852 // check for an overflowed message. Should only happen
855 if (host_client->message.overflowed)
858 host_client->message.overflowed = false;
common.cpp 766 buf->overflowed = true;
    [all...]
  /gdk/samples/quake/jni/
common.h 42 qboolean overflowed; // set to true if the buffer size failed member in struct:sizebuf_s
sv_main.cpp 852 // check for an overflowed message. Should only happen
855 if (host_client->message.overflowed)
858 host_client->message.overflowed = false;
common.cpp 766 buf->overflowed = true;
    [all...]
  /external/quake/quake/src/QW/client/
common.h 40 qboolean overflowed; // set to true if the buffer size failed member in struct:sizebuf_s
net_chan.c 53 If the message buffer is overflowed, either by a single message, or by
232 if (chan->message.overflowed)
common.c 853 buf->overflowed = false;
870 buf->overflowed = true;
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 596 // Compute the size before cookie, and track whether it overflowed.
602 // Add in the cookie, and check whether it's overflowed.
703 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); local
705 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
707 hasOverflow = overflowed;
742 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); local
744 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
746 hasOverflow = overflowed;
    [all...]
  /external/v8/src/
mark-compact.h 188 bool overflowed() const { return overflowed_; } function in class:v8::internal::MarkingDeque
195 // otherwise mark the object as overflowed and wait for a rescan of the
675 // or overflowed in the heap.
680 // overflowed objects in the heap, in which case the marking stack's
684 // Refill the marking stack with overflowed objects from the heap. This
mark-compact.cc 755 // the marking stack. Instead, we mark them as both marked and overflowed.
756 // When the stack is in the overflowed state, objects marked as overflowed
759 // the heap looking for objects marked as overflowed, push them on the stack,
    [all...]

Completed in 788 milliseconds