Searched defs:transition (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.cpp123 transition(ftos, itos);
129 transition(dtos, itos);
135 transition(vtos, vtos);
141 transition(vtos, vtos);
147 transition(vtos, vtos); // result is not an oop, so do not transition to atos
153 transition(vtos, vtos); // result is not an oop, so do not transition to atos
162 void TemplateTable::transition(TosState tos_in, TosState tos_out) { function in class:TemplateTable
429 def(Bytecodes::_jsr , ubcp|disp|____|____, vtos, vtos, jsr , _ ); // result is not an oop, so do not transition t
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DThaiShaping.cpp170 le_uint8 ThaiShaping::doTransition (StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphSet, argument
175 switch (transition.action) {
250 return transition.nextState;
256 StateTransition transition; local
259 transition = getTransition(prevState, charClass);
261 return doTransition(transition, ch, inputIndex, glyphSet, errorChar, output, glyphStorage, outputIndex);
267 StateTransition transition = getTransition(prevState, charClass); local
269 switch (transition.action) {
H A DHangulLayoutEngine.cpp277 const StateTransition transition = stateTable[state][chClass]; local
281 if ((transition.actionFlags & AF_T) != 0) {
288 if ((transition.actionFlags & AF_L) != 0) {
294 if ((transition.actionFlags & AF_V) != 0) {
300 if ((transition.actionFlags & AF_T) != 0) {
307 state = transition.newState;
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp128 // Basic class for all thread transition classes.
141 static inline void transition(JavaThread *thread, JavaThreadState from, JavaThreadState to) { function in class:ThreadStateTransition
146 // Change to transition state (assumes total store ordering! -Urs)
168 // transition_and_fence must be used on any thread state transition
177 // Change to transition state (assumes total store ordering! -Urs)
210 // Change to transition state (assumes total store ordering! -Urs)
237 void trans(JavaThreadState from, JavaThreadState to) { transition(_thread, from, to); }
328 // This special transition class is only used to prevent asynchronous exceptions
341 // only). However, to do so would require that we transition back

Completed in 318 milliseconds