Home
last modified time | relevance | path

Searched refs:pref (Results 1 – 5 of 5) sorted by relevance

/dalvik/vm/compiler/codegen/x86/libenc/
Ddec_base.h54 pref[i] = InstPrefix_Null; in Inst()
78 InstPrefix pref[4]; member
Ddec_base.cpp124 if (InstPrefix_Null != pinst->pref[where]) //only one prefix in each group in fill_prefs()
127 pinst->pref[where] = (InstPrefix)by1; in fill_prefs()
Dencoder.inl640 InstrPrefix pref) argument
642 if (pref != no_prefix) {
643 assert(pref == hint_branch_taken_prefix || pref == hint_branch_taken_prefix);
644 stream = prefix(stream, pref);
655 InstrPrefix pref) argument
657 if (pref != no_prefix) {
658 assert(pref == hint_branch_taken_prefix || pref == hint_branch_taken_prefix);
659 stream = prefix(stream, pref);
Denc_base.cpp655 char * EncoderBase::prefix(char* stream, InstPrefix pref) in prefix() argument
657 if (pref== InstPrefix_Null) { in prefix()
661 *stream = (char)pref; in prefix()
Denc_base.h103 static char * prefix(char* stream, InstPrefix pref);