Searched defs:cw (Results 1 - 14 of 14) sorted by relevance

/external/quake/quake/src/QW/client/
H A Dsys_dosa.s38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
42 cw: .long 0 label
74 fnstcw cw
75 movl cw,%eax
H A Dsys_wina.s58 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
62 cw: .long 0 label
94 fnstcw cw
95 movl cw,%eax
H A Dsys_wina.asm249 public ceil_cw, single_cw, full_cw, cw, pushed_cw
253 cw dd 0 define
276 fnstcw ds:word ptr[cw]
277 mov eax,ds:dword ptr[cw]
/external/quake/quake/src/WinQuake/
H A Dsys_dosa.s38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
42 cw: .long 0 label
74 fnstcw cw
75 movl cw,%eax
H A Dsys_wina.s59 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
63 cw: .long 0 label
95 fnstcw cw
96 movl cw,%eax
/external/qemu/slirp/
H A Dtcp_input.c1189 register u_int cw = tp->snd_cwnd; local
1192 if (cw > tp->snd_ssthresh)
1193 incr = incr * incr / cw;
1194 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale);
/external/qemu/slirp-android/
H A Dtcp_input.c1195 register u_int cw = tp->snd_cwnd; local
1198 if (cw > tp->snd_ssthresh)
1199 incr = incr * incr / cw;
1200 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale);
/external/kernel-headers/original/asm-x86/
H A Dsigcontext.h39 unsigned long cw; member in struct:_fpstate
/external/libvpx/vp8/decoder/x86/
H A Donyxdxv.c219 int cw, ch; local
476 cw = hs * common->Width / hr;
484 cw = common->Width;
491 cw = common->Width;
496 frame_buffer->y_width = cw;
498 frame_buffer->uv_width = cw / 2;
/external/webkit/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.cpp454 double cx, cy, cz, cw; local
491 cw = aw * scale + bw * invscale;
493 qa[0] = cx; qa[1] = cy; qa[2] = cz; qa[3] = cw;
/external/webkit/WebCore/rendering/
H A DRenderImage.cpp609 int cw = containingBlockWidthForContent(); local
610 if (cw && width>cw)
611 width = cw;
648 int cw = containingBlockWidthForContent(); local
649 if (cw && width && width > cw)
650 height = cw * height / width; // preserve aspect ratio
H A DRenderTable.cpp287 int cw = containingBlockWidthForContent(); local
288 bool shouldRenderAsSingleColumn = (width() > cw);
302 if (width() > cw)
303 setWidth(cw);
304 if (m_minPrefWidth > cw)
305 m_minPrefWidth = cw;
306 if (m_maxPrefWidth > cw)
307 m_maxPrefWidth = cw;
H A DRenderBox.cpp1396 int RenderBox::calcWidthUsing(WidthType widthType, int cw) argument
1408 int marginLeft = style()->marginLeft().calcMinValue(cw);
1409 int marginRight = style()->marginRight().calcMinValue(cw);
1410 if (cw)
1411 widthResult = cw - marginLeft - marginRight;
1418 widthResult = calcBorderBoxWidth(w.calcValue(cw));
1680 const int cw = isPositioned() ? containingBlockWidthForPositioned(toRenderBoxModelObject(container())) : containingBlockWidthForContent(); local
1681 if (cw > 0)
1682 return calcContentBoxWidth(width.calcMinValue(cw));
1786 int cw local
[all...]
H A DRenderBlock.cpp2585 int cw = 0; local
2587 cw = containingBlock()->availableWidth();
2588 left += style()->textIndent().calcMinValue(cw);
2619 int cw = 0; local
2621 cw = containingBlock()->availableWidth();
2622 right -= style()->textIndent().calcMinValue(cw);
4074 int cw = containingBlock()->contentWidth(); local
4196 ti = style()->textIndent().calcMinValue(cw);
4264 ti = style()->textIndent().calcMinValue(cw);

Completed in 533 milliseconds