HomeSort by relevance Sort by last modified time
    Searched refs:stage (Results 76 - 100 of 356) 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/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Window.java 28 import com.badlogic.gdx.scenes.scene2d.Stage;
130 Stage stage = getStage();
131 boolean clampPosition = keepWithinStage && getParent() == stage.getRoot();
155 if (clampPosition && windowX + width + amountX > stage.getWidth()) amountX = stage.getWidth() - windowX - width;
161 if (clampPosition && windowY + height + amountY > stage.getHeight())
162 amountY = stage.getHeight() - windowY - height;
206 Stage stage = getStage()
231 Stage stage = getStage(); local
    [all...]
Tooltip.java 24 import com.badlogic.gdx.scenes.scene2d.Stage;
98 Stage stage = actor.getStage(); local
99 if (stage == null) return;
106 if (point.x + container.getWidth() > stage.getWidth() - dist) point.x = stage.getWidth() - dist - container.getWidth();
107 if (point.y + container.getHeight() > stage.getHeight() - dist) point.y = stage.getHeight() - dist - container.getHeight();
  /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;
203 unsigned int stage[2]; /* GSUB/GPOS *
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ScrollPaneScrollBarsTest.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
35 private Stage stage; field in class:ScrollPaneScrollBarsTest
46 stage = new Stage();
48 Gdx.input.setInputProcessor(stage);
53 stage.addActor(fadeBtn);
68 stage.addActor(onTopBtn);
92 stage.addActor(bottomLeft);
98 stage.addActor(bottomRight);
    [all...]
MusicTest.java 27 import com.badlogic.gdx.scenes.scene2d.Stage;
44 Stage stage; field in class:MusicTest
57 stage = new Stage();
67 stage.addActor(slider);
69 Gdx.input.setInputProcessor(stage);
94 stage.act();
95 stage.draw();
StageDebugTest.java 28 import com.badlogic.gdx.scenes.scene2d.Stage;
38 private Stage stage; field in class:StageDebugTest
39 private Stage stage1;
40 private Stage stage2;
56 stage1 = new Stage();
76 stage2 = new Stage();
105 stage.act();
106 stage.draw();
122 if (stage != stage2)
    [all...]
LabelTest.java 28 import com.badlogic.gdx.scenes.scene2d.Stage;
38 Stage stage; field in class:LabelTest
52 stage = new Stage(new ScreenViewport());
53 Gdx.input.setInputProcessor(stage);
56 stage.addActor(table);
84 stage.dispose();
93 stage.act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
94 stage.draw();
    [all...]
ScrollPaneTest.java 24 import com.badlogic.gdx.scenes.scene2d.Stage;
37 private Stage stage; field in class:ScrollPaneTest
41 stage = new Stage();
43 Gdx.input.setInputProcessor(stage);
48 stage.addActor(container);
124 stage.act(Gdx.graphics.getDeltaTime());
125 stage.draw();
129 stage.getViewport().update(width, height, true);
    [all...]
UITest.java 25 import com.badlogic.gdx.scenes.scene2d.Stage;
61 Stage stage; field in class:UITest
75 // stage = new Stage(Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), false, new PolygonSpriteBatch());
76 stage = new Stage(new ScreenViewport());
77 Gdx.input.setInputProcessor(stage);
166 // stage.addActor(new Button("Behind Window", skin));
167 stage.addActor(window)
    [all...]
  /external/libgdx/tests/gdx-tests-lwjgl3/src/com/badlogic/gdx/tests/lwjgl3/
DragNDropTest.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
41 private Stage stage; field in class:DragNDropTest
47 stage = new Stage();
49 Gdx.input.setInputProcessor(stage);
53 stage.addActor(root);
61 stage.act();
62 stage.draw();
  /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/guice/core/src/com/google/inject/internal/
InternalInjectorCreator.java 28 import com.google.inject.Stage;
53 * is not executed for injectors created using {@link Stage#TOOL the tool stage}</li>
76 public InternalInjectorCreator stage(Stage stage) { method in class:InternalInjectorCreator
77 shellBuilder.stage(stage);
83 * stage to the stage of {@code parent} and sets {@link #requireExplicitBindings()} if the paren
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
lui-2.s 3 # stage in assembly.
  /external/webrtc/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) {
  /external/guice/core/test/com/google/inject/
BindingTest.java 228 final Constructor<D> constructor = D.class.getConstructor(Stage.class);
237 assertEquals(Stage.DEVELOPMENT, d.stage);
241 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class);
247 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {});
252 C<Stage> one = (C<Stage>) injector.getInstance(s);
253 assertEquals(Stage.DEVELOPMENT, one.stage);
254 assertEquals(Stage.DEVELOPMENT, one.t)
431 private Stage stage; field in class:BindingTest.C
444 Stage stage; field in class:BindingTest.D
451 Stage stage; field in class:BindingTest.E
459 Stage stage; field in class:BindingTest.F
    [all...]
  /external/opencv3/modules/rsobjdetect/src/
innerloop.cpp 36 const HaarStage stage = cascadeStages[stageIdx]; local
37 sc->invoke_addStage(stage.first, stage.ntrees, stage.threshold);
38 int ntrees = stage.ntrees;
  /external/libvpx/libvpx/vpx_dsp/arm/
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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Actor.java 57 private Stage stage; field in class:Actor
85 /** Updates the actor based on time. Typically this is called each frame by {@link Stage#act(float)}.
92 if (stage != null && stage.getActionsRequestRendering()) Gdx.graphics.requestRendering();
109 * actors as necessary. If this actor is not in the stage, the stage must be set before calling this method.
165 * must be set before calling this method. If this actor is not in the stage, the stage must be set before calling this method.
176 if (event.getStage() == null) event.setStage(stage);
718 Stage stage = this.stage; local
733 Stage stage = this.stage; local
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
ControllersTest.java 27 import com.badlogic.gdx.scenes.scene2d.Stage;
41 Stage stage; field in class:ControllersTest
68 stage = new Stage();
78 stage.addActor(ui);
85 Gdx.input.setInputProcessor(stage);
92 stage.getViewport().update(width, height, true);
181 stage.act(Gdx.graphics.getDeltaTime());
182 stage.draw()
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DragAndDrop.java 23 import com.badlogic.gdx.scenes.scene2d.Stage;
72 Stage stage = event.getStage();
115 stage.addActor(actor);
122 if (actorX + actor.getWidth() > stage.getWidth()) actorX = stage.getWidth() - actor.getWidth();
123 if (actorY + actor.getHeight() > stage.getHeight()) actorY = stage.getHeight() - actor.getHeight();
190 /** Sets an offset in stage coordinates from the touch position which is used to determine the drop location. Default is 0,0. */
211 /** When true (default), the {@link Stage#cancelTouchFocus()} touch focus} is cancelled i
253 Stage stage = actor.getStage(); local
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_shader_state.c 32 struct nvc0_program *prog, int stage)
40 nvc0->state.tls_required |= 1 << stage;
42 if (nvc0->state.tls_required == (1 << stage))
44 nvc0->state.tls_required &= ~(1 << stage);
53 BEGIN_NVC0(push, NVC0_3D(CB_BIND(stage)), 1);
56 nvc0->state.c14_bound |= 1 << stage;
58 if (nvc0->state.c14_bound & (1 << stage)) {
59 BEGIN_NVC0(push, NVC0_3D(CB_BIND(stage)), 1);
62 nvc0->state.c14_bound &= ~(1 << stage);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
TrapezoidIntegrator.java 62 * Compute the n-th stage integral of trapezoid rule. This function
73 * @param n the stage of 1/2 refinement, n = 0 is no refinement
74 * @return the value of n-th stage integral
77 double stage(final UnivariateRealFunction f, method in class:TrapezoidIntegrator
85 final long np = 1L << (n-1); // number of new points in this stage
114 double oldt = stage(f, min, max, 0);
116 final double t = stage(f, min, max, i);

Completed in 1015 milliseconds

1 2 34 5 6 7 8 91011>>