overflow

[v. oh-ver-floh; n. oh-ver-floh] /v. ˌoʊ vərˈfloʊ; n. ˈoʊ vərˌfloʊ/
verb (used without object), overflowed, overflown, overflowing.
1.
to flow or run over, as rivers or water:
After the thaw, the river overflows and causes great damage.
2.
to have the contents flowing over or spilling, as an overfull container:
Stop pouring or your glass is going to overflow.
3.
to pass from one place or part to another as if flowing from an overfull space:
The population overflowed into the adjoining territory.
4.
to be filled or supplied with in great measure:
a heart overflowing with gratitude; a region overflowing with orchards and vineyards.
verb (used with object), overflowed, overflown, overflowing.
5.
to flow over; flood; inundate:
The river overflowed several farms.
6.
to flow over or beyond (the brim, banks, borders, etc.).
7.
to cause to overflow.
8.
to flow over the edge or brim of (a receptacle, container, etc.).
9.
to fill to the point of running over.
noun
10.
an overflowing:
the annual overflow of the Nile.
11.
something that flows or runs over:
to carry off the overflow from a fountain.
12.
a portion crowded out of an overfilled place:
to house the overflow of the museum's collection in another building.
13.
an excess or superabundance:
an overflow of applicants for the job.
14.
an outlet or receptacle for excess liquid:
The tank is equipped with an overflow.
Origin
before 900; Middle English overflowen, Old English oferflōwan. See over-, flow
Related forms
overflowable, adjective
overflowingly, adverb
unoverflowing, adjective
Synonyms
13. overabundance, surplus, plethora, flood, glut.
Examples from the web for overflow
  • They all also have a watering tube as well as an overflow hole.
  • During heavy rain, it would overflow onto the road-we're talking about feet of water, not inches.
  • Consider connecting several rain barrels together for collection of overflow from the first main barrel.
  • Campus police officers directed them to an overflow room where they could watch the hearing on a video screen.
  • In my heart there is a chamber larger than a stadium that scarcely contains my overflow admiration and affection for jazz singers.
  • Find out how divers clean out the buildup in a sewage overflow tunnel.
  • The main hotel is full, but there is still room in the overflow hotel.
  • Type too many characters into an input string and you will overflow the input buffer.
  • Bakeries and cafes overflow as life returns to the streets.
  • The audience was packed tight, rows of folding chairs extended beyond the wooden pews to capture the overflow.
British Dictionary definitions for overflow

overflow

verb (ˌəʊvəˈfləʊ) -flows, -flowing -flowed, (formerly) -flown
1.
to flow or run over (a limit, brim, bank, etc)
2.
to fill or be filled beyond capacity so as to spill or run over
3.
(intransitive) usually foll by with. to be filled with happiness, tears, etc
4.
(transitive) to spread or cover over; flood or inundate
noun (ˈəʊvəˌfləʊ)
5.
overflowing matter, esp liquid
6.
any outlet that enables surplus liquid to be discharged or drained off, esp one just below the top of a tank or cistern
7.
the amount by which a limit, capacity, etc, is exceeded
8.
(computing) a condition that occurs when numeric operations produce results too large to store in the memory space assigned to it
Word Origin and History for overflow
v.

Old English oferfleow "to flow across, flood, inundate," also "to flow over (a brim or bank);" see over- + flow (v.). Related: Overflowed; overflowing.

n.

1580s, "act of overflowing," from overflow (v.).

overflow in Technology
programming
The condition that occurs when the result of a calculation is too big to store in the intended format. For example, the result of adding one to 255 cannot be represented as an unsigned, eight-bit integer. In a signed integer representation, overflow can occur when an integer becomes either too positive or too negative.
Overflow can also occur in the exponent of a floating point number representation. The term "underflow" is sometimes used for negative overflow of the exponent.
Ignoring overflow will result in nonsensicle results such as 255 + 1 = 0. At the hardware level, the ALU typically indicates overflow by setting an overflow flag bit which the program can test. Programming languages will typically respond to overflow by raising some kind of signal or other error condition to halt normal execution.
Some languages attempt to avoid overflow by providing (optional) variable length number representation (multiprecission arithmetic) so that the maximum number representable is limited only by the amount of storage available.
(2008-05-30)