/external/webkit/Source/WebCore/platform/graphics/cairo/ |
D | RefPtrCairo.cpp | 33 if (LIKELY(ptr != 0)) in refIfNotNull() 39 if (LIKELY(ptr != 0)) in derefIfNotNull() 45 if (LIKELY(ptr != 0)) in refIfNotNull() 51 if (LIKELY(ptr != 0)) in derefIfNotNull() 57 if (LIKELY(ptr != 0)) in refIfNotNull() 63 if (LIKELY(ptr != 0)) in derefIfNotNull() 69 if (LIKELY(ptr != 0)) in refIfNotNull() 75 if (LIKELY(ptr != 0)) in derefIfNotNull() 81 if (LIKELY(ptr != 0)) in refIfNotNull() 87 if (LIKELY(ptr != 0)) in derefIfNotNull() [all …]
|
/external/webkit/Source/JavaScriptCore/wtf/brew/ |
D | RefPtrBrew.h | 35 if (LIKELY(ptr != 0)) in refIfNotNull() 41 if (LIKELY(ptr != 0)) in derefIfNotNull() 47 if (LIKELY(ptr != 0)) in refIfNotNull() 53 if (LIKELY(ptr != 0)) in derefIfNotNull()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | AlwaysInline.h | 51 #ifndef LIKELY 53 #define LIKELY(x) __builtin_expect((x), 1) macro 55 #define LIKELY(x) (x) macro
|
D | BloomFilter.h | 87 if (LIKELY(first < maximumCount())) in add() 89 if (LIKELY(second < maximumCount())) in add() 101 if (LIKELY(first < maximumCount())) in remove() 103 if (LIKELY(second < maximumCount())) in remove()
|
D | PassRefPtr.h | 52 if (LIKELY(ptr != 0)) in refIfNotNull() 58 if (LIKELY(ptr != 0)) in derefIfNotNull()
|
/external/valgrind/main/coregrind/ |
D | pub_core_libcassert.h | 50 ((void) (LIKELY(expr) ? 0 : \ 57 ((void) (LIKELY(expr) ? 0 : \
|
/external/valgrind/main/include/ |
D | pub_tool_libcassert.h | 35 ((void) (LIKELY(expr) ? 0 : \ 43 ((void) (LIKELY(expr) ? 0 : \
|
D | pub_tool_basics.h | 301 # define LIKELY(x) __builtin_expect(!!(x), 1) macro 304 # define LIKELY(x) (x) macro
|
D | pub_tool_libcbase.h | 132 if (LIKELY(0 == (((Addr)sz) & (Addr)(sizeof(UWord)-1))) in VG_() 133 && LIKELY(0 == (((Addr)s) & (Addr)(sizeof(UWord)-1)))) { in VG_()
|
/external/valgrind/main/VEX/priv/ |
D | main_util.h | 46 #define LIKELY(x) __builtin_expect(!!(x), 1) macro 54 ((void) (LIKELY(expr) ? 0 : \
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Arguments.cpp | 73 if (LIKELY(!d->deletedArguments)) { in copyToRegisters() 108 if (LIKELY(!d->deletedArguments)) { in fillArgList() 109 if (LIKELY(!d->numParameters)) { in fillArgList() 193 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) { in getOwnPropertySlot() 198 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) { in getOwnPropertySlot() 224 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) { in getOwnPropertyDescriptor() 229 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) { in getOwnPropertyDescriptor()
|
D | Operations.h | 155 if (LIKELY(v.isString())) in jsString() 174 if (LIKELY(v.isString())) in jsString() 194 if (LIKELY(thisValue.isString())) in jsString() 200 if (LIKELY(v.isString())) in jsString() 210 if (LIKELY(thisValue.isString())) in jsString() 220 if (LIKELY(v.isString())) in jsString()
|
D | StringConstructor.cpp | 44 if (LIKELY(exec->argumentCount() == 1)) in stringFromCharCode()
|
D | RegExpObject.cpp | 154 if (LIKELY(jsLastIndex.isUInt32())) { in match()
|
/external/valgrind/main/memcheck/ |
D | mc_main.c | 518 if (LIKELY(auxmap_L1[0].base == a)) in maybe_find_in_auxmap() 520 if (LIKELY(auxmap_L1[1].base == a)) { in maybe_find_in_auxmap() 572 if (LIKELY(res)) in find_or_alloc_in_auxmap() 1074 if (LIKELY(ignoreRanges.used == 0)) in MC_() 1145 if (LIKELY(sizeof(void*) == 8 in mc_LOADVn_slow() 1150 if (LIKELY(vabits16 == VA_BITS16_DEFINED)) in mc_LOADVn_slow() 1152 if (LIKELY(vabits16 == VA_BITS16_UNDEFINED)) in mc_LOADVn_slow() 1156 if (LIKELY(sizeof(void*) == 8 in mc_LOADVn_slow() 1161 if (LIKELY(vabits8 == VA_BITS8_DEFINED)) in mc_LOADVn_slow() 1163 if (LIKELY(vabits8 == VA_BITS8_UNDEFINED)) in mc_LOADVn_slow() [all …]
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | Lexer.cpp | 267 if (LIKELY(m_code < m_codeEnd)) in setCode() 280 if (LIKELY(m_code < m_codeEnd)) in shift() 409 if (LIKELY(isIdentPart(m_current))) { in parseIdentifier() 413 if (LIKELY(m_current != '\\')) in parseIdentifier() 446 if (LIKELY(!bufferRequired && lexType == IdentifyReservedWords)) { in parseIdentifier() 736 if (LIKELY(isASCII(m_current))) in lex() 1004 if (LIKELY(token != NUMBER)) { in lex()
|
D | Lexer.h | 78 if (LIKELY(m_code < m_codeEnd)) in setOffset()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | V8Binding.h | 222 if (LIKELY(m_v8Object->IsString())) in prepareBase() 225 if (LIKELY(m_v8Object->IsInt32())) { in prepareBase() 266 if (LIKELY(!m_v8Object.IsEmpty())) in toString()
|
D | V8DOMMap.cpp | 54 if (LIKELY(fasterDOMStoreAccess)) { in getDOMDataStore()
|
D | V8DOMWrapper.h | 131 if (LIKELY(!IsolatedWorld::count())) { in getWrapper()
|
/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGOperations.cpp | 52 if (LIKELY(result32 == result64)) in operationValueAdd() 70 if (LIKELY(baseValue.isCell())) { in operationGetByVal() 120 if (LIKELY(property.isUInt32())) { in operationPutByValInternal()
|
/external/valgrind/main/helgrind/ |
D | libhb_core.c | 692 if (LIKELY(gaKey == smCache[0].gaKey)) in shmem__find_SecMap() 694 if (LIKELY(gaKey == smCache[1].gaKey)) { in shmem__find_SecMap() 724 if (LIKELY(sm)) { in shmem__find_or_alloc_SecMap() 1378 if (LIKELY(i == N_LINE_ARANGE)) { in cacheline_wback() 1528 if (LIKELY(tag == cache_shmem.tags0[wix])) { in get_cacheline() 2348 if (LIKELY(useda == usedb)) { in VTS__cmp_structural() 2356 if (LIKELY(tmpa->tym == tmpb->tym in VTS__cmp_structural() 3246 return LIKELY(vi1 == vi2) ? True : VtsID__cmpLEQ_WRK(vi1, vi2); in VtsID__cmpLEQ() 3278 return LIKELY(vi1 == vi2) ? vi1 : VtsID__join2_WRK(vi1, vi2); in VtsID__join2() 3364 if (LIKELY( fi->tags[lineno] == atag )) { in Filter__clear_1byte() [all …]
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 331 if (LIKELY(argc == newCodeBlock->m_numParameters)) { // correct number of arguments in slideRegisterWindowForCall() 1806 if (LIKELY(srcVal.isNumber())) in privateExecute() 2517 if (LIKELY(baseValue.isCell())) { in privateExecute() 2521 if (LIKELY(baseCell->structure() == structure)) { in privateExecute() 2548 if (LIKELY(baseValue.isCell())) { in privateExecute() 2552 if (LIKELY(baseCell->structure() == structure)) { in privateExecute() 2557 if (LIKELY(protoObject->structure() == prototypeStructure)) { in privateExecute() 2587 if (LIKELY(baseValue.isCell())) { in privateExecute() 2591 if (LIKELY(baseCell->structure() == structure)) { in privateExecute() 2596 if (LIKELY(protoObject->structure() == prototypeStructure)) { in privateExecute() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_internal_defs.h | 125 # define LIKELY(x) (x) macro 139 # define LIKELY(x) __builtin_expect(!!(x), 1) macro
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | AtomicString.cpp | 349 if (LIKELY(newImpl == impl)) in lower()
|