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

  /external/v8/src/mips/
assembler-mips.h 213 enum Hint {
217 inline Hint NegateHint(Hint hint) {
  /external/webkit/WebCore/inspector/front-end/
AuditsPanel.js 394 Hint: 1,
  /external/v8/src/ia32/
assembler-ia32.h 175 enum Hint {
181 // The result of negating a hint is as if the corresponding condition
184 inline Hint NegateHint(Hint hint) {
185 return (hint == no_hint)
187 : ((hint == not_taken) ? taken : not_taken);
681 void j(Condition cc, Label* L, Hint hint = no_hint);
682 void j(Condition cc, byte* entry, RelocInfo::Mode rmode, Hint hint = no_hint)
    [all...]
  /external/v8/src/arm/
assembler-arm.h 308 enum Hint { no_hint };
311 inline Hint NegateHint(Hint ignored) { return no_hint; }
    [all...]
assembler-thumb2.h 308 enum Hint { no_hint };
311 inline Hint NegateHint(Hint ignored) { return no_hint; }
    [all...]
  /external/v8/src/x64/
assembler-x64.h 244 enum Hint {
250 // The result of negating a hint is as if the corresponding condition
253 inline Hint NegateHint(Hint hint) {
254 return (hint == no_hint)
256 : ((hint == not_taken) ? taken : not_taken);
    [all...]

Completed in 486 milliseconds