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

1 2

  /external/webkit/JavaScriptCore/wtf/
AlwaysInline.h 49 #ifndef LIKELY
51 #define LIKELY(x) __builtin_expect((x), 1)
53 #define LIKELY(x) (x)
  /frameworks/base/media/libeffects/testlibs/
AudioCoefInterpolator.cpp 21 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
66 if (LIKELY(fracCoord != 0)) {
AudioPeakingFilter.cpp 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
74 if (LIKELY(normFreq > (1 << 23))) {
AudioShelvingFilter.cpp 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
80 if (LIKELY(normFreq > (1U << log2minFreq))) {
AudioBiquadFilter.cpp 23 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /external/webkit/JavaScriptCore/runtime/
Arguments.cpp 73 if (LIKELY(!d->deletedArguments)) {
108 if (LIKELY(!d->deletedArguments)) {
109 if (LIKELY(!d->numParameters)) {
169 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
174 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
194 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
199 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
Operations.h 104 if (LIKELY(v.isString()))
121 if (LIKELY(v.isString()))
134 if (LIKELY(thisValue.isString()))
140 if (LIKELY(v.isString()))
151 if (LIKELY(thisValue.isString()))
157 if (LIKELY(v.isString()))
StringConstructor.cpp 43 if (LIKELY(args.size() == 1))
JSNumberCell.h 346 else if (LIKELY(isDouble()))
Lookup.h 298 if (LIKELY(value.isCell()))
  /dalvik/vm/
Common.h 40 #define LIKELY(exp) (__builtin_expect((exp) != 0, true))
  /external/webkit/JavaScriptCore/parser/
Lexer.cpp 79 if (LIKELY(m_code < m_codeEnd))
91 if (LIKELY(m_code + 1 < m_codeEnd)) {
105 if (LIKELY(m_code + 2 < m_codeEnd)) {
120 if (LIKELY(m_code + 3 < m_codeEnd)) {
666 if (LIKELY(m_current != '\\')) {
  /external/webkit/WebCore/bindings/v8/
V8DOMMap.cpp 55 if (LIKELY(fasterDOMStoreAccess)) {
V8DOMWrapper.cpp 377 if (LIKELY(!context)) {
  /frameworks/base/services/audioflinger/
AudioMixer.h 31 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /frameworks/base/libs/surfaceflinger_client/
ISurfaceComposerClient.cpp 45 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
ISurfaceComposer.cpp 34 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 243 if (LIKELY(argc == newCodeBlock->m_numParameters)) { // correct number of arguments
    [all...]
  /external/webkit/WebCore/platform/text/
AtomicString.cpp 239 if (LIKELY(newImpl == impl))
  /frameworks/base/services/surfaceflinger/
BlurFilter.cpp 29 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
SurfaceFlinger.cpp 369 if (LIKELY(mTransactionCount == 0)) {
373 if (LIKELY(transactionFlags)) {
382 if (LIKELY(hw.canDraw() && !isFrozen())) {
646 if (LIKELY(!(s.flags & ISurfaceComposer::eLayerHidden) && s.alpha)) {
975 if (LIKELY(!mDebugBackground)) {
    [all...]
SurfaceFlinger.h 55 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
LayerBuffer.cpp 152 if (LIKELY(source != 0)) {
  /frameworks/base/media/libmedia/
AudioRecord.cpp 40 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
568 // sanity-check. user is most-likely passing an error code.
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 411 milliseconds

1 2