OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Sub3
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/libwebp/dsp/
lossless.c
453
// gcc-4.9 on ARM generates incorrect code in Select() when
Sub3
() is inlined.
460
static LOCAL_INLINE int
Sub3
(int a, int b, int c) {
470
Sub3
((a >> 24) , (b >> 24) , (c >> 24) ) +
471
Sub3
((a >> 16) & 0xff, (b >> 16) & 0xff, (c >> 16) & 0xff) +
472
Sub3
((a >> 8) & 0xff, (b >> 8) & 0xff, (c >> 8) & 0xff) +
473
Sub3
((a ) & 0xff, (b ) & 0xff, (c ) & 0xff);
[
all
...]
/external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h
801
template <typename Sub1, typename Sub2, typename
Sub3
, typename Sub4,
803
struct TypeList<TypeList<Sub1, Sub2,
Sub3
, Sub4>, T2, T3,
805
typename TypeList<Sub2,
Sub3
, Sub4>::self,
[
all
...]
Completed in 817 milliseconds