Searched refs:Phase (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_swizzle.h35 unsigned char Phase[4]; member in struct:rc_swizzle_split
H A Dradeon_dataflow_swizzles.c57 mov->U.I.DstReg.WriteMask = split.Phase[phase];
63 if (!GET_BIT(split.Phase[phase], chan))
71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
74 else if (masked_negate == split.Phase[phase])
H A Dr300_fragprog_swizzle.c191 split->Phase[split->NumPhases++] = best_matchmask;
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_swizzle.h35 unsigned char Phase[4]; member in struct:rc_swizzle_split
H A Dradeon_dataflow_swizzles.c57 mov->U.I.DstReg.WriteMask = split.Phase[phase];
63 if (!GET_BIT(split.Phase[phase], chan))
71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
74 else if (masked_negate == split.Phase[phase])
H A Dr300_fragprog_swizzle.c191 split->Phase[split->NumPhases++] = best_matchmask;
/external/llvm/utils/release/
H A Dtest-release.sh267 Phase="$1"
305 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
310 Phase="$1"
323 2>&1 | tee $LogDir/llvm.make-Phase$Phase-$Flavor.log
328 2>&1 | tee $LogDir/llvm.install-Phase$Phase-$Flavor.log
333 Phase="$1"
343 echo "# Compiling phase $Phase dragoneg
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_register_job.h76 enum Phase { enum in class:content::ServiceWorkerRegisterJob
111 void SetPhase(Phase phase);
161 Phase phase_;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationNode.h67 enum Phase { enum in class:blink::AnimationNode
85 Phase phase() const { return ensureCalculated().phase; }
158 Phase phase;
H A DTimingCalculations.h48 static inline AnimationNode::Phase calculatePhase(double activeDuration, double localTime, const Timing& specified)
60 static inline bool isActiveInParentPhase(AnimationNode::Phase parentPhase, Timing::FillMode fillMode)
75 static inline double calculateActiveTime(double activeDuration, Timing::FillMode fillMode, double localTime, AnimationNode::Phase parentPhase, AnimationNode::Phase phase, const Timing& specified)
H A DAnimationNode.cpp110 const Phase currentPhase = calculatePhase(activeDuration, localTime, m_timing);
112 const AnimationNode::Phase parentPhase = AnimationNode::PhaseActive;
138 const AnimationNode::Phase localCurrentPhase = calculatePhase(localActiveDuration, localLocalTime, m_timing);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTracingModel.js18 WebInspector.TracingModel.Phase = {
62 return phase === WebInspector.TracingModel.Phase.AsyncBegin || phase === WebInspector.TracingModel.Phase.AsyncEnd ||
63 phase === WebInspector.TracingModel.Phase.AsyncStepInto || phase === WebInspector.TracingModel.Phase.AsyncStepPast;
162 if (payload.ph !== WebInspector.TracingModel.Phase.Metadata) {
422 WebInspector.TracingModel.Event.call(this, category, name, WebInspector.TracingModel.Phase.SnapshotObject, startTime, thread);
584 var phase = WebInspector.TracingModel.Phase;
616 var syntheticEndEvent = new WebInspector.TracingModel.Event(startEvent.category, startEvent.name, WebInspector.TracingModel.Phase.AsyncEnd, lastEventTime, startEvent.thread);
628 var phase = WebInspector.TracingModel.Phase;
[all...]
H A DTimelineFlameChart.js110 if (event.phase === WebInspector.TracingModel.Phase.AsyncStepInto || event.phase === WebInspector.TracingModel.Phase.AsyncStepPast)
228 if (!e.endTime && e.phase !== WebInspector.TracingModel.Phase.Instant)
269 lastUsedTimeByLevel[level] = lastStep.phase === WebInspector.TracingModel.Phase.AsyncEnd ? lastStep.startTime : Infinity;
354 WebInspector.TracingModel.Phase.Complete, e.startTime, e.thread);
643 var eventOffset = steps[1].phase === WebInspector.TracingModel.Phase.AsyncStepPast ? 1 : 0;
H A DTimelineJSProfile.js123 WebInspector.TracingModel.Phase.Instant, timestamps[i], mainThread);
H A DTracingTimelineModel.js381 if (event.phase !== WebInspector.TracingModel.Phase.AsyncEnd && recordStack[0]._event.endTime >= event.startTime)
383 if (event.phase === WebInspector.TracingModel.Phase.AsyncEnd) {
401 if (event.phase === WebInspector.TracingModel.Phase.AsyncEnd)
411 if (event.endTime || (event.phase === WebInspector.TracingModel.Phase.AsyncBegin && parentRecord))
/external/chromium_org/content/common/input/
H A Dsynthetic_web_input_event_builders.h28 blink::WebMouseWheelEvent::Phase phase);
H A Dsynthetic_web_input_event_builders.cc50 WebMouseWheelEvent::Phase phase) {
/external/chromium_org/base/test/
H A Dtrace_event_analyzer.h39 // Query(EVENT_PHASE) == Query::Phase(TRACE_EVENT_PHASE_BEGIN) &&
192 static Query Phase(char phase);
246 return Query(EVENT_PHASE) == Query::Phase(phase);
313 return Query(OTHER_PHASE) == Query::Phase(phase);
349 return (Query(EVENT_PHASE) == Query::Phase(TRACE_EVENT_PHASE_BEGIN)) &&
355 return (Query(EVENT_PHASE) == Query::Phase(TRACE_EVENT_PHASE_COMPLETE));
361 Query::Phase(TRACE_EVENT_PHASE_ASYNC_BEGIN)) &&
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputEvent.h346 enum Phase { enum in class:blink::WebMouseWheelEvent
369 Phase phase;
370 Phase momentumPhase;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorTimelineAgent.h102 enum Phase { PhaseBegin, PhaseEnd }; enum in class:blink::FINAL::GPUEvent
105 phase(static_cast<Phase>(phase)),
110 Phase phase;
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_render_widget_host_view_mac_delegate_browsertest.cc68 void SendWheelEvent(int dx, int dy, blink::WebMouseWheelEvent::Phase phase) {
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.h236 AnimationNode::Phase m_previousPhase;
254 AnimationNode::Phase m_previousPhase;
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmslut.c1283 int Phase = 0, NextPhase; local
1285 From16ToFloat(In, &Storage[Phase][0], lut ->InputChannels);
1291 NextPhase = Phase ^ 1;
1292 mpe ->EvalPtr(&Storage[Phase][0], &Storage[NextPhase][0], mpe);
1293 Phase = NextPhase;
1297 FromFloatTo16(&Storage[Phase][0], Out, lut ->OutputChannels);
1309 int Phase = 0, NextPhase; local
1311 memmove(&Storage[Phase][0], In, lut ->InputChannels * sizeof(cmsFloat32Number));
1317 NextPhase = Phase ^ 1;
1318 mpe ->EvalPtr(&Storage[Phase][
[all...]
/external/chromium_org/cc/resources/
H A Dpicture_layer_tiling.h95 enum Phase { enum in class:cc::PictureLayerTiling::TilingRasterTileIterator
110 Phase phase_;
/external/clang/include/clang/Driver/
H A DDriver.h344 /// \p Phase on the \p Input, taking in to account arguments
346 Action *ConstructPhaseAction(const llvm::opt::ArgList &Args, phases::ID Phase,

Completed in 743 milliseconds

12