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

1 2 3 4 56 7 8 91011>>

  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
pipeline.py 596 stage = pipeline_func_class(*arg_list, **kwarg_dict)
597 stage.backoff_seconds = params['backoff_seconds']
598 stage.backoff_factor = params['backoff_factor']
599 stage.max_attempts = params['max_attempts']
600 stage.task_retry = params['task_retry']
601 stage.target = params.get('target') # May not be defined for old Pipelines
602 stage._current_attempt = pipeline_record.current_attempt
603 stage._set_values_internal(
609 return stage
    [all...]
  /external/opencv3/modules/objdetect/src/
cascadedetect.hpp 188 struct Stage
217 std::vector<Stage> stages;
512 CascadeClassifierImpl::Data::Stage* cascadeStages = &cascade.data.stages[0];
516 CascadeClassifierImpl::Data::Stage& stage = cascadeStages[si]; local
517 int wi, ntrees = stage.ntrees;
522 CascadeClassifierImpl::Data::DTree& weak = cascadeWeaks[stage.first + wi];
536 if( sum < stage.threshold )
554 CascadeClassifierImpl::Data::Stage* cascadeStages = &cascade.data.stages[0];
558 CascadeClassifierImpl::Data::Stage& stage = cascadeStages[si] local
598 const CascadeClassifierImpl::Data::Stage& stage = cascadeStages[stageIdx]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_reg.h 53 #define _3DSTATE_COLOR_FACTOR_N_CMD(stage) (CMD_3D | (0x1d<<24) | \
54 ((0x90+(stage))<<16))
197 #define _3DSTATE_MAP_BLEND_ARG_CMD(stage) (CMD_3D|(0x0e<<24)|((stage)<<20))
222 #define _3DSTATE_MAP_BLEND_OP_CMD(stage) (CMD_3D|(0x0d<<24)|((stage)<<20))
  /external/dng_sdk/source/
dng_opcode_list.cpp 29 dng_opcode_list::dng_opcode_list (uint32 stage)
33 , fStage (stage)
dng_opcodes.h 183 /// Which image processing stage (1, 2, 3) is associated with this
186 uint32 Stage () const
191 /// Set the image processing stage (1, 2, 3) for this opcode. Stage 1 is
192 /// the original image data, including masked areas. Stage 2 is
193 /// linearized image data and trimmed to the active area. Stage 3 is
196 void SetStage (uint32 stage)
198 fStage = stage;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_debug.c 165 const char *stage )
169 printf("%s:\n", stage);
  /external/mesa3d/src/mesa/tnl/
t_vb_lighttmp.h 44 * stage is the lighting stage-private data
49 struct tnl_pipeline_stage *stage,
52 struct light_stage_data *store = LIGHT_STAGE_DATA(stage);
231 struct tnl_pipeline_stage *stage,
234 struct light_stage_data *store = LIGHT_STAGE_DATA(stage);
412 struct tnl_pipeline_stage *stage,
416 struct light_stage_data *store = LIGHT_STAGE_DATA(stage);
517 struct tnl_pipeline_stage *stage,
520 struct light_stage_data *store = LIGHT_STAGE_DATA(stage);
    [all...]
  /external/skia/src/gpu/vk/
GrVkUniformHandler.cpp 144 const char* stage = (visibility == kVertex_GrShaderFlag) ? "vertex" : "fragment"; local
146 kUniformBufferDescSet, uniformBinding, stage);
  /device/google/marlin/recovery/oem-recovery/
