Searched defs:tmp (Results 1 - 25 of 1328) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Duint128_t.c10 __uint128_t tmp; local
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
16 return tmp;
H A Dvla-3.c7 char __attribute__((aligned(16))) tmp[size+32]; local
10 adr(tmp);
H A D2007-08-01-LoadStoreAlign.c14 int tmp = t.b; local
15 u.b = tmp;
16 return tmp;
/external/dropbear/libtommath/
H A Dbn_mp_shrink.c21 mp_digit *tmp; local
23 if ((tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * a->used)) == NULL) {
26 a->dp = tmp;
H A Dbn_mp_zero.c22 mp_digit *tmp; local
27 tmp = a->dp;
29 *tmp++ = 0;
H A Dbn_mp_grow.c22 mp_digit *tmp; local
35 tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * size);
36 if (tmp == NULL) {
42 a->dp = tmp;
H A Dbn_mp_reduce_2k_setup_l.c22 mp_int tmp; local
24 if ((res = mp_init(&tmp)) != MP_OKAY) {
28 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) {
32 if ((res = s_mp_sub(&tmp, a, d)) != MP_OKAY) {
37 mp_clear(&tmp);
H A Dbn_mp_reduce_2k_setup.c22 mp_int tmp; local
24 if ((res = mp_init(&tmp)) != MP_OKAY) {
29 if ((res = mp_2expt(&tmp, p)) != MP_OKAY) {
30 mp_clear(&tmp);
34 if ((res = s_mp_sub(&tmp, a, &tmp)) != MP_OKAY) {
35 mp_clear(&tmp);
39 *d = tmp.dp[0];
40 mp_clear(&tmp);
/external/llvm/unittests/Support/
H A Dformatted_raw_ostream_test.cpp24 char tmp[100] = ""; local
27 C.write(tmp, 100);
/external/oprofile/libutil/tests/
H A Dfile_tests.c46 char tmp[PATH_MAX]; local
55 if (!realpath(tests[i][0], tmp)) {
60 if (strcmp(tmp, tests[i][1])) {
62 tmp, tests[i][1], tests[i][0]);
/external/v8/test/mjsunit/
H A Ddelete-global-properties.js30 var tmp; variable
31 assertFalse(delete tmp); // should be DONT_DELETE
32 assertTrue("tmp" in this);
/external/clang/test/Sema/
H A Dstruct-cast.c12 struct S tmp; variable in typeref:struct:S
15 tmp = (struct S)foo();
/external/clang/test/SemaTemplate/
H A Ddefault-expr-arguments-2.cpp15 // CHECK: VarDecl{{.*}}tmp 'bar<int>'
17 bar<int> tmp; local
/external/e2fsprogs/lib/uuid/
H A Dpack.c40 uint32_t tmp; local
43 tmp = uu->time_low;
44 out[3] = (unsigned char) tmp;
45 tmp >>= 8;
46 out[2] = (unsigned char) tmp;
47 tmp >>= 8;
48 out[1] = (unsigned char) tmp;
49 tmp >>= 8;
50 out[0] = (unsigned char) tmp;
52 tmp
[all...]
H A Dunpack.c41 uint32_t tmp; local
43 tmp = *ptr++;
44 tmp = (tmp << 8) | *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 tmp = (tmp << 8) | *ptr++;
47 uu->time_low = tmp;
49 tmp
[all...]
/external/openssl/crypto/x509v3/
H A Dtabtest.c72 X509V3_EXT_METHOD **tmp; local
76 tmp = standard_exts;
77 for(i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++) {
78 if((*tmp)->ext_nid < prev) bad = 1;
79 prev = (*tmp)->ext_nid;
83 tmp = standard_exts;
85 for(i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++)
86 printf("%d : %s\n", (*tmp)->ext_nid, OBJ_nid2sn((*tmp)->ext_nid));
/external/srec/srec/include/
H A Dsizes.h36 FOUR_BYTE_PTR(char*, ptr, dummy) tmp; member in struct:__anon13512
/external/bison/lib/
H A Dpipe2.c45 int tmp[2]; local
46 tmp[0] = fd[0];
47 tmp[1] = fd[1];
81 fd[0] = tmp[0];
82 fd[1] = tmp[1];
162 fd[0] = tmp[0];
163 fd[1] = tmp[1];
/external/clang/test/CodeGenCXX/
H A D2007-05-03-VectorInit.cpp10 float4 tmp = {a,a,a,a}; local
11 return tmp;
/external/dropbear/libtomcrypt/src/pk/dsa/
H A Ddsa_verify_key.c28 void *tmp, *tmp2; local
56 if ((err = mp_init_multi(&tmp, &tmp2, NULL)) != CRYPT_OK) { return err; }
57 if ((err = mp_sub_d(key->p, 1, tmp)) != CRYPT_OK) { goto error; }
58 if (mp_cmp(tmp, key->g) == LTC_MP_EQ || mp_cmp(key->g, key->p) != LTC_MP_LT) {
64 if (!(mp_cmp_d(key->y, 1) == LTC_MP_GT && mp_cmp(key->y, tmp) == LTC_MP_LT)) {
70 if ((err = mp_div(tmp, key->q, tmp, tmp2)) != CRYPT_OK) { goto error; }
76 if ((err = mp_exptmod(key->g, key->q, key->p, tmp)) != CRYPT_OK) { goto error; }
77 if (mp_cmp_d(tmp, 1) != LTC_MP_EQ) {
83 if ((err = mp_exptmod(key->y, key->q, key->p, tmp)) !
[all...]
/external/dropbear/libtomcrypt/testprof/
H A Dbase64_test.c5 unsigned char in[64], out[256], tmp[64]; local
12 l2 = sizeof(tmp);
13 DO(base64_decode(out, l1, tmp, &l2));
14 if (l2 != x || memcmp(tmp, in, x)) {
/external/llvm/lib/Support/
H A DManagedStatic.cpp28 void* tmp = Creator ? Creator() : 0; local
37 Ptr = tmp;
/external/skia/src/images/
H A DSkBitmapFactory.cpp27 SkBitmap tmp; local
35 if (decoder->decode(&stream, &tmp, mode)) {
36 tmp.swap(*dst);
/external/stlport/test/unit/
H A Dvalarray_test.cpp37 valarray<double> tmp; local
38 tmp = abs(darray);
39 tmp = acos(darray);
40 tmp = asin(darray);
41 tmp = atan(darray);
42 tmp = atan2(darray, tmp);
43 tmp = atan2(1.0, darray);
44 tmp = atan2(darray, 1.0);
45 tmp
63 valarray<float> tmp; local
90 valarray<long double> tmp; local
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dsqrt_of_one_minus_x_squared.c25 WebRtc_Word16 tmp; local
29 tmp = xQ15[m];
30 sq = WEBRTC_SPL_MUL_16_16(tmp, tmp); // x^2 in Q30

Completed in 7643 milliseconds

1234567891011>>