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

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftEnvelopeGenerator.java45 private final int[] stage = new int[max_count]; field in class:SoftEnvelopeGenerator
66 stage[i] = 0;
124 if (stage[i] == EG_END)
127 if ((stage[i] > EG_OFF) && (stage[i] < EG_RELEASE)) {
136 stage[i] = EG_SHUTDOWN;
142 stage[i] = EG_END;
158 stage[i] = EG_RELEASE;
163 switch (stage[i]) {
168 stage[
[all...]
/openjdk7/jdk/test/java/awt/Focus/ShowFrameCheckForegroundTest/
H A DShowFrameCheckForegroundTest.java96 private void test(Window toplevel, int stage) { argument
101 switch (stage) {
113 throw new TestFailedException("Stage " + stage + ". The toplevel " + toplevel + " wasn't made foreground on showing");
115 System.out.println("Stage " + stage + ". Toplevel " + toplevel + " - passed");
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DORBInitInfoImpl.java79 // The current stage of initialization
80 private int stage = STAGE_PRE_INIT; field in class:ORBInitInfoImpl
82 // The pre-initialization stage (pre_init() being called)
85 // The post-initialization stage (post_init() being called)
126 * Sets the current stage we are in. This limits access to certain
129 void setStage( int stage ) {
130 this.stage = stage;
134 * Throws an exception if the current stage is STAGE_CLOSED.
140 if( stage
[all...]
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java179 int stage = 0; // 1. commands, 2. options, 3. finished
187 if (s.indexOf("enum Command") >= 0) stage = 1;
188 else if (s.indexOf("enum Option") >= 0) stage = 2;
189 else if (s.indexOf("private static final String JKS") >= 0) stage = 3;
191 if (stage == 1 || stage == 2) {
195 if (stage == 1) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.hpp317 PipeClassOperandForm(const char *stage, unsigned iswrite, unsigned more_instrs) argument
318 : _stage(stage)
342 PipeClassResourceForm(const char *resource, const char *stage, int cycles) argument
345 , _stage(stage)
H A Dformsopt.cpp395 const char *stage; local
430 for ( _stages.reset(); (stage = _stages.iter()) != NULL; )
431 fprintf(fp," %s(%d)", stage, count++);
492 fprintf(fp,"PipeClassResourceForm: %s at stage %s for %d cycles\n",
H A Doutput_h.cpp982 fprintf(fp_hpp, " enum machPipelineStages * const stage,\n");
990 fprintf(fp_hpp, " , _resource_stage(stage)\n");
2147 const char *stage; local
2148 for ( _pipeline->_stages.reset(); (stage = _pipeline->_stages.iter()) != NULL; ) {
2149 int len = (int)strlen(stage);
2161 const char *stage; local
2162 for ( _pipeline->_stages.reset(); (stage = _pipeline->_stages.iter()) != NULL; )
2163 fprintf(fp_hpp, " stage_%-*s = %d,\n", stagelen, stage, ++stagenum);
H A Dadlparse.cpp1747 char * stage; local
1951 stage = get_ident();
1952 if (stage == NULL) {
1953 parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
1999 PipeClassOperandForm *pipe_operand = new PipeClassOperandForm(stage, is_write, more_instrs);
2022 stage = get_ident();
2023 if (stage == NULL) {
2024 parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
2042 PipeClassResourceForm *resource = new PipeClassResourceForm(ident, stage, cyclecnt);
2043 int stagenum = pipeline._stages.index(stage);
[all...]
H A Doutput_c.cpp315 int stage = pipeline->_stages.index(piperesource->_stage); local
316 if (res_stages[i] < stage+1)
317 res_stages[i] = stage+1;
528 uint stage = pipeline->_stages.index(piperesource->_stage); local
529 if (NameList::Not_in_list == stage) {
533 "pipeline stage undeclared: %s\n",
537 uint upper_limit = stage+cycles-1;
538 uint lower_limit = stage-1;
850 // Scan the operands, looking for last output stage and number of inputs
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dglext.h5326 typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
5327 typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum);
5329 typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params);
5330 typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params);
5331 typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params);
5332 typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params);
5587 typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params);
5588 typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params);

Completed in 114 milliseconds