HomeSort by relevance Sort by last modified time
    Searched refs:UNLIKELY (Results 1 - 25 of 71) 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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 74 if (UNLIKELY(!thread_inited))
82 if (UNLIKELY(!thread_inited))
89 if (UNLIKELY(!thread_inited))
99 if (UNLIKELY(!thread_inited))
112 if (UNLIKELY(!thread_inited))
120 if (UNLIKELY(!thread_inited))
128 if (UNLIKELY(!thread_inited))
  /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     [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()))
  /hardware/qcom/display/libhwcomposer/
hwc_fbupdate.h 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
hwc_utils.h 37 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
213 return (UNLIKELY(l && (l->flags & HWC_SKIP_LAYER)));
  /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 302 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
305 # 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/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 126 # define UNLIKELY(x) (x)
140 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
  /external/valgrind/main/helgrind/
libhb_core.c     [all...]
  /external/valgrind/main/coregrind/
m_poolalloc.c 118 if (UNLIKELY(pa->nextFree == NULL)) {
  /external/valgrind/main/drd/
drd_load_store.c 528 if (UNLIKELY(DRD_(any_address_is_traced)())) {
642 if (UNLIKELY(DRD_(any_address_is_traced)())) {
710 if (UNLIKELY(DRD_(any_address_is_traced)()))
730 if (UNLIKELY(DRD_(any_address_is_traced)()))
  /external/valgrind/main/memcheck/
mc_main.c 629 if (UNLIKELY(is_distinguished_sm(*p)))
637 if (UNLIKELY(is_distinguished_sm(*p)))
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.cpp 72 if (UNLIKELY(!table))
346 if (UNLIKELY(!impl))
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 332 if (UNLIKELY(!registerFile->grow(newEnd)))
409 if (UNLIKELY(!eval))
813 if (UNLIKELY(!!compileError)) {
    [all...]

Completed in 732 milliseconds

1 2 3