HomeSort by relevance Sort by last modified time
    Searched refs:UNLIKELY (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/Source/JavaScriptCore/wtf/
AlwaysInline.h 43 #ifndef UNLIKELY
45 #define UNLIKELY(x) __builtin_expect((x), 0)
47 #define UNLIKELY(x) (x)
  /external/webkit/Source/WebCore/bindings/v8/
MainThreadDOMData.cpp 57 if (UNLIKELY(context != 0))
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DirectoryEntrySyncCustom.cpp 104 if (UNLIKELY(ec)) {
109 if (UNLIKELY(ec)) {
123 if (UNLIKELY(ec)) {
128 if (UNLIKELY(ec)) {
V8SVGLengthCustom.cpp 49 if (UNLIKELY(ec)) {
73 if (UNLIKELY(ec))
95 if (UNLIKELY(ec))
V8DataViewCustom.cpp 66 if (UNLIKELY(ec)) {
83 if (UNLIKELY(ec)) {
101 if (UNLIKELY(ec))
117 if (UNLIKELY(ec))
  /external/valgrind/main/VEX/priv/
main_util.h 47 #define UNLIKELY(x) __builtin_expect(!!(x), 0)
host_s390_defs.c 1120 if (UNLIKELY(vex_traceflags & VEX_TRACE_ASM))
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
CachedTranscendentalFunction.h 61 if (UNLIKELY(!m_cache))
Operations.h 55 if (UNLIKELY(ropeBuilder.isOutOfMemory()))
80 if (UNLIKELY(ropeBuilder.isOutOfMemory()))
105 if (UNLIKELY(ropeBuilder.isOutOfMemory()))
166 if (UNLIKELY(ropeBuilder.isOutOfMemory()))
207 if (UNLIKELY(ropeBuilder.isOutOfMemory()))
RegExpObject.cpp 78 if (UNLIKELY(!d->lastIndex.get().isInt32()))
Arguments.cpp 66 if (UNLIKELY(d->overrodeLength)) {
101 if (UNLIKELY(d->overrodeLength)) {
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 298 if (UNLIKELY(!isASCIIHexDigit(m_current) || !isASCIIHexDigit(char1) || !isASCIIHexDigit(char2) || !isASCIIHexDigit(char3)))
421 if (UNLIKELY(m_current != 'u'))
425 if (UNLIKELY(character == -1))
427 if (UNLIKELY(m_buffer16.size() ? !isIdentPart(character) : !isIdentStart(character)))
464 if (UNLIKELY(m_current == '\\')) {
475 } else if (UNLIKELY(isLineTerminator(m_current)))
529 if (UNLIKELY(((static_cast<unsigned>(m_current) - 0xE) & 0x2000))) {
531 if (UNLIKELY(isLineTerminator(m_current)) || UNLIKELY(m_current == -1))
688 while (UNLIKELY(m_current == '*'))
    [all...]
ParserArena.h 85 if (UNLIKELY(static_cast<size_t>(m_freeablePoolEnd - m_freeableMemory) < alignedSize))
  /external/valgrind/main/include/
pub_tool_basics.h 295 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
298 # define UNLIKELY(x) (x)
  /dalvik/vm/
Common.h 56 #define UNLIKELY(exp) (__builtin_expect((exp) != 0, false))
  /dalvik/vm/alloc/
HeapBitmap.cpp 106 if (UNLIKELY(word != 0)) {
141 if (UNLIKELY(word != 0)) {
190 if (UNLIKELY(garbage != 0)) {
  /external/valgrind/main/helgrind/
libhb_core.c     [all...]
  /external/valgrind/tsan/
ts_util.h 228 #define UNLIKELY(x) __builtin_expect((x), 0)
245 #define UNLIKELY(x) (x) // TODO(kcc): how to say this in MSVC?
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.cpp 72 if (UNLIKELY(!table))
346 if (UNLIKELY(!impl))
  /external/valgrind/main/memcheck/
mc_main.c 637 if (UNLIKELY(is_distinguished_sm(*p)))
645 if (UNLIKELY(is_distinguished_sm(*p)))
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 332 if (UNLIKELY(!registerFile->grow(newEnd)))
409 if (UNLIKELY(!eval))
813 if (UNLIKELY(!!compileError)) {
    [all...]
  /external/valgrind/main/drd/
drd_main.c 323 if (UNLIKELY(DRD_(any_address_is_traced)()))
328 if (UNLIKELY(DRD_(running_thread_inside_pthread_create)()))
356 if (UNLIKELY(DRD_(any_address_is_traced)()))
drd_load_store.c 311 if (UNLIKELY(DRD_(any_address_is_traced)()))
376 if (UNLIKELY(DRD_(any_address_is_traced)()))
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 409 if (UNLIKELY(ec)) {
423 if (UNLIKELY(ec))
442 if (UNLIKELY(ec))
453 if (UNLIKELY(ec)) {
467 if (UNLIKELY(ec))
486 if (UNLIKELY(ec))
707 if (UNLIKELY(ec))
735 if (UNLIKELY(!key)) {
768 if (UNLIKELY(ec))
790 if (UNLIKELY(ec)
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 148 do { if (UNLIKELY(VG_(debugLog_getLevel)() >= level)) \

Completed in 802 milliseconds

1 2 3