Searched refs:flow (Results 1 - 25 of 114) sorted by relevance

12345

/external/fio/
H A Dflow.c18 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
77 flow_put(struct fio_flow *flow) argument
[all...]
/external/icu/icu4c/source/samples/layout/
H A Dpflow.h23 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);
H A Dpflow.c110 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
222 pf_close(pf_flow *flow) argument
245 pf_getAscent(pf_flow *flow) argument
252 pf_getLineHeight(pf_flow *flow) argument
259 pf_getLineCount(pf_flow *flow) argument
276 pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height) argument
315 pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dgaia_web_auth_flow_unittest.cc103 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 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...]
H A Didentity_apitest.cc376 void set_mint_token_flow(scoped_ptr<OAuth2MintTokenFlow> flow) { argument
377 flow_ = flow.Pass();
833 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
835 EXPECT_CALL(*func.get(), CreateMintTokenFlow(_)).WillOnce(Return(flow));
861 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
863 EXPECT_CALL(*func.get(), CreateMintTokenFlow(_)).WillOnce(Return(flow));
880 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
882 EXPECT_CALL(*func.get(), CreateMintTokenFlow(_)).WillOnce(Return(flow));
898 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
900 EXPECT_CALL(*func.get(), CreateMintTokenFlow(_)).WillOnce(Return(flow));
923 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
949 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
982 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1013 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1044 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1063 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1081 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1101 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1118 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1135 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1152 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1184 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1202 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1240 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1329 TestHangOAuth2MintTokenFlow* flow = new TestHangOAuth2MintTokenFlow(); local
1425 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1464 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1596 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1627 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
1646 TestOAuth2MintTokenFlow* flow = new TestOAuth2MintTokenFlow( local
[all...]
/external/chromium_org/media/audio/win/
H A Daudio_device_listener_win.cc20 static std::string FlowToString(EDataFlow flow) { argument
21 return (flow == eRender) ? "eRender" : "eConsole";
33 static std::string GetDeviceId(EDataFlow flow, argument
36 CoreAudioUtil::CreateDefaultDevice(flow, role);
136 EDataFlow flow, ERole role, LPCWSTR new_default_device_id) {
139 (flow != eRender && flow != eCapture)) {
147 flow == eConsole ?
151 flow == eConsole ?
165 << ", flow
135 OnDefaultDeviceChanged( EDataFlow flow, ERole role, LPCWSTR new_default_device_id) argument
[all...]
H A Daudio_device_listener_win.h46 STDMETHOD(OnDefaultDeviceChanged)(EDataFlow flow, ERole role,
/external/qemu/distrib/sdl-1.2.15/src/audio/nas/
H A DSDL_nasaudio.h45 AuFlowID flow; member in struct:SDL_PrivateAudioData
H A DSDL_nasaudio.c250 NAS_AuWriteElement(this->hidden->aud, this->hidden->flow, 0, this->hidden->mixlen, this->hidden->mixbuf, AuFalse, NULL);
380 if ((this->hidden->dev == AuNone) || (!(this->hidden->flow = NAS_AuCreateFlow(this->hidden->aud, NULL)))) {
404 NAS_AuSetElements(this->hidden->aud, this->hidden->flow, AuTrue, 2, elms, NULL);
405 NAS_AuRegisterEventHandler(this->hidden->aud, AuEventHandlerIDMask, 0, this->hidden->flow,
408 NAS_AuStartFlow(this->hidden->aud, this->hidden->flow, NULL);
/external/chromium_org/remoting/webapp/
H A Dhost_setup_dialog.js12 * 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
[all...]
/external/tcpdump/
H A Dprint-ip6.c92 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
[all...]
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex22 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:
56 Flows with coinciding source address and flow label must have identical
65 with flow labels.
75 flow labe
[all...]
/external/chromium_org/chromeos/attestation/
H A Dattestation_flow_unittest.cc77 // 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(
[all...]
/external/opencv/cvaux/src/
H A Denmin.cpp82 // 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
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Doverlay.css12 -webkit-flex-flow: row;
31 -webkit-flex-flow: column;
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dscreen_manager.cc79 void ScreenManager::SetScreenFlow(ScreenFlow* flow) { argument
80 if (flow)
81 flow->set_screen_manager(this);
83 flow_.reset(flow);
/external/kernel-headers/original/uapi/linux/hsi/
H A Dhsi_char.h52 uint32_t flow; member in struct:hsc_rx_config
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DdevicesView.css29 flex-flow: row wrap;
/external/bluetooth/bluedroid/stack/rfcomm/
H A Drfc_port_if.c134 UINT8 flow; local
144 /* Negotiate the flow control mechanism. If flow control mechanism for */
147 flow = (p_mcb->flow == PORT_FC_UNDEFINED) ? PORT_FC_DEFAULT : p_mcb->flow;
150 if (flow == PORT_FC_CREDIT)
270 ** Description This function is called by the port entity when flow
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb23 def tidy( here_doc, flow = false )
25 if flow
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dfirst_run.css65 flex-flow: row;
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcolorSuggestionPicker.css62 flex-flow: row wrap;
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_pan_internal.h82 int flow; // 1: outbound data flow on; 0: outbound data flow off member in struct:__anon1045
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_reset.css23 flex-flow: column;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoy.ml41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)

Completed in 4009 milliseconds

12345