HomeSort by relevance Sort by last modified time
    Searched refs:stage (Results 76 - 100 of 309) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/tnl/
t_vb_light.c 47 struct tnl_pipeline_stage *stage,
62 * Data private to this pipeline stage.
76 #define LIGHT_STAGE_DATA(stage) ((struct light_stage_data *)(stage->privatePtr))
218 * Prepare things prior to running the lighting stage.
326 struct tnl_pipeline_stage *stage )
328 struct light_stage_data *store = LIGHT_STAGE_DATA(stage);
375 store->light_func_tab[idx]( ctx, VB, stage, input );
384 struct tnl_pipeline_stage *stage )
405 LIGHT_STAGE_DATA(stage)->light_func_tab = tab
    [all...]
t_vb_fog.c 45 #define FOG_STAGE_DATA(stage) ((struct fog_stage_data *)stage->privatePtr)
143 run_fog_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
147 struct fog_stage_data *store = FOG_STAGE_DATA(stage);
159 /* dest = VB->AttribPtr[_TNL_ATTRIB_FOG] = fog stage private storage */
235 /* Called the first time stage->run() is invoked.
238 alloc_fog_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
242 stage->privatePtr = MALLOC(sizeof(*store));
243 store = FOG_STAGE_DATA(stage);
257 free_fog_data(struct tnl_pipeline_stage *stage)
    [all...]
  /external/chromium_org/gpu/config/
gpu_test_expectations_parser.cc 268 int32 stage = kLineParserBegin; local
301 if (stage != kLineParserConfigs && stage != kLineParserBugID) {
313 if (stage == kLineParserBugID)
314 stage++;
318 if (stage != kLineParserConfigs) {
323 stage++;
327 if (stage != kLineParserTestName) {
332 stage++;
336 if (stage == kLineParserBegin)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-map-private.hh 48 unsigned int stage[2]; /* GSUB/GPOS */ member in struct:hb_ot_map_t::feature_map_t
103 return map ? map->stage[table_index] : (unsigned int) -1;
106 inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
108 if (unlikely (stage == (unsigned int) -1)) {
113 assert (stage <= stages[table_index].len);
114 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
115 unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
216 unsigned int stage[2]; /* GSUB/GPOS *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_fog.c 45 #define FOG_STAGE_DATA(stage) ((struct fog_stage_data *)stage->privatePtr)
143 run_fog_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
147 struct fog_stage_data *store = FOG_STAGE_DATA(stage);
159 /* dest = VB->AttribPtr[_TNL_ATTRIB_FOG] = fog stage private storage */
235 /* Called the first time stage->run() is invoked.
238 alloc_fog_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
242 stage->privatePtr = MALLOC(sizeof(*store));
243 store = FOG_STAGE_DATA(stage);
257 free_fog_data(struct tnl_pipeline_stage *stage)
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-map-private.hh 48 unsigned int stage[2]; /* GSUB/GPOS */ member in struct:hb_ot_map_t::feature_map_t
103 return map ? map->stage[table_index] : (unsigned int) -1;
106 inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
108 if (unlikely (stage == (unsigned int) -1)) {
113 assert (stage <= stages[table_index].len);
114 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
115 unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
216 unsigned int stage[2]; /* GSUB/GPOS *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shaders_cache.h 54 #define _SHADERS_GET_STAGE(stage, id) \
55 ((id) & (((1 << _SHADERS_ ## stage ## _BITS) - 1) << SHADERS_ ## stage ## _SHIFT))
  /external/chromium_org/third_party/skia/tests/
GLProgramsTest.cpp 25 static void get_stage_stats(const GrFragmentStage stage, bool* readsDst,
27 if (stage.getFragmentProcessor()->willReadDstColor()) {
30 if (stage.getProcessor()->willReadFragmentPosition()) {
64 const GrGeometryStage* stage = geometryProcessor;
75 if (!GetProcessorKey(*stage, gpu->glCaps(), useLocalCoords, &b, &effectKeySize)) {
80 fragPos = stage->getProcessor()->willReadFragmentPosition();
87 const GrFragmentStage* stage = stages[s]; variable
102 get_stage_stats(*stage, &dstRead, &fragPos, &vertexShader);
273 GrGeometryStage* stage = SkNEW_ARGS(GrGeometryStage, (effect.get()));
274 geometryProcessor.reset(stage);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.h 54 #define _SHADERS_GET_STAGE(stage, id) \
55 ((id) & (((1 << _SHADERS_ ## stage ## _BITS) - 1) << SHADERS_ ## stage ## _SHIFT))
  /external/chromium_org/chrome/renderer/extensions/
webstore_bindings.h 35 void OnInlineInstallStageChanged(int stage);
  /external/chromium_org/third_party/skia/src/gpu/
GrOptDrawState.cpp 234 static void get_stage_stats(const GrFragmentStage& stage, bool* readsDst, bool* readsFragPosition) {
235 if (stage.getFragmentProcessor()->willReadDstColor()) {
238 if (stage.getFragmentProcessor()->willReadFragmentPosition()) {
252 const GrFragmentStage& stage = this->getColorStage(s); local
253 get_stage_stats(stage, &fReadsDst, &fReadsFragPosition);
256 const GrFragmentStage& stage = this->getCoverageStage(s); local
257 get_stage_stats(stage, &fReadsDst, &fReadsFragPosition);
260 const GrGeometryStage& stage = *this->getGeometryProcessor(); local
261 fReadsFragPosition = fReadsFragPosition || stage.getProcessor()->willReadFragmentPosition();
  /external/chromium_org/third_party/skia/src/gpu/gl/builders/
GrGLFragmentOnlyProgramBuilder.h 31 virtual void emitEffect(const GrProcessorStage& stage,
GrGLFragmentOnlyProgramBuilder.cpp 60 void GrGLFragmentOnlyProgramBuilder::emitEffect(const GrProcessorStage& stage,
66 const GrProcessor& effect = *stage.getProcessor();
71 this->setupPathTexGen(stage, &coords);
81 openBrace.printf("\t{ // Stage %d: %s\n", stageIndex, glEffect->name());
  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_condition_attribute_unittest.cc 234 const RequestStage stage = static_cast<RequestStage>(i); local
237 WebRequestData(url_request.get(), stage)));
239 WebRequestData(url_request.get(), stage)));
243 WebRequestData(url_request.get(), stage)));
245 WebRequestData(url_request.get(), stage)));
249 WebRequestData(url_request.get(), stage)));
251 WebRequestData(url_request.get(), stage)));
256 // and tests a couple of "stage" attributes -- one created with an empty set of
257 // applicable stages, one for each stage applicable for that stage, and on
457 const RequestStage stage = ON_BEFORE_SEND_HEADERS; local
553 const RequestStage stage = ON_HEADERS_RECEIVED; local
    [all...]
  /external/chromium_org/chrome/browser/
upgrade_detector.h 124 void set_upgrade_notification_stage(UpgradeNotificationAnnoyanceLevel stage) {
125 upgrade_notification_stage_ = stage;
157 // The stage at which the annoyance level for upgrade notifications is at.
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
cb_search_core.c 25 int16_t stage, /* (i) Stage of this search */
47 /* Don't allow negative values for stage 0 */
48 if (stage==0) {
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 148 updateStage(Stage.Introduction);
178 if (mUiStage == Stage.NeedToConfirm || mUiStage == Stage.ConfirmWrong) {
180 "null chosen pattern in stage 'need to confirm");
182 updateStage(Stage.ChoiceConfirmed);
184 updateStage(Stage.ConfirmWrong);
186 } else if (mUiStage == Stage.Introduction || mUiStage == Stage.ChoiceTooShort){
188 updateStage(Stage.ChoiceTooShort);
191 updateStage(Stage.FirstChoiceValid)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
vp9_idct32x32_add_neon.asm 441 ; Instead of doing the transforms stage by stage, it is done by loading
460 ; part of stage 1
468 ; part of stage 1
476 ; part of stage 2
486 ; part of stage 3
495 ; part of stage 1
503 ; part of stage 1
511 ; part of stage 2
521 ; part of stage
    [all...]