Searched refs:stage (Results 1 - 25 of 38) sorted by relevance

12

/external/skia/src/gpu/gl/
H A 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);
H A DGrGpuGLShaders.cpp244 // enable the stage?
258 StageDesc& stage = pdesc.fStages[s]; local
259 stage.fOptFlags = STAGE_OPTS[random_int(&random, GR_ARRAY_COUNT(STAGE_OPTS))];
260 stage.fInConfigFlags = IN_CONFIG_FLAGS[random_int(&random, GR_ARRAY_COUNT(IN_CONFIG_FLAGS))];
261 stage.fCoordMapping = random_int(&random, StageDesc::kCoordMappingCnt);
262 stage.fFetchMode = random_int(&random, StageDesc::kFetchModeCnt);
264 if (stage.fFetchMode == StageDesc::kConvolution_FetchMode ||
265 stage.fFetchMode == StageDesc::kDilate_FetchMode ||
266 stage.fFetchMode == StageDesc::kErode_FetchMode) {
267 stage
353 getHWSamplerMatrix(int stage) argument
364 recordHWSamplerMatrix(int stage, const GrMatrix& matrix) argument
1042 StageDesc& stage = desc.fStages[s]; local
[all...]
H A DGrGLProgram.h73 static int TextureMatrixAttributeIdx(int stage) { argument
74 return 7 + GrDrawState::kMaxTexCoords + 3 * stage;
H A DGrGLProgram.cpp138 inline void tex_matrix_name(int stage, GrStringBuilder* s) { argument
144 s->appendS32(stage);
147 inline void normalized_texel_size_name(int stage, GrStringBuilder* s) { argument
149 s->appendS32(stage);
152 inline void sampler_name(int stage, GrStringBuilder* s) { argument
154 s->appendS32(stage);
157 inline void radial2_param_name(int stage, GrStringBuilder* s) { argument
159 s->appendS32(stage);
162 inline void convolve_param_names(int stage, GrStringBuilder* k, GrStringBuilder* i) { argument
164 k->appendS32(stage);
169 image_increment_param_name(int stage, GrStringBuilder* i) argument
174 tex_domain_name(int stage, GrStringBuilder* s) argument
[all...]
/external/skia/src/gpu/
H A DGrDrawTarget.h180 * Each stage can
184 * If no texture coordinates are specified for a stage then the stage is
187 * Only one type of texture coord can be specified per stage. For
199 * Generates a bit indicating that a texture stage uses texture coordinates
201 * @param stage the stage that will use texture coordinates.
206 static int StageTexCoordVertexLayoutBit(int stage, int texCoordIdx) { argument
207 GrAssert(stage < GrDrawState::kNumStages);
209 return 1 << (stage
[all...]
H A DGrDrawState.h25 * Number of texture stages. Each stage takes as input a color and
26 * 2D texture coordinates. The color input to the first enabled stage is the
29 * color from the previous enabled stage. The output color of each stage is
32 * coordinates for each stage come from the vertices based on a
34 * the last enabled stage. The presence or absence of texture coordinates
35 * for each stage in the vertex layout indicates whether a stage is enabled
166 * @param stage The texture stage fo
171 setTexture(int stage, GrTexture* texture) argument
187 getTexture(int stage) argument
209 sampler(int stage) argument
[all...]
H A DGrDrawTarget.cpp99 // can only have 1 or 0 bits set for each stage.
158 int GrDrawTarget::VertexStageCoordOffset(int stage, GrVertexLayout vertexLayout) { argument
160 if (StagePosAsTexCoordVertexLayoutBit(stage) & vertexLayout) {
163 int tcIdx = VertexTexCoordsForStage(stage, vertexLayout);
322 bool GrDrawTarget::VertexUsesStage(int stage, GrVertexLayout vertexLayout) { argument
323 GrAssert(stage < GrDrawState::kNumStages);
325 return !!(gStageMasks[stage] & vertexLayout);
335 int GrDrawTarget::VertexTexCoordsForStage(int stage,
337 GrAssert(stage < GrDrawState::kNumStages);
339 int bit = vertexLayout & gStageTexCoordMasks[stage];
[all...]
/external/webkit/Source/WebCore/platform/audio/
H A DReverbConvolver.cpp68 , m_minFFTSize(MinFFTSize) // First stage will have this size - successive stages will double in size each time
88 // Because we're not using direct-convolution in the leading portion, the reverb has an overall latency of half the first-stage FFT size
97 // For the last stage, it's possible that stageOffset is such that we're straddling the end
98 // of the impulse response buffer (if we use stageSize), so reduce the last stage's length...
105 OwnPtr<ReverbConvolverStage> stage(new ReverbConvolverStage(response, totalResponseLength, reverbTotalLatency, stageOffset, stageSize, fftSize, renderPhase, renderSliceSize, &m_accumulationBuffer));
110 m_backgroundStages.append(stage.release());
113 m_stages.append(stage.release());
163 // Even though it doesn't seem like every stage needs to maintain its own version of readIndex
171 // Accumulate contributions from each stage
195 // Accumulate contributions from each stage
[all...]
/external/llvm/lib/Target/CellSPU/
H A DSPUNopFiller.cpp140 const InstrStage *stage = IID->beginStage(sc); local
141 unsigned FUs = stage->getUnits();
/external/opencv/cv/src/
H A Dcvcorner.cpp223 int stage = CV_START; local
323 stage = stage & CV_START ? CV_START + CV_END : CV_END;
324 dx_filter.process( src, Dx, cvRect(0,y,-1,delta), cvPoint(0,0), stage );
326 cvPoint(0,0), stage );
387 stage = stage & CV_START ? CV_START + CV_END : CV_END;
390 cvRect(0,0,-1,stripe_size.height),cvPoint(0,0),stage+CV_ISOLATED_ROI);
406 stage = CV_MIDDLE;
519 int stage local
[all...]
H A Dcvhaar.cpp219 sprintf( errorstr, "header of the stage classifier #%d is invalid "
251 "the stage classifier #%d is not inside "
1546 const char* stage = input_cascade[i]; local
1553 sscanf( stage, "%d%n", &count, &dl );
1554 stage += dl;
1567 sscanf( stage, "%d%n", &classifier->count, &dl );
1568 stage += dl;
1583 sscanf( stage, "%d%n", &rects, &dl );
1584 stage += dl;
1592 sscanf( stage, "
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DScanHandler.java106 public void stage(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
/external/oprofile/events/mips/sb1/
H A Devents32 event: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/webkit/Tools/Scripts/
H A 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/qemu/
H A Dmigration.h109 int ram_save_live(QEMUFile *f, int stage, void *opaque);
H A Darch_init.c252 int ram_save_live(QEMUFile *f, int stage, void *opaque) argument
259 if (stage < 0) {
269 if (stage == 1) {
322 if (stage == 3) {
336 return (stage == 2) && (expected_time <= migrate_max_downtime());
/external/libvpx/vp8/encoder/x86/
H A Ddct_mmx.asm38 ; transpose for the first stage
63 ; first stage
114 ; transpose for the second stage
H A Ddct_sse2.asm179 ; transpose for the first stage
213 ; first stage
264 ; transpose for the second stage
/external/oprofile/events/mips/5K/
H A Devents35 event:0xa counters:1 um:zero minimum:500 name:CONFLICT_STALL_M_STAGE : Instruction stall in M stage due to scheduling conflicts
/external/eigen/unsupported/Eigen/src/FFT/
H A Dei_kissfft_impl.h63 void work( int stage,Complex * xout, const _Src * xin, size_t fstride,size_t in_stride) argument
65 int p = m_stageRadix[stage];
66 int m = m_stageRemainder[stage];
76 work(stage+1, xout , xin, fstride*p,in_stride);
225 /* perform the butterfly for one stage of a mixed radix FFT */
/external/libvpx/vp8/encoder/arm/neon/
H A Dshortfdct_neon.asm33 ;first stage
60 ;second stage
/external/quake/quake/src/QW/client/
H A Dgl_warp.c802 void ClipSkyPolygon (int nump, vec3_t vecs, int stage) argument
816 if (stage == 6)
823 norm = skyclip[stage];
844 ClipSkyPolygon (nump, vecs, stage+1);
889 ClipSkyPolygon (newc[0], newv[0][0], stage+1);
890 ClipSkyPolygon (newc[1], newv[1][0], stage+1);
/external/quake/quake/src/WinQuake/
H A Dgl_warp.cpp851 void ClipSkyPolygon (int nump, vec3_t vecs, int stage) argument
865 if (stage == 6)
872 norm = skyclip[stage];
893 ClipSkyPolygon (nump, vecs, stage+1);
938 ClipSkyPolygon (newc[0], newv[0][0], stage+1);
939 ClipSkyPolygon (newc[1], newv[1][0], stage+1);
/external/oprofile/events/mips/74K/
H A Devents31 event:0xd counters:0,2 um:zero minimum:500 name:DDQ0_FULL_DR_STALLS : 13-0 DR stage stall cycles due to DDQ0 (ALU out-of-order dispatch queue) full
32 event:0xe counters:0,2 um:zero minimum:500 name:ALCB_FULL_DR_STALLS : 14-0 DR stage stall cycles due to ALCB (ALU completion buffers) full
33 event:0xf counters:0,2 um:zero minimum:500 name:CLDQ_FULL_DR_STALLS : 15-0 DR stage stall cycles due to CLDQ (data comming back from FPU) full
107 event:0x40d counters:1,3 um:zero minimum:500 name:DDQ1_FULL_DR_STALLS : 13-1 DR stage stall cycles due to DDQ1 (AGEN out-of-order dispatch queue) full
108 event:0x40e counters:1,3 um:zero minimum:500 name:AGCB_FULL_DR_STALLS : 14-1 DR stage stall cycles due to AGCB (AGEN completion buffers) full
109 event:0x40f counters:1,3 um:zero minimum:500 name:IODQ_FULL_DR_STALLS : 15-1 DR stage stall cycles due to IODQ (data comming back from IO) full
/external/chromium/chrome/browser/ui/toolbar/
H A Dwrench_menu_model.cc280 UpgradeDetector::UpgradeNotificationAnnoyanceLevel stage = local
282 switch (stage) {

Completed in 2501 milliseconds

12