gpt-utils.h 140 int prepare_boot_update(enum boot_update_stage stage);
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.hpp 101 bool hasStage (glu::ShaderType stage) const;
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextField.java 34 import com.badlogic.gdx.scenes.scene2d.Stage;
270 Stage stage = getStage(); local
271 boolean focused = stage != null && stage.getKeyboardFocus() == this;
479 /** Focuses the next TextField. If none is found, the keyboard is hidden. Does nothing if the text field is not in a stage.
482 Stage stage = getStage(); local
483 if (stage == null) return;
485 TextField textField = findNextTextField(stage.getActors(), null, tmp2, tmp1, up)
785 Stage stage = getStage(); local
822 Stage stage = getStage(); local
945 Stage stage = getStage(); local
    [all...]
Button.java 23 import com.badlogic.gdx.scenes.scene2d.Stage;
233 Stage stage = getStage(); local
234 if (stage != null && stage.getActionsRequestRendering() && isPressed != clickListener.isPressed())
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 285 self.stage = RAW
307 assert self.stage == RAW
310 assert self.stage == FLAT
312 assert self.stage == CONV
314 assert self.stage == DONE
367 assert self.stage == RAW
396 self.stage = FLAT
407 assert self.stage == FLAT
417 self.stage = CONV
505 assert self.stage == CON
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 285 self.stage = RAW
307 assert self.stage == RAW
310 assert self.stage == FLAT
312 assert self.stage == CONV
314 assert self.stage == DONE
367 assert self.stage == RAW
396 self.stage = FLAT
407 assert self.stage == FLAT
417 self.stage = CONV
505 assert self.stage == CON
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 285 self.stage = RAW
307 assert self.stage == RAW
310 assert self.stage == FLAT
312 assert self.stage == CONV
314 assert self.stage == DONE
367 assert self.stage == RAW
396 self.stage = FLAT
407 assert self.stage == FLAT
417 self.stage = CONV
505 assert self.stage == CON
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 285 self.stage = RAW
307 assert self.stage == RAW
310 assert self.stage == FLAT
312 assert self.stage == CONV
314 assert self.stage == DONE
367 assert self.stage == RAW
396 self.stage = FLAT
407 assert self.stage == FLAT
417 self.stage = CONV
505 assert self.stage == CON
    [all...]
  /external/deqp/modules/glshared/
glsShaderLibraryCase.cpp     [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvtBroadphase.cpp 177 proxy->stage = m_stageCurrent;
196 if(proxy->stage==STAGECOUNT)
200 listremove(proxy,m_stageRoots[proxy->stage]);
294 if(proxy->stage==STAGECOUNT)
330 listremove(proxy,m_stageRoots[proxy->stage]);
333 proxy->stage = m_stageCurrent;
358 if(proxy->stage==STAGECOUNT)
372 listremove(proxy,m_stageRoots[proxy->stage]);
375 proxy->stage = m_stageCurrent;
526 listremove(current,m_stageRoots[current->stage]);
    [all...]
btDbvtBroadphase.h 48 int stage; member in struct:btDbvtProxy
75 int m_stageCurrent; // Current stage
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Group.java 313 * @param unfocus If true, {@link Stage#unfocus(Actor)} is called.
318 Stage stage = getStage(); local
319 if (stage != null) stage.unfocus(actor);
362 protected void setStage (Stage stage) {
363 super.setStage(stage);
366 childrenArray[i].setStage(stage); // StackOverflowError here means the group is its own ancestor.
  /external/libvpx/libvpx/vp8/encoder/x86/
dct_mmx.asm 38 ; transpose for the first stage
63 ; first stage
114 ; transpose for the second stage
  /external/opencv3/modules/cudaobjdetect/src/cuda/
lbp.cu 197 __host__ __device__ __forceinline__ Cascade(const Stage* _stages, int _nstages, const ClNode* _nodes, const float* _leaves,
210 Stage stage = stages[s];
211 for (int t = 0; t < stage.ntrees; t++)
225 if (sum < stage.threshold)
232 const Stage* stages;
297 Cascade cascade((Stage*)mstages.ptr(), nstages, (ClNode*)mnodes.ptr(), mleaves.ptr(), msubsets.ptr(), (uchar4*)mfeatures.ptr(), subsetSize);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
dct_mmx.asm 38 ; transpose for the first stage
63 ; first stage
114 ; transpose for the second stage
  /bootable/recovery/
screen_ui.h 132 int stage, max_stage; member in class:ScreenRecoveryUI
  /external/guice/core/src/com/google/inject/internal/
InjectionRequestProcessor.java 22 import com.google.inject.Stage;
120 // Run injections if we're not in tool stage (ie, PRODUCTION or DEV),
121 // or if we are in tool stage and the injection point is toolable.
122 if(injector.options.stage != Stage.TOOL || memberInjector.getInjectionPoint().isToolable()) {

Completed in 2171 milliseconds

1 2 3 4 56 7 8 91011>>