Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 25 of 115) sorted by relevance

12345

/external/llvm/lib/Target/MBlaze/
DMBlazeSchedule5.td11 // MBlaze instruction itineraries for the five stage pipeline.
19 // two source operands are read during the decode stage and the result is
20 // ready after the execute stage.
22 [ InstrStage<1,[IF]> // one cycle in fetch stage
23 , InstrStage<1,[ID]> // one cycle in decode stage
24 , InstrStage<1,[EX]> // one cycle in execute stage
25 , InstrStage<1,[MA]> // one cycle in memory access stage
26 , InstrStage<1,[WB]>], // one cycle in write back stage
34 // pipeline stages. The two source operands are read during the decode stage
35 // and the result is ready after the execute stage.
[all …]
DMBlazeSchedule3.td11 // MBlaze instruction itineraries for the three stage pipeline.
19 // two source operands are read during the decode stage and the result is
20 // ready after the execute stage.
22 [ InstrStage<1,[IF]> // one cycle in fetch stage
23 , InstrStage<1,[ID]> // one cycle in decode stage
24 , InstrStage<1,[EX]>], // one cycle in execute stage
32 // pipeline stages except the execute stage, which takes three cycles. The
33 // two source operands are read during the decode stage and the result is
34 // ready after the execute stage.
36 [ InstrStage<1,[IF]> // one cycle in fetch stage
[all …]
DMBlazeSchedule.td48 // MBlaze instruction itineraries for three stage pipeline.
53 // MBlaze instruction itineraries for five stage pipeline.
/external/skia/src/gpu/gl/
DGrGpuGLShaders.cpp258 StageDesc& stage = pdesc.fStages[s]; in programUnitTest() local
259 stage.fOptFlags = STAGE_OPTS[random_int(&random, GR_ARRAY_COUNT(STAGE_OPTS))]; in programUnitTest()
260stage.fInConfigFlags = IN_CONFIG_FLAGS[random_int(&random, GR_ARRAY_COUNT(IN_CONFIG_FLAGS))]; in programUnitTest()
261 stage.fCoordMapping = random_int(&random, StageDesc::kCoordMappingCnt); in programUnitTest()
262 stage.fFetchMode = random_int(&random, StageDesc::kFetchModeCnt); in programUnitTest()
264 if (stage.fFetchMode == StageDesc::kConvolution_FetchMode || in programUnitTest()
265 stage.fFetchMode == StageDesc::kDilate_FetchMode || in programUnitTest()
266 stage.fFetchMode == StageDesc::kErode_FetchMode) { in programUnitTest()
267 stage.fOptFlags |= StageDesc::kNoPerspective_OptFlagBit; in programUnitTest()
269 stage.setEnabled(VertexUsesStage(s, pdesc.fVertexLayout)); in programUnitTest()
[all …]
DGrGpuGLShaders.h51 const GrMatrix& getHWSamplerMatrix(int stage);
52 void recordHWSamplerMatrix(int stage, const GrMatrix& matrix);
55 void flushTextureMatrix(int stage);
58 void flushTextureDomain(int stage);
70 void flushRadial2(int stage);
73 void flushConvolution(int stage);
76 void flushTexelSize(int stage);
DGrGLProgram.cpp138 inline void tex_matrix_name(int stage, GrStringBuilder* s) { in tex_matrix_name() argument
144 s->appendS32(stage); in tex_matrix_name()
147 inline void normalized_texel_size_name(int stage, GrStringBuilder* s) { in normalized_texel_size_name() argument
149 s->appendS32(stage); in normalized_texel_size_name()
152 inline void sampler_name(int stage, GrStringBuilder* s) { in sampler_name() argument
154 s->appendS32(stage); in sampler_name()
157 inline void radial2_param_name(int stage, GrStringBuilder* s) { in radial2_param_name() argument
159 s->appendS32(stage); in radial2_param_name()
162 inline void convolve_param_names(int stage, GrStringBuilder* k, GrStringBuilder* i) { in convolve_param_names() argument
164 k->appendS32(stage); in convolve_param_names()
[all …]
/external/webkit/LayoutTests/http/tests/cookies/
Dthird-party-cookie-relaxing-expected.txt6 ALERT: Test stage 1 document.cookie is:
10 ALERT: Test stage 2 document.cookie is:
16 ALERT: Test stage 3 document.cookie is:
20 ALERT: Test stage 4 document.cookie is:
26 ALERT: Test stage 5 document.cookie is:
29 ALERT: Test stage 6 document.cookie is: foo=awesomevalue
33 ALERT: Test stage 7 document.cookie is:
39 ALERT: Test stage 8 document.cookie is:
42 ALERT: Test stage 9 document.cookie is: foo=awesomevalue
46 ALERT: Test stage 10 document.cookie is: bar=anotherawesomevalue; foo=awesomevalue
/external/skia/src/gpu/
DGrDrawTarget.h206 static int StageTexCoordVertexLayoutBit(int stage, int texCoordIdx) { in StageTexCoordVertexLayoutBit() argument
207 GrAssert(stage < GrDrawState::kNumStages); in StageTexCoordVertexLayoutBit()
209 return 1 << (stage + (texCoordIdx * GrDrawState::kNumStages)); in StageTexCoordVertexLayoutBit()
226 static int StagePosAsTexCoordVertexLayoutBit(int stage) { in StagePosAsTexCoordVertexLayoutBit() argument
227 GrAssert(stage < GrDrawState::kNumStages); in StagePosAsTexCoordVertexLayoutBit()
228 return (1 << (TEX_COORD_BIT_CNT + stage)); in StagePosAsTexCoordVertexLayoutBit()
651 static int VertexTexCoordsForStage(int stage, GrVertexLayout vertexLayout);
659 static int VertexStageCoordOffset(int stage, GrVertexLayout vertexLayout);
705 static bool VertexUsesStage(int stage, GrVertexLayout vertexLayout);
909 static bool StageWillBeUsed(int stage, GrVertexLayout layout, in StageWillBeUsed() argument
[all …]
DGrDrawState.h171 void setTexture(int stage, GrTexture* texture) { in setTexture()
172 GrAssert((unsigned)stage < kNumStages); in setTexture()
173 fTextures[stage] = texture; in setTexture()
183 const GrTexture* getTexture(int stage) const { in getTexture()
184 GrAssert((unsigned)stage < kNumStages); in getTexture()
185 return fTextures[stage]; in getTexture()
187 GrTexture* getTexture(int stage) { in getTexture()
188 GrAssert((unsigned)stage < kNumStages); in getTexture()
189 return fTextures[stage]; in getTexture()
201 const GrSamplerState& getSampler(int stage) const { in getSampler()
[all …]
DGrDrawTarget.cpp158 int GrDrawTarget::VertexStageCoordOffset(int stage, GrVertexLayout vertexLayout) { in VertexStageCoordOffset() argument
160 if (StagePosAsTexCoordVertexLayoutBit(stage) & vertexLayout) { in VertexStageCoordOffset()
163 int tcIdx = VertexTexCoordsForStage(stage, vertexLayout); in VertexStageCoordOffset()
322 bool GrDrawTarget::VertexUsesStage(int stage, GrVertexLayout vertexLayout) { in VertexUsesStage() argument
323 GrAssert(stage < GrDrawState::kNumStages); in VertexUsesStage()
325 return !!(gStageMasks[stage] & vertexLayout); in VertexUsesStage()
335 int GrDrawTarget::VertexTexCoordsForStage(int stage, in VertexTexCoordsForStage() argument
337 GrAssert(stage < GrDrawState::kNumStages); in VertexTexCoordsForStage()
339 int bit = vertexLayout & gStageTexCoordMasks[stage]; in VertexTexCoordsForStage()
/external/opencv/cv/src/
Dcvcorner.cpp223 int stage = CV_START; in icvCornerEigenValsVecs() local
323 stage = stage & CV_START ? CV_START + CV_END : CV_END; in icvCornerEigenValsVecs()
324 dx_filter.process( src, Dx, cvRect(0,y,-1,delta), cvPoint(0,0), stage ); in icvCornerEigenValsVecs()
326 cvPoint(0,0), stage ); in icvCornerEigenValsVecs()
387 stage = stage & CV_START ? CV_START + CV_END : CV_END; in icvCornerEigenValsVecs()
390 cvRect(0,0,-1,stripe_size.height),cvPoint(0,0),stage+CV_ISOLATED_ROI); in icvCornerEigenValsVecs()
406 stage = CV_MIDDLE; in icvCornerEigenValsVecs()
519 int stage = CV_START; in cvPreCornerDetect() local
629 stage = stage & CV_START ? CV_START + CV_END : CV_END; in cvPreCornerDetect()
631 dx_filter.process(src,Dx,roi,origin,stage); in cvPreCornerDetect()
[all …]
/external/llvm/include/llvm/Target/
DTargetSchedule.td40 // Instruction stage - These values represent a non-pipelined step in
42 // discrete time slots needed to complete the stage. Units represent
44 // stage. Eg. IntUnit1, IntUnit2. NextCycles indicates how many
45 // cycles should elapse from the start of this stage to the start of
46 // the next stage in the itinerary. For example:
48 // A stage is specified in one of two ways:
57 int Cycles = cycles; // length of stage in machine cycles
59 int TimeInc = timeinc; // cycles till start of next stage
/external/webkit/Tools/Scripts/
Dresolve-ChangeLogs213 my ($mode, $hash, $stage, $fileName) = split(' ', $line);
215 if ($stage == 1) {
218 } elsif ($stage == 2) {
221 } elsif ($stage == 3) {
225 die "Unknown file stage: $stage";
227 system("$GIT cat-file blob :${stage}:${gitPrefix}${file} > $outputFile");
/external/llvm/test/Transforms/LoopStrengthReduce/
D2012-03-26-constexpr.ll11 …void @someFunction(%struct.this_structure_s.0.5* nocapture %scratch, i32 %stage, i32 %cbSize) noun…
13 %0 = getelementptr inbounds %struct.this_structure_s.0.5* %scratch, i32 0, i32 4, i32 %stage
15 %2 = getelementptr inbounds %struct.this_structure_s.0.5* %scratch, i32 0, i32 5, i32 %stage
18 %tmp11 = shl i32 %stage, 1
/external/llvm/lib/Target/PowerPC/
DPPCSchedule440.td42 def IEXE1 : FuncUnit; // Execution stage 1 for the I pipeline
43 def IEXE2 : FuncUnit; // Execution stage 2 for the I pipeline
45 def JEXE1 : FuncUnit; // Execution stage 1 for the J pipeline
46 def JEXE2 : FuncUnit; // Execution stage 2 for the J pipeline
51 def FEXE1 : FuncUnit; // Execution stage 1 for the F pipeline
52 def FEXE2 : FuncUnit; // Execution stage 2 for the F pipeline
53 def FEXE3 : FuncUnit; // Execution stage 3 for the F pipeline
54 def FEXE4 : FuncUnit; // Execution stage 4 for the F pipeline
55 def FEXE5 : FuncUnit; // Execution stage 5 for the F pipeline
56 def FEXE6 : FuncUnit; // Execution stage 6 for the F pipeline
[all …]
DPPCScheduleA2.td33 def XEX1 : FuncUnit; // Execution stage 1 for the XU pipeline
34 def XEX2 : FuncUnit; // Execution stage 2 for the XU pipeline
35 def XEX3 : FuncUnit; // Execution stage 3 for the XU pipeline
36 def XEX4 : FuncUnit; // Execution stage 4 for the XU pipeline
37 def XEX5 : FuncUnit; // Execution stage 5 for the XU pipeline
38 def XEX6 : FuncUnit; // Execution stage 6 for the XU pipeline
40 def FEX1 : FuncUnit; // Execution stage 1 for the FU pipeline
41 def FEX2 : FuncUnit; // Execution stage 2 for the FU pipeline
42 def FEX3 : FuncUnit; // Execution stage 3 for the FU pipeline
43 def FEX4 : FuncUnit; // Execution stage 4 for the FU pipeline
[all …]
/external/clang/docs/tools/
Dclang.pod39 This stage handles tokenization of the input source file, macro expansion,
41 this stage is typically called a ".i" (for C), ".ii" (for C++), ".mi" (for
46 This stage parses the input file, translating preprocessor tokens into a parse
49 stage is responsible for generating most of the compiler warnings as well as
50 parse errors. The output of this stage is an "Abstract Syntax Tree" (AST).
54 This stage translates an AST into low-level intermediate code (known as "LLVM
57 this stage is typically called a ".s" file or "assembly" file.
65 This stage runs the target assembler to translate the output of the compiler
66 into a target object file. The output of this stage is typically called a ".o"
71 This stage runs the target linker to merge multiple object files into an
[all …]
/external/webkit/Source/WebCore/platform/audio/
DReverbConvolver.cpp105 …OwnPtr<ReverbConvolverStage> stage(new ReverbConvolverStage(response, totalResponseLength, reverbT… in ReverbConvolver() local
110 m_backgroundStages.append(stage.release()); in ReverbConvolver()
113 m_stages.append(stage.release()); in ReverbConvolver()
/external/oprofile/events/mips/sb1/
Devents32 …0x27 counters:1,2,3 um:zero minimum:500 name:INSN_STAGE4 :One or more instructions survives stage 4
35 event:0x2c counters:1,2,3 um:zero minimum:500 name:BRANCH_STAGE4 :Branch survived stage 4
71 event:0x8 counters:1,2,3 um:zero minimum:500 name:LOAD_SURVIVED_STAGE4 :Load survived stage 4
72 event:0x9 counters:1,2,3 um:zero minimum:500 name:STORE_SURVIVED_STAGE4 :Store survived stage 4
73 event:0x0 counters:1,2,3 um:zero minimum:500 name:INSN_SURVIVED_STAGE7 :Instruction survived stage 7
/external/oprofile/events/arm/armv7-ca9/
Devents17 …6 um:zero minimum:500 name:ISS_NO_DISP : Number of cycles where the issue stage does not dispatch …
18 …rs:1,2,3,4,5,6 um:zero minimum:500 name:ISS_EMPTY : Number of cycles where the issue stage is empty
19 …zero minimum:500 name:INS_RENAME : Number of instructions going through the Register Renaming stage
26 …:500 name:INS_FP_RR : Number of floating-point instructions going through the Register Rename stage
27 … minimum:500 name:INS_NEON_RR : Number of NEON instructions going through the Register Rename stage
/external/qemu/
Darch_init.c252 int ram_save_live(QEMUFile *f, int stage, void *opaque) in ram_save_live() argument
259 if (stage < 0) { in ram_save_live()
269 if (stage == 1) { in ram_save_live()
322 if (stage == 3) { in ram_save_live()
336 return (stage == 2) && (expected_time <= migrate_max_downtime()); in ram_save_live()
/external/llvm/lib/Target/CellSPU/
DSPUNopFiller.cpp140 const InstrStage *stage = IID->beginStage(sc); in getOpPlacement() local
141 unsigned FUs = stage->getUnits(); in getOpPlacement()
/external/v8/benchmarks/
DREADME.txt18 decryption stage was given plaintext as input, which resulted in an
19 error. Now, the decryption stage is given the output of the
20 encryption stage as input. The result is checked against the original
/external/v8/tools/gcmole/
DREADME52 - on the first stage driver will parse all files and build a global callgraph
56 - on the second stage driver will parse all files again and will locate all
/external/libvpx/vp8/encoder/x86/
Ddct_mmx.asm38 ; transpose for the first stage
63 ; first stage
114 ; transpose for the second stage

12345