HomeSort by relevance Sort by last modified time
    Searched refs:flow (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu4c/samples/layout/
pflow.h 23 void pf_close(pf_flow *flow);
25 le_int32 pf_getAscent(pf_flow *flow);
26 le_int32 pf_getLineHeight(pf_flow *flow);
27 le_int32 pf_getLineCount(pf_flow *flow);
28 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height);
29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
pflow.c 110 pf_object *flow; local
123 flow = NEW_ARRAY(pf_object, 1);
125 flow->fParagraphLayout = NULL;
126 flow->fParagraphCount = 0;
127 flow->fParagraphMax = PARA_GROW;
128 flow->fParagraphGrow = PARA_GROW;
129 flow->fLineCount = 0;
130 flow->fLinesMax = LINE_GROW;
131 flow->fLinesGrow = LINE_GROW;
132 flow->fLines = NULL
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/nas/
SDL_nasaudio.h 45 AuFlowID flow; member in struct:SDL_PrivateAudioData
SDL_nasaudio.c 128 AuWriteElement(this->hidden->aud, this->hidden->flow, 0, this->hidden->mixlen, this->hidden->mixbuf, AuFalse, NULL);
257 if ((this->hidden->dev == AuNone) || (!(this->hidden->flow = AuCreateFlow(this->hidden->aud, NULL)))) {
280 AuSetElements(this->hidden->aud, this->hidden->flow, AuTrue, 2, elms, NULL);
281 AuRegisterEventHandler(this->hidden->aud, AuEventHandlerIDMask, 0, this->hidden->flow,
284 AuStartFlow(this->hidden->aud, this->hidden->flow, NULL);
  /external/tcpdump/
print-ip6.c 60 u_int flow; local
80 flow = EXTRACT_32BITS(&ip6->ip6_flow);
84 if (flow & 0x0f000000)
85 (void)printf("pri 0x%02x, ", (flow & 0x0f000000) >> 24);
86 if (flow & 0x00ffffff)
87 (void)printf("flowlabel 0x%06x, ", flow & 0x00ffffff);
90 if (flow & 0x0ff00000)
91 (void)printf("class 0x%02x, ", (flow & 0x0ff00000) >> 20);
92 if (flow & 0x000fffff)
93 (void)printf("flowlabel 0x%05x, ", flow & 0x000fffff)
    [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 2 \def\TITLE{IPv6 Flow Labels}
5 \Large\bf IPv6 Flow Labels in Linux-2.2.
22 Every IPv6 packet carries 28 bits of flow information. RFC2460 splits
24 prefer this term) and 20 bits of flow label. Currently there exist
25 no well-defined API to manage IPv6 flow information. In this document
42 \item To assign flow labels to packets sent by user.
44 \item To get flow labels of received packets. I do not know
46 want to use flow labels to distinguish sub-flows.
48 \item To allocate flow labels in the way, compliant to RFC2460. Namely:
52 Flow labels must be uniformly distributed (pseudo-)random numbers
    [all...]
ip-cref.tex     [all...]
  /external/webkit/WebCore/rendering/
InlineFlowBox.cpp 223 // (2) If the last line box for the flow has an object following it on the line (ltr,
315 InlineFlowBox* flow = static_cast<InlineFlowBox*>(curr); local
316 xPos += flow->marginLeft();
317 xPos = flow->placeBoxesHorizontally(xPos, needsWordSpacing);
318 xPos += flow->marginRight();
319 leftLayoutOverflow = min(leftLayoutOverflow, flow->leftLayoutOverflow());
320 rightLayoutOverflow = max(rightLayoutOverflow, flow->rightLayoutOverflow());
321 leftVisualOverflow = min(leftVisualOverflow, flow->leftVisualOverflow());
322 rightVisualOverflow = max(rightVisualOverflow, flow->rightVisualOverflow());
577 InlineFlowBox* flow = static_cast<InlineFlowBox*>(curr) local
    [all...]
RenderLineBoxList.cpp 210 RenderInline* flow = *it; local
211 flow->paintOutline(info.context, tx, ty);
RenderInline.cpp 370 RenderBoxModelObject* flow = continuationBefore(beforeChild); local
376 RenderBoxModelObject* cont = nextContinuation(flow);
380 beforeChildParent = flow;
390 bool flowInline = flow->isInline();
392 if (flow == beforeChildParent)
393 return flow->addChildIgnoringContinuation(newChild, beforeChild);
400 return flow->addChildIgnoringContinuation(newChild, 0); // Just treat like an append.
808 // We have to split the parent flow.
    [all...]
RenderBox.cpp 1801 const RenderInline* flow = toRenderInline(containingBlock); local
2154 const RenderInline* flow = toRenderInline(containerBlock); local
2560 const RenderInline* flow = toRenderInline(containerBlock); local
    [all...]
RenderBlock.cpp 610 // Whether or not we collapse is dependent on whether all our normal flow children
790 // It's weird that we're treating float information as normal flow overflow, but we do this because floatRect() isn't
1899 RenderInline* flow = *it; local
    [all...]
RenderBlockLineLayout.cpp 316 // Set bits on our inline flow boxes that indicate which sides should
483 // compute accurate widths for the inline flow boxes).
505 // to update the static normal flow x/y of positioned elements.
671 // of normal flow. Don't need to worry about height any more.
    [all...]
  /external/bluetooth/hcidump/src/
bpasniff.c 180 uint8_t flow, arqn, seqn, hec, llid, pflow; local
227 flow = (temp & 0x04) >> 2;
241 printf("%s: addr 0x%02x flow %d arqn %d seqn %d hec 0x%02x llid %d pflow %d plen %d\n",
242 type2str(type), addr, flow, arqn, seqn, hec, llid, pflow, plen);
  /external/kernel-headers/original/linux/
serial_core.h 372 int *flow);
374 int parity, int bits, int flow);
netfilter.h 322 #include <net/flow.h>
  /external/v8/tools/
tickprocessor-driver.js 29 // Tick Processor's code flow.
  /frameworks/base/core/java/android/widget/
GridView.java 236 private View makeRow(int startPos, int y, boolean flow) {
267 final int where = flow ? -1 : pos - startPos;
268 child = makeAndAddView(pos, y, flow, nextLeft, selected, where);
    [all...]
ListView.java     [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cdk.h 218 unsigned long flow; member in struct:asyport
  /external/v8/
Android.v8common.mk 19 src/data-flow.cc \
  /prebuilt/common/ecj/
ecj.jar 
  /external/blktrace/btreplay/doc/
btreplay.tex 66 The basic operating work-flow to replay IOs would be something like:
  /external/v8/benchmarks/
deltablue.js 353 * should flow based on the relative strength of the variables related,
  /external/webkit/SunSpider/tests/v8-v4/
v8-deltablue.js 347 * should flow based on the relative strength of the variables related,

Completed in 488 milliseconds

1 2