HomeSort by relevance Sort by last modified time
    Searched defs:alternative (Results 1 - 22 of 22) sorted by null

  /bionic/libc/kernel/arch-x86/asm/
alternative_32.h 36 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /development/ndk/platforms/android-9/arch-x86/include/asm/
alternative_32.h 36 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
alternative_32.h 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
alternative_32.h 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
alternative_32.h 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
alternative_32.h 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
alternative_32.h 29 #define alternative(oldinstr, newinstr, feature) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature) : "memory") macro
  /external/kernel-headers/original/asm-x86/
alternative_32.h 36 * Alternative instructions for different CPU types or capabilities.
47 #define alternative(oldinstr, newinstr, feature) \ macro
62 * Alternative inline assembly with input.
107 * Alternative inline assembly for SMP.
117 * The SMP alternative tables can be kept after boot and contain both
  /external/v8/src/
ast.cc 958 RegExpTree* alternative = alternatives->at(i); local
959 min_match_ = Min(min_match_, alternative->min_match());
960 max_match_ = Max(max_match_, alternative->max_match());
    [all...]
jsregexp.cc 627 // fails to find a match and needs to try an alternative.
2879 GuardedAlternative alternative = alternatives_->at(i); local
2950 GuardedAlternative alternative = alternatives_->at(i); local
4989 GuardedAlternative alternative = alternatives()->at(i); local
    [all...]
parser.cc 175 RegExpTree* alternative; local
177 alternative = RegExpEmpty::GetInstance();
179 alternative = terms_.last();
181 alternative = new(zone()) RegExpAlternative(terms_.GetList());
183 alternatives_.Add(alternative);
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrInterpreter.h 97 } alternative; member in union:JSC::Yarr::ByteTerm::__anon14610
238 term.alternative.next = 0;
239 term.alternative.end = 0;
240 term.alternative.onceThrough = onceThrough;
247 term.alternative.next = 0;
248 term.alternative.end = 0;
249 term.alternative.onceThrough = onceThrough;
256 term.alternative.next = 0;
257 term.alternative.end = 0;
258 term.alternative.onceThrough = false
    [all...]
YarrPattern.cpp 527 PatternAlternative* alternative = parenthesesDisjunction->addNewAlternative(); local
531 PatternDisjunction* newDisjunction = new PatternDisjunction(alternative);
533 alternative->m_terms.append(PatternTerm(PatternTerm::TypeParenthesesSubpattern, subpatternId, newDisjunction, false, false));
537 PatternTerm& disjunctionTerm = alternative->lastTerm();
540 alternative->m_containsBOL = m_alternative->m_containsBOL;
541 alternative->m_startsWithBOL = m_alternative->m_startsWithBOL;
579 PatternAlternative* alternative = disjunction->m_alternatives[alt]; local
580 if (!filterStartsWithBOL || !alternative->m_startsWithBOL) {
586 for (unsigned i = 0; i < alternative->m_terms.size(); ++i)
587 newAlternative->m_terms.append(copyTerm(alternative->m_terms[i], filterStartsWithBOL))
741 PatternAlternative* alternative = disjunction->m_alternatives[alt]; local
823 PatternAlternative* alternative = disjunction->m_alternatives[alt]; local
    [all...]
YarrPattern.h 267 PatternAlternative* alternative = new PatternAlternative(this); local
268 m_alternatives.append(alternative);
269 return alternative;
YarrInterpreter.cpp 1779 PatternAlternative* alternative = disjunction->m_alternatives[alt]; local
    [all...]
YarrJIT.cpp 94 void optimizeAlternative(PatternAlternative* alternative)
96 if (!alternative->m_terms.size())
99 for (unsigned i = 0; i < alternative->m_terms.size() - 1; ++i) {
100 PatternTerm& term = alternative->m_terms[i];
101 PatternTerm& nextTerm = alternative->m_terms[i + 1];
108 alternative->m_terms[i] = nextTerm;
109 alternative->m_terms[i + 1] = termCopy;
843 PatternAlternative* alternative() function in struct:JSC::Yarr::YarrGenerator::TermGenerationState
861 return t < alternative()->m_terms.size();
871 return alternative()->m_terms[t]
1557 PatternAlternative* alternative = state.alternative(); local
1593 PatternAlternative* alternative = state.alternative(); local
1754 PatternAlternative* alternative = parenthesesState.alternative(); local
1941 PatternAlternative* alternative = state.alternative(); local
1957 PatternAlternative* alternative = state.alternative(); local
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1248 milliseconds