Home
last modified time | relevance | path

Searched refs:Stage (Results 1 – 25 of 229) sorted by relevance

12345678910

/external/pdfium/core/fpdfapi/edit/
Dcpdf_creator.cpp230 CPDF_Creator::Stage CPDF_Creator::WriteDoc_Stage1() { in WriteDoc_Stage1()
231 ASSERT(m_iStage > Stage::kInvalid || m_iStage < Stage::kInitWriteObjs20); in WriteDoc_Stage1()
232 if (m_iStage == Stage::kInit0) { in WriteDoc_Stage1()
238 m_iStage = Stage::kWriteHeader10; in WriteDoc_Stage1()
240 if (m_iStage == Stage::kWriteHeader10) { in WriteDoc_Stage1()
243 return Stage::kInvalid; in WriteDoc_Stage1()
253 return Stage::kInvalid; in WriteDoc_Stage1()
255 m_iStage = Stage::kInitWriteObjs20; in WriteDoc_Stage1()
258 m_iStage = Stage::kWriteIncremental15; in WriteDoc_Stage1()
261 if (m_iStage == Stage::kWriteIncremental15) { in WriteDoc_Stage1()
[all …]
Dcpdf_creator.h40 enum class Stage { enum
63 CPDF_Creator::Stage WriteDoc_Stage1();
64 CPDF_Creator::Stage WriteDoc_Stage2();
65 CPDF_Creator::Stage WriteDoc_Stage3();
66 CPDF_Creator::Stage WriteDoc_Stage4();
84 Stage m_iStage = Stage::kInvalid;
/external/deqp/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingBarrierTests.cpp76 enum class Stage enum
90 VkImageLayout getOptimalReadLayout (Stage stage) in getOptimalReadLayout()
96 case Stage::HOST: in getOptimalReadLayout()
98 case Stage::TRANSFER: in getOptimalReadLayout()
101 case Stage::RAYGEN: in getOptimalReadLayout()
102 case Stage::INTERSECT: in getOptimalReadLayout()
103 case Stage::ANY_HIT: in getOptimalReadLayout()
104 case Stage::CLOSEST_HIT: in getOptimalReadLayout()
105 case Stage::MISS: in getOptimalReadLayout()
106 case Stage::CALLABLE: in getOptimalReadLayout()
[all …]
/external/pdfium/core/fpdfapi/page/
Dcpdf_contentparser.cpp26 : m_CurrentStage(Stage::kGetContent), m_pObjectHolder(pPage) { in CPDF_ContentParser()
29 m_CurrentStage = Stage::kComplete; in CPDF_ContentParser()
58 : m_CurrentStage(Stage::kParse), in CPDF_ContentParser()
112 while (m_CurrentStage == Stage::kGetContent) { in Continue()
118 if (m_CurrentStage == Stage::kPrepareContent) in Continue()
121 while (m_CurrentStage == Stage::kParse) { in Continue()
127 if (m_CurrentStage == Stage::kCheckClip) in Continue()
130 ASSERT(m_CurrentStage == Stage::kComplete); in Continue()
134 CPDF_ContentParser::Stage CPDF_ContentParser::GetContent() { in GetContent()
135 ASSERT(m_CurrentStage == Stage::kGetContent); in GetContent()
[all …]
Dcpdf_contentparser.h46 enum class Stage : uint8_t { enum
54 Stage GetContent();
55 Stage PrepareContent();
56 Stage Parse();
57 Stage CheckClip();
63 Stage m_CurrentStage;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/Stages/
DStage.h27 class Stage {
28 Stage *NextInSequence;
31 Stage(const Stage &Other) = delete;
32 Stage &operator=(const Stage &Other) = delete;
38 Stage() : NextInSequence(nullptr) {} in Stage() function
39 virtual ~Stage();
57 void setNextInSequence(Stage *NextStage) { in setNextInSequence()
/external/llvm-project/llvm/include/llvm/MCA/Stages/
DStage.h27 class Stage {
28 Stage *NextInSequence;
31 Stage(const Stage &Other) = delete;
32 Stage &operator=(const Stage &Other) = delete;
38 Stage() : NextInSequence(nullptr) {} in Stage() function
39 virtual ~Stage();
57 void setNextInSequence(Stage *NextStage) { in setNextInSequence()
/external/guice/core/test/com/google/inject/
DBindingTest.java250 final Constructor<D> constructor = D.class.getConstructor(Stage.class); in testToConstructorBinding()
262 assertEquals(Stage.DEVELOPMENT, d.stage); in testToConstructorBinding()
266 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class); in testToConstructorBindingsOnParameterizedTypes()
275 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {}); in testToConstructorBindingsOnParameterizedTypes()
280 C<Stage> one = (C<Stage>) injector.getInstance(s); in testToConstructorBindingsOnParameterizedTypes()
281 assertEquals(Stage.DEVELOPMENT, one.stage); in testToConstructorBindingsOnParameterizedTypes()
282 assertEquals(Stage.DEVELOPMENT, one.t); in testToConstructorBindingsOnParameterizedTypes()
283 assertEquals(Stage.DEVELOPMENT, one.anotherT); in testToConstructorBindingsOnParameterizedTypes()
286 assertEquals(Stage.DEVELOPMENT, two.stage); in testToConstructorBindingsOnParameterizedTypes()
292 final Constructor constructor = C.class.getConstructor(Stage.class, Object.class); in testToConstructorBindingsFailsOnRawTypes()
[all …]
/external/pdfium/xfa/fxfa/layout/
Dcxfa_contentlayoutprocessor.h41 enum class Stage : uint8_t { enum
139 Stage GotoNextContainerNode(Stage nCurStage,
144 Optional<Stage> ProcessKeepNodesForCheckNext(CXFA_Node** pCurActionNode,
148 Optional<Stage> ProcessKeepNodesForBreakBefore(CXFA_Node** pCurActionNode,
183 Optional<Stage> HandleKeep(CXFA_Node* pBreakAfterNode,
185 Optional<Stage> HandleBookendLeader(CXFA_Node* pParentContainer,
187 Optional<Stage> HandleBreakBefore(CXFA_Node* pChildContainer,
189 Optional<Stage> HandleBreakAfter(CXFA_Node* pChildContainer,
191 Optional<Stage> HandleCheckNextChildContainer(CXFA_Node* pParentContainer,
194 Optional<Stage> HandleBookendTrailer(CXFA_Node* pParentContainer,
[all …]
Dcxfa_contentlayoutprocessor.cpp392 Optional<CXFA_ContentLayoutProcessor::Stage> FindBreakNode( in FindBreakNode()
407 return CXFA_ContentLayoutProcessor::Stage::kBreakBefore; in FindBreakNode()
414 return CXFA_ContentLayoutProcessor::Stage::kBreakAfter; in FindBreakNode()
423 return bBreakBefore ? CXFA_ContentLayoutProcessor::Stage::kBreakBefore in FindBreakNode()
424 : CXFA_ContentLayoutProcessor::Stage::kBreakAfter; in FindBreakNode()
809 if (m_nCurChildNodeStage != Stage::kDone || !m_pOldLayoutItem) in ExtractLayoutItem()
834 CXFA_ContentLayoutProcessor::Stage
835 CXFA_ContentLayoutProcessor::GotoNextContainerNode(Stage nCurStage, in GotoNextContainerNode()
841 case Stage::kBreakBefore: in GotoNextContainerNode()
842 case Stage::kBreakAfter: { in GotoNextContainerNode()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/
DInstruction.cpp159 assert(Stage == IS_INVALID); in dispatch()
160 Stage = IS_DISPATCHED; in dispatch()
169 assert(Stage == IS_READY); in execute()
170 Stage = IS_EXECUTING; in execute()
180 Stage = IS_EXECUTED; in execute()
184 assert(Stage == IS_READY && "Invalid internal state!"); in forceExecuted()
186 Stage = IS_EXECUTED; in forceExecuted()
199 Stage = IS_READY; in updatePending()
216 Stage = IS_PENDING; in updateDispatched()
248 Stage = IS_EXECUTED; in cycleEvent()
DPipeline.cpp32 return any_of(Stages, [](const std::unique_ptr<Stage> &S) { in hasWorkToProcess()
55 const std::unique_ptr<Stage> &S = *I; in runCycle()
61 Stage &FirstStage = *Stages[0]; in runCycle()
66 for (const std::unique_ptr<Stage> &S : Stages) { in runCycle()
75 void Pipeline::appendStage(std::unique_ptr<Stage> S) { in appendStage()
78 Stage *Last = Stages.back().get(); in appendStage()
/external/llvm-project/llvm/lib/MCA/
DInstruction.cpp159 assert(Stage == IS_INVALID); in dispatch()
160 Stage = IS_DISPATCHED; in dispatch()
169 assert(Stage == IS_READY); in execute()
170 Stage = IS_EXECUTING; in execute()
180 Stage = IS_EXECUTED; in execute()
184 assert(Stage == IS_READY && "Invalid internal state!"); in forceExecuted()
186 Stage = IS_EXECUTED; in forceExecuted()
199 Stage = IS_READY; in updatePending()
216 Stage = IS_PENDING; in updateDispatched()
248 Stage = IS_EXECUTED; in cycleEvent()
DPipeline.cpp32 return any_of(Stages, [](const std::unique_ptr<Stage> &S) { in hasWorkToProcess()
55 const std::unique_ptr<Stage> &S = *I; in runCycle()
61 Stage &FirstStage = *Stages[0]; in runCycle()
66 for (const std::unique_ptr<Stage> &S : Stages) { in runCycle()
75 void Pipeline::appendStage(std::unique_ptr<Stage> S) { in appendStage()
78 Stage *Last = Stages.back().get(); in appendStage()
/external/rust/crates/tokio/src/runtime/task/
Dcore.rs44 stage: UnsafeCell<Stage<T>>,
86 pub(super) enum Stage<T: Future> { enum
109 stage: UnsafeCell::new(Stage::Running(future)), in new()
206 pub(super) fn with_mut<R>(&self, f: impl FnOnce(*mut Stage<T>) -> R) -> R { in with_mut()
228 Stage::Running(future) => future, in poll()
254 self.set_stage(Stage::Consumed); in drop_future_or_output()
266 self.set_stage(Stage::Finished(output)); in store_output()
280 match mem::replace(unsafe { &mut *ptr }, Stage::Consumed) { in take_output()
281 Stage::Finished(output) => output, in take_output()
287 unsafe fn set_stage(&self, stage: Stage<T>) { in set_stage()
/external/llvm-project/llvm/test/CodeGen/Hexagon/pipeliner/
Dswp-phi-start.mir6 # CHECK-NOT: Stage-3
8 # CHECK: intregs = S2_addasl_rrri %{{[0-9]+}}, %{{[0-9]+}}, 1, post-instr-symbol <mcsymbol Stage
9 # CHECK: intregs = L2_loadruh_io %{{[0-9]+}}, -4, post-instr-symbol <mcsymbol Stage-3_Cycle-0> :…
10 # CHECK: intregs = S2_storerh_pi %{{[0-9]+}}, -2, %{{[0-9]+}}, post-instr-symbol <mcsymbol Stage
11 # CHECK: intregs = nsw A2_addi %{{[0-9]+}}, -1, post-instr-symbol <mcsymbol Stage-0_Cycle-0>
13 # CHECK-NOT: Stage-0
138 %1:intregs = PHI %7, %bb.2, %5, %bb.3, post-instr-symbol <mcsymbol Stage-3_Cycle-0>
139 %2:intregs = PHI %10, %bb.2, %4, %bb.3, post-instr-symbol <mcsymbol Stage-0_Cycle-0>
140 %3:intregs = PHI %6, %bb.2, %2, %bb.3, post-instr-symbol <mcsymbol Stage-0_Cycle-0>
141 %11:intregs = S2_addasl_rrri %7, %3, 1, post-instr-symbol <mcsymbol Stage-0_Cycle-0>
[all …]
/external/llvm-project/llvm/include/llvm/CodeGen/
DModuloSchedule.h92 DenseMap<MachineInstr *, int> Stage; variable
108 DenseMap<MachineInstr *, int> Stage) in ModuloSchedule() argument
110 Stage(std::move(Stage)) { in ModuloSchedule()
112 for (auto &KV : this->Stage) in ModuloSchedule()
134 auto I = Stage.find(MI); in getStage()
135 return I == Stage.end() ? -1 : I->second; in getStage()
146 assert(Stage.count(MI) == 0); in setStage()
147 Stage[MI] = MIStage; in setStage()
340 MachineBasicBlock *SourceBB, unsigned Stage);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DEngineRunnable.java33 private Stage stage;
40 this.stage = Stage.CACHE; in EngineRunnable()
81 return stage == Stage.CACHE; in isDecodingFromCache()
90 stage = Stage.SOURCE; in onLoadFailed()
130 private enum Stage { enum in EngineRunnable
/external/deqp/modules/gles31/functional/
Des31fUniformLocationTests.cpp841 typedef UniformInfo::ShaderStage Stage; in init() typedef
845 const Stage layoutLoc = Stage(rng.getUint32()&0x3); in init()
846 const Stage declareLoc = Stage((rng.getUint32()&0x3) | layoutLoc); in init()
847 const Stage verifyLoc = Stage((rng.getUint32()&0x3) & declareLoc); in init()
882 typedef UniformInfo::ShaderStage Stage; in init() typedef
888 const Stage layoutLocs[]= in init()
890 Stage(rng.getUint32()&0x3), in init()
891 Stage(rng.getUint32()&0x3), in init()
892 Stage(rng.getUint32()&0x3), in init()
893 Stage(rng.getUint32()&0x3), in init()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/
DStage.cpp21 Stage::~Stage() = default;
23 void Stage::addListener(HWEventListener *Listener) { in addListener()
/external/llvm-project/llvm/lib/MCA/Stages/
DStage.cpp21 Stage::~Stage() = default;
23 void Stage::addListener(HWEventListener *Listener) { in addListener()
/external/guice/core/src/com/google/inject/internal/
DInjectorShell.java30 import com.google.inject.Stage;
78 private Stage stage;
83 Builder stage(Stage stage) { in stage()
108 Stage getStage() { in getStage()
295 private static void bindStage(InjectorImpl injector, Stage stage) { in bindStage()
296 Key<Stage> key = Key.get(Stage.class); in bindStage()
297 InstanceBindingImpl<Stage> stageBinding = in bindStage()
298 new InstanceBindingImpl<Stage>( in bindStage()
302 new ConstantFactory<Stage>(Initializables.of(stage)), in bindStage()
/external/mesa3d/src/compiler/glsl/
Dlink_varyings.cpp622 const glsl_type *type = get_varying_type(var, sh->Stage); in validate_explicit_variable_location()
624 unsigned idx = compute_variable_location_slot(var, sh->Stage); in validate_explicit_variable_location()
633 assert(sh->Stage != MESA_SHADER_FRAGMENT); in validate_explicit_variable_location()
635 ctx->Const.Program[sh->Stage].MaxOutputComponents / 4; in validate_explicit_variable_location()
638 assert(sh->Stage != MESA_SHADER_VERTEX); in validate_explicit_variable_location()
640 ctx->Const.Program[sh->Stage].MaxInputComponents / 4; in validate_explicit_variable_location()
646 idx, _mesa_shader_stage_to_string(sh->Stage)); in validate_explicit_variable_location()
664 prog, sh->Stage)) { in validate_explicit_variable_location()
675 prog, sh->Stage)) { in validate_explicit_variable_location()
795 consumer->Stage, producer->Stage); in cross_validate_outputs_to_inputs()
[all …]
/external/guice/core/test/com/google/inject/spi/
DToolStageInjectorTest.java11 import com.google.inject.Stage;
27 Injector injector = Guice.createInjector(Stage.TOOL); in testToolStageInjectorRestrictions()
62 Stage.TOOL, in testToolStageDoesntInjectInstances()
79 Stage.TOOL, in testToolStageDoesntInjectProviders()
97 Stage.TOOL, in testToolStageWarnsOfMissingObjectGraph()
119 Stage.TOOL, in testToolStageInjectsTooledMethods()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DModuloSchedule.h92 DenseMap<MachineInstr *, int> Stage; variable
108 DenseMap<MachineInstr *, int> Stage) in ModuloSchedule() argument
110 Stage(std::move(Stage)) { in ModuloSchedule()
112 for (auto &KV : this->Stage) in ModuloSchedule()
134 auto I = Stage.find(MI); in getStage()
135 return I == Stage.end() ? -1 : I->second; in getStage()
335 MachineBasicBlock *SourceBB, unsigned Stage);

12345678910