HomeSort by relevance Sort by last modified time
    Searched defs:h3 (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/clang/test/OpenMP/
simd_metadata.c 120 void h3(float *c, float *a, float *b, int size) function
122 // CHECK-LABEL: define void @h3
144 // Metadata for h3:
  /external/clang/test/PCH/Inputs/
chain-macro-override1.h 8 #define h3() macro
9 #undef h3 macro
  /external/clang/test/Parser/
attributes.c 40 void (*h3)(void (*f3)(__attribute__(()) x)); // expected-warning {{defaults to 'int'}} variable
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 30 int h3 = 0; local
31 h3 = in/h3;
32 h3++;
  /external/clang/test/Sema/
constant-builtins.c 20 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
warn-missing-prototypes.c 18 int h3();
24 int h3(int x);
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}} function
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
CatmullRom.java 34 float h3 = t * t * t - 2 * t * t + t; local
37 return b * h1 + c * h2 + t1 * h3 + t2 * h4;
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 62 PInt3Func h3(PInt3Func x, PInt3Func y, int* z) { return 0; } function
63 // CHECK: "\01?h3@@YAP6APAHPAH0@ZP6APAH00@Z10@Z"
static-init.cpp 44 void h3() { function
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 87 int h3 = g1 - (g3 << 1); local
91 pDst[i+12] = (OMX_S16) h3;
armVCM4P10_TransformResidual4x4.c 88 int h3 = g0 - g3; local
92 pDst[i+12] = (OMX_S16)((h3+32)>>6);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 38 void h3() { consume((A){}); } function in namespace:PointerToArrayDecay
  /external/jemalloc/include/jemalloc/internal/
hash.h 168 uint32_t h3 = seed; local
194 h2 = hash_rotl_32(h2, 17); h2 += h3;
197 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
199 h3 = hash_rotl_32(h3, 15); h3 += h4;
200 h3 = h3*5 + 0x96cd1c35;
227 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
244 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
    [all...]
  /external/v8/test/mjsunit/
global-infinity-strict.js 88 function h3() { return (1/0) == (1/0); } function
89 test(true, h3);
global-infinity.js 79 function h3() { return (1/0) == (1/0); } function
80 test(true, h3);
global-nan-strict.js 88 function h3() { return (0/0) == (0/0); } function
89 test(false, h3);
global-nan.js 79 function h3() { return (0/0) == (0/0); } function
80 test(false, h3);
global-undefined-strict.js 86 function h3() { return void 0 == void 0; } function
87 test(true, h3);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 143 FileHandler h3 = new FileHandler("%t/log/string"); local
147 h3.publish(r);
151 h3.close();
  /external/boringssl/src/crypto/poly1305/
poly1305.c 65 uint32_t h0, h1, h2, h3, h4; member in struct:poly1305_state_st
99 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
104 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) +
107 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) +
110 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) +
113 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) +
116 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) +
128 state->h3 = (uint32_t)t[3] & 0x3ffffff;
162 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
207 state->h3 = 0
    [all...]
  /external/skia/src/utils/
SkPatchUtils.cpp 54 Sk2s h3 = h2 * h; local
55 Sk2s fwDiff3 = Sk2s(6) * fCoefs.fA * h3;
58 fFwDiff[1] = to_point(fCoefs.fA * h3 + fCoefs.fB * h2 + fCoefs.fC * h);

Completed in 686 milliseconds

1 2 3