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

1 2 3 4 5 6 7 8

  /external/fio/
flow.c 18 struct fio_flow *flow = td->flow; local
21 if (!flow)
24 sign = td->o.flow > 0 ? 1 : -1;
25 if (sign * flow->flow_counter > td->o.flow_watermark) {
35 * matter if the flow count is slightly inaccurate */
36 flow->flow_counter += td->o.flow;
42 struct fio_flow *flow = NULL; local
51 flow = flist_entry(n, struct fio_flow, list)
    [all...]
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/chrome/browser/extensions/api/identity/
gaia_web_auth_flow_unittest.cc 103 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
104 flow->Start();
109 flow->OnAuthFlowTitleChange(GetFinalTitle("error=access_denied"));
113 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
114 flow->Start();
116 flow->OnAuthFlowTitleChange(GetFinalTitle("access_token=fake_access_token"));
120 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
121 flow->Start();
123 flow->OnAuthFlowTitleChange(
128 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow() local
142 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
158 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
173 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
185 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
197 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
204 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
218 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
229 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
FlowControl.py 36 """Control flow graph node. Sequence of assignments and name references.
103 """Control-flow graph.
477 def __init__(self, name, flow):
479 self.flow = flow
483 for block in self.flow.blocks:
496 for block in self.flow.blocks:
523 def check_definitions(flow, compiler_directives):
524 flow.initialize()
525 flow.reaching_definitions(
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/nas/
SDL_nasaudio.h 45 AuFlowID flow; member in struct:SDL_PrivateAudioData
  /external/chromium_org/media/audio/win/
audio_device_listener_win.cc 20 static std::string FlowToString(EDataFlow flow) {
21 return (flow == eRender) ? "eRender" : "eConsole";
33 static std::string GetDeviceId(EDataFlow flow,
36 CoreAudioUtil::CreateDefaultDevice(flow, role);
136 EDataFlow flow, ERole role, LPCWSTR new_default_device_id) {
139 (flow != eRender && flow != eCapture)) {
146 flow == eRender ? (
165 << ", flow: " << FlowToString(flow)
    [all...]
audio_device_listener_win.h 46 STDMETHOD(OnDefaultDeviceChanged)(EDataFlow flow, ERole role,
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML.java 46 public enum Flow {
57 private final Flow flow; field in class:HTML.Element
62 * NOTE: Even though breaksFlow and flow are named similarly, they're not quite the same thing.
63 * Flow refers to whether the element is inherently character or block level. Breaks flow
66 * @throws IllegalArgumentException if name or flow is null.
69 boolean optionalEndTag, boolean breaksFlow, Flow flow) {
71 Preconditions.checkNotNull(flow, "Element flow can not be null")
    [all...]
  /external/chromium_org/chrome/browser/resources/hotword_audio_verification/
main.js 8 var flow = new Flow();
9 flow.startFlow();
43 flow.advanceStep();
55 flow.advanceStep.bind(flow));
flow.js 7 // Correspond to steps in the hotword opt-in flow.
21 // TODO(kcarattini): Remove the first flow, since we will not be
30 * Class to control the page flow of the always-on hotword and
34 function Flow() {
42 Flow.prototype.advanceStep = function() {
49 * Gets the appropriate flow and displays its first page.
51 Flow.prototype.startFlow = function() {
59 * Gets and starts the appropriate flow for the launch mode.
62 Flow.prototype.startFlowForMode_ = function(state) {
74 Flow.prototype.showStep_ = function()
    [all...]
  /external/tcpdump/
print-ip6.c 92 u_int flow; local
112 flow = EXTRACT_32BITS(&ip6->ip6_flow);
116 if (flow & 0x0f000000)
117 (void)ND_PRINT((ndo, "pri 0x%02x, ", (flow & 0x0f000000) >> 24));
118 if (flow & 0x00ffffff)
119 (void)ND_PRINT((ndo, "flowlabel 0x%06x, ", flow & 0x00ffffff));
122 if (flow & 0x0ff00000)
123 (void)ND_PRINT((ndo, "class 0x%02x, ", (flow & 0x0ff00000) >> 20));
124 if (flow & 0x000fffff)
125 (void)ND_PRINT((ndo, "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...]
  /external/chromium_org/chrome/browser/chromeos/login/users/
chrome_user_manager.h 37 // Method that allows to set |flow| for user identified by |user_id|.
38 // Flow should be set before login attempt.
39 // Takes ownership of the |flow|, |flow| will be deleted in case of login
41 virtual void SetUserFlow(const std::string& user_id, UserFlow* flow) = 0;
43 // Return user flow for current user. Returns instance of DefaultUserFlow if
44 // no flow was defined for current user, or user is not logged in.
48 // Return user flow for user identified by |user_id|. Returns instance of
49 // DefaultUserFlow if no flow was defined for user.
53 // Resets user flow for user identified by |user_id|
    [all...]
  /external/chromium_org/chromeos/attestation/
attestation_flow_unittest.cc 77 // Use DBusCallbackFalse so the full enrollment flow is triggered.
142 AttestationFlow flow(&async_caller, &client, proxy_interface.Pass());
143 flow.GetCertificate(PROFILE_ENTERPRISE_USER_CERTIFICATE, "fake@test.com",
170 AttestationFlow flow(&async_caller, &client, proxy_interface.Pass());
171 flow.GetCertificate(PROFILE_ENTERPRISE_USER_CERTIFICATE, "", "", true,
201 AttestationFlow flow(&async_caller, &client, proxy_interface.Pass());
202 flow.GetCertificate(PROFILE_ENTERPRISE_USER_CERTIFICATE, "", "", true,
237 AttestationFlow flow(&async_caller, &client, proxy_interface.Pass());
238 flow.GetCertificate(PROFILE_ENTERPRISE_USER_CERTIFICATE, "", "", true,
281 AttestationFlow flow(&async_caller, &client, proxy_interface.Pass())
    [all...]
  /external/opencv/cvaux/src/
enmin.cpp 82 // weight - weight of the edge ( maximum flow via the edge )
83 // flow - current flow via the edge
90 int flow;
167 // function makeGraph creates initial graph to find maximum flow in it
238 ( ( Edge* )newEdgePtr ) -> flow = 0;
253 ( ( Edge* )tempEdgePtr ) -> flow = 0;
274 ( ( Edge* )tempEdgePtr ) -> flow = 0;
281 ( ( Edge* )newEdgePtr ) -> flow = 0;
293 ( ( Edge* )newEdgePtr ) -> flow = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
LineBoxListPainter.cpp 51 RenderInline* flow = *it; local
52 InlinePainter(*flow).paintOutline(info, paintOffset);
  /external/chromium_org/remoting/webapp/
host_setup_dialog.js 12 * steps for the flow.
50 /** @return {remoting.HostSetupFlow.State} Current state of the flow. */
73 // Stop the setup flow if user rejected one of the actions.
212 var flow = [
224 flow.shift();
227 this.startNewFlow_(flow);
263 * Starts new flow with the specified sequence of steps.
277 * flow and start the action corresponding to the current step (if
348 var flow = this.flow_;
352 flow.switchToErrorState(error)
    [all...]
  /bionic/libc/kernel/uapi/linux/hsi/
hsi_char.h 47 uint32_t flow; member in struct:hsc_rx_config
  /development/ndk/platforms/android-L/include/linux/hsi/
hsi_char.h 47 uint32_t flow; member in struct:hsc_rx_config
  /external/chromium-trace/trace-viewer/src/ui/
overlay.css 12 -webkit-flex-flow: row;
31 -webkit-flex-flow: column;
  /external/kernel-headers/original/uapi/linux/hsi/
hsi_char.h 52 uint32_t flow; member in struct:hsc_rx_config
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/hsi/
hsi_char.h 47 uint32_t flow; member in struct:hsc_rx_config

Completed in 1212 milliseconds

1 2 3 4 5 6 7 8