HomeSort by relevance Sort by last modified time
    Searched refs:stage (Results 101 - 125 of 356) sorted by null

1 2 3 45 6 7 8 91011>>

  /bootable/recovery/bootloader_message/include/bootloader_message/
bootloader_message.h 49 * The stage field is written by packages which restart themselves
69 // stage string (for multistage packages) and possible future
71 char stage[32]; member in struct:bootloader_message
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target_nv50.h 41 virtual bool runLegalizePass(Program *, CGStage stage) const;
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.h 41 virtual bool runLegalizePass(Program *, CGStage stage) const;
  /external/skia/src/gpu/vk/
GrVkProgramBuilder.h 56 VkShaderStageFlagBits stage,
GrVkProgramBuilder.cpp 83 shaderc_shader_kind vk_shader_stage_to_shaderc_kind(VkShaderStageFlagBits stage) {
84 if (VK_SHADER_STAGE_VERTEX_BIT == stage) {
87 SkASSERT(VK_SHADER_STAGE_FRAGMENT_BIT == stage);
92 VkShaderStageFlagBits stage,
109 shaderc_shader_kind shadercStage = vk_shader_stage_to_shaderc_kind(stage);
147 stageInfo->stage = stage;
  /external/mesa3d/src/mesa/tnl/
t_vb_program.c 29 * \brief Pipeline stage for executing vertex programs.
62 * Private storage for the vertex program pipeline stage.
78 #define VP_STAGE_DATA(stage) ((struct vp_stage_data *)(stage->privatePtr))
217 * stage we'd recompute/validate it here.
311 run_vp( struct gl_context *ctx, struct tnl_pipeline_stage *stage )
314 struct vp_stage_data *store = VP_STAGE_DATA(stage);
506 * Called the first time stage->run is called. In effect, don't
507 * allocate data until the first time the stage is run.
510 init_vp(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
    [all...]
t_vb_texgen.c 74 /* Buffered outputs of the stage.
80 #define TEXGEN_STAGE_DATA(stage) ((struct texgen_stage_data *)stage->privatePtr)
484 struct tnl_pipeline_stage *stage )
487 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage);
509 struct tnl_pipeline_stage *stage )
511 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage);
556 /* Called the first time stage->run() is invoked.
559 struct tnl_pipeline_stage *stage )
565 stage->privatePtr = CALLOC(sizeof(*store))
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
RombergIntegrator.java 80 currentRow[0] = qtrap.stage(f, min, max, 0);
89 currentRow[0] = qtrap.stage(f, min, max, i);
LegendreGaussIntegrator.java 173 double oldt = stage(f, min, max, 1);
179 final double t = stage(f, min, max, n);
205 * Compute the n-th stage integral.
210 * @return the value of n-th stage integral
214 private double stage(final UnivariateRealFunction f, method in class:LegendreGaussIntegrator
218 // set up the step for the current stage
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
GroupTest.java 35 import com.badlogic.gdx.scenes.scene2d.Stage;
40 Stage stage; field in class:GroupTest
53 stage = new Stage();
54 Gdx.input.setInputProcessor(stage);
60 stage.addActor(group2);
81 stage.draw();
100 stage.getViewport().update(width, height, true);
128 // Use Stage#toScreenCoordinates, which we know is correct.
    [all...]
BitmapFontTest.java 31 import com.badlogic.gdx.scenes.scene2d.Stage;
40 private Stage stage; field in class:BitmapFontTest
65 stage = new Stage(new ScreenViewport());
76 stage.addActor(label);
81 stage.addActor(window);
217 stage.act(Gdx.graphics.getDeltaTime());
218 stage.draw();
224 stage.getViewport().update(width, height, true)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
SelectBox.java 34 import com.badlogic.gdx.scenes.scene2d.Stage;
101 * the stage height. */
111 protected void setStage (Stage stage) {
112 if (stage == null) selectBoxList.hide();
113 super.setStage(stage);
392 public void show (Stage stage) {
395 stage.removeCaptureListener(hideListener);
396 stage.addCaptureListener(hideListener);
455 Stage stage = getStage(); local
    [all...]
TooltipManager.java 25 import com.badlogic.gdx.scenes.scene2d.Stage;
69 Stage stage = showTooltip.targetActor.getStage();
70 if (stage == null) return;
71 stage.addActor(showTooltip.container);
126 /** Called when tooltip is hidden. Default implementation sets actions to animate hiding and to remove the actor from the stage
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 179 updateStage(Stage.Introduction);
209 if (mUiStage == Stage.NeedToConfirm || mUiStage == Stage.ConfirmWrong) {
211 "null chosen pattern in stage 'need to confirm");
213 updateStage(Stage.ChoiceConfirmed);
215 updateStage(Stage.ConfirmWrong);
217 } else if (mUiStage == Stage.Introduction || mUiStage == Stage.ChoiceTooShort){
219 updateStage(Stage.ChoiceTooShort);
222 updateStage(Stage.FirstChoiceValid)
    [all...]
  /external/guice/core/src/com/google/inject/spi/
Elements.java 36 import com.google.inject.Stage;
87 return getElements(Stage.DEVELOPMENT, Arrays.asList(modules));
93 public static List<Element> getElements(Stage stage, Module... modules) {
94 return getElements(stage, Arrays.asList(modules));
101 return getElements(Stage.DEVELOPMENT, modules);
107 public static List<Element> getElements(Stage stage, Iterable<? extends Module> modules) {
108 RecordingBinder binder = new RecordingBinder(stage);
161 private final Stage stage field in class:Elements.RecordingBinder
    [all...]
  /external/testng/src/main/java/org/testng/internal/
ClassImpl.java 7 import com.google.inject.Stage;
150 Stage stage; local
152 stage = Stage.valueOf(stageString);
154 stage = Stage.DEVELOPMENT;
162 injector = com.google.inject.Guice.createInjector(stage, module);
164 injector = com.google.inject.Guice.createInjector(stage);
  /external/opencv/cv/src/
cvcorner.cpp 223 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 = CV_START local
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
xmpplogintask_unittest.cc 570 for (XlttStage stage = XLTT_STAGE_CONNECT;
571 stage <= XLTT_STAGE_SESSION_SUCCESS;
572 stage = static_cast<XlttStage>(stage + 1)) {
573 RunPartialLogin(XLTT_STAGE_CONNECT, stage);
595 for (XlttStage stage = XLTT_STAGE_CONNECT;
596 stage <= XLTT_STAGE_SESSION_SUCCESS;
597 stage = static_cast<XlttStage>(stage + 1)) {
598 switch (stage) {
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 221 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShaderStageFlagBits stage)
223 if (stage == VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT || stage == VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT)
225 else if (stage == VK_SHADER_STAGE_GEOMETRY_BIT)
  /external/dng_sdk/source/
dng_opcode_list.h 49 /// Create an empty opcode list for the specific image stage (1, 2, or 3).
51 dng_opcode_list (uint32 stage);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 70 struct pipe_sampler_view *stage[2][2]; member in union:vl_idct_buffer::__anon19043
  /external/opencv3/modules/objdetect/src/
cascadedetect_convert.cpp 138 HaarStageClassifier& stage = stages[i]; local
139 stage.threshold = (double)stagenode[ICV_HAAR_STAGE_THRESHOLD_NAME];
142 stage.weaks.resize(nweaks);
146 HaarClassifier& weak = stage.weaks[j];
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 106 public void stage(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
  /external/libhevc/common/arm/
ihevc_itrans_recon_4x4.s 24 @ * contains function definitions for single stage inverse transform
55 @ * 1st stage output
151 @ first stage computation starts
178 @ first stage ends
180 @ second stage starts
209 @ second stage ends
211 @ second stage computation ends
ihevc_itrans_recon_4x4_ttype1.s 60 @ * 1st stage output
142 @ first stage computation starts
173 @ first stage computation ends
175 @ second stage computation starts : copy pasting 1st stage
212 @ second stage computation ends

Completed in 512 milliseconds

1 2 3 45 6 7 8 91011>>