HomeSort by relevance Sort by last modified time
    Searched refs:Sub3 (Results 1 - 3 of 3) sorted by null

  /ndk/tests/device/b16355858/jni/
sample_lib.c 3 static /*__attribute__ ((noinline))*/ int Sub3(int a, int b, int c) {
11 Sub3((a >> 24) & 0xff, (b >> 24) & 0xff, (c >> 24) & 0xff) +
12 Sub3((a >> 16) & 0xff, (b >> 16) & 0xff, (c >> 16) & 0xff) +
13 Sub3((a >> 8) & 0xff, (b >> 8) & 0xff, (c >> 8) & 0xff) +
14 Sub3((a >> 0) & 0xff, (b >> 0) & 0xff, (c >> 0) & 0xff);
  /external/webp/src/dsp/
lossless.c 89 // gcc-4.9 on ARM generates incorrect code in Select() when Sub3() is inlined.
96 static LOCAL_INLINE int Sub3(int a, int b, int c) {
106 Sub3((a >> 24) , (b >> 24) , (c >> 24) ) +
107 Sub3((a >> 16) & 0xff, (b >> 16) & 0xff, (c >> 16) & 0xff) +
108 Sub3((a >> 8) & 0xff, (b >> 8) & 0xff, (c >> 8) & 0xff) +
109 Sub3((a ) & 0xff, (b ) & 0xff, (c ) & 0xff);
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.c 385 static WEBP_INLINE int Sub3(int a, int b, int c) {
393 Sub3((a >> 24) , (b >> 24) , (c >> 24) ) +
394 Sub3((a >> 16) & 0xff, (b >> 16) & 0xff, (c >> 16) & 0xff) +
395 Sub3((a >> 8) & 0xff, (b >> 8) & 0xff, (c >> 8) & 0xff) +
396 Sub3((a ) & 0xff, (b ) & 0xff, (c ) & 0xff);
    [all...]

Completed in 54 milliseconds