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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/c/
OP_CONST.cpp 3 u4 tmp; local
6 tmp = FETCH(1);
7 tmp |= (u4)FETCH(2) << 16;
8 ILOGV("|const v%d,#0x%08x", vdst, tmp);
9 SET_REGISTER(vdst, tmp);
OP_CONST_4.cpp 3 s4 tmp; local
6 tmp = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value
7 ILOGV("|const/4 v%d,#0x%02x", vdst, (s4)tmp);
8 SET_REGISTER(vdst, tmp);
OP_CONST_WIDE.cpp 3 u8 tmp; local
6 tmp = FETCH(1);
7 tmp |= (u8)FETCH(2) << 16;
8 tmp |= (u8)FETCH(3) << 32;
9 tmp |= (u8)FETCH(4) << 48;
10 ILOGV("|const-wide v%d,#0x%08llx", vdst, tmp);
11 SET_REGISTER_WIDE(vdst, tmp);
OP_CONST_WIDE_32.cpp 3 u4 tmp; local
6 tmp = FETCH(1);
7 tmp |= (u4)FETCH(2) << 16;
8 ILOGV("|const-wide/32 v%d,#0x%08x", vdst, tmp);
9 SET_REGISTER_WIDE(vdst, (s4) tmp);
OP_CONST_STRING_JUMBO.cpp 4 u4 tmp; local
7 tmp = FETCH(1);
8 tmp |= (u4)FETCH(2) << 16;
9 ILOGV("|const-string/jumbo v%d string@0x%08x", vdst, tmp);
10 strObj = dvmDexGetResolvedString(methodClassDex, tmp);
13 strObj = dvmResolveString(curMethod->clazz, tmp);
  /external/dropbear/libtommath/
bn_mp_shrink.c 21 mp_digit *tmp; local
23 if ((tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * a->used)) == NULL) {
26 a->dp = tmp;
bn_mp_grow.c 22 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;
bn_mp_reduce_2k_setup.c 22 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);
bn_mp_reduce_2k_setup_l.c 22 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);
bn_mp_zero.c 22 mp_digit *tmp; local
27 tmp = a->dp;
29 *tmp++ = 0;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_nal_unit.c 73 u32 tmp; local
82 tmp = h264bsdGetBits(pStrmData, 1);
85 if (tmp == END_OF_STREAM)
88 tmp = h264bsdGetBits(pStrmData, 2);
89 pNalUnit->nalRefIdc = tmp;
91 tmp = h264bsdGetBits(pStrmData, 5);
92 pNalUnit->nalUnitType = (nalUnitType_e)tmp;
95 if ( (tmp == 2) || (tmp == 3) || (tmp == 4)
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e.h 66 uint8_t tmp; local
76 tmp = SPSR;
77 tmp = SPDR;
  /external/clang/test/CodeGen/
uint128_t.c 10 __uint128_t tmp; local
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
16 return tmp;
vla-3.c 7 char __attribute__((aligned(16))) tmp[size+32]; local
10 adr(tmp);
  /external/e2fsprogs/lib/uuid/
pack.c 40 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 = uu->time_mid
    [all...]
unpack.c 41 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 = *ptr++
    [all...]
  /external/oprofile/libutil/tests/
file_tests.c 46 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/
delete-global-properties.js 30 var tmp; variable
31 assertFalse(delete tmp); // should be DONT_DELETE
32 assertTrue("tmp" in this);
  /external/webrtc/src/common_audio/signal_processing_library/main/source/
sqrt_of_one_minus_x_squared.c 25 WebRtc_Word16 tmp; local
29 tmp = xQ15[m];
30 sq = WEBRTC_SPL_MUL_16_16(tmp, tmp); // x^2 in Q30
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
qisf_ns.c 42 Word32 tmp; local
49 indice[0] = Sub_VQ(&isf_q[0], dico1_isf_noise, 2, SIZE_BK_NOISE1, &tmp);
50 indice[1] = Sub_VQ(&isf_q[2], dico2_isf_noise, 3, SIZE_BK_NOISE2, &tmp);
51 indice[2] = Sub_VQ(&isf_q[5], dico3_isf_noise, 3, SIZE_BK_NOISE3, &tmp);
52 indice[3] = Sub_VQ(&isf_q[8], dico4_isf_noise, 4, SIZE_BK_NOISE4, &tmp);
53 indice[4] = Sub_VQ(&isf_q[12], dico5_isf_noise, 4, SIZE_BK_NOISE5, &tmp);
  /bionic/libc/string/
memswap.c 37 char tmp = *p; local
39 *q = tmp;
  /external/clang/test/CodeGenCXX/
2007-05-03-VectorInit.cpp 10 float4 tmp = {a,a,a,a}; local
11 return tmp;
  /external/clang/test/Sema/
struct-cast.c 11 struct S tmp; variable in typeref:struct:S
14 tmp = (struct S)foo();
  /external/clang/test/SemaTemplate/
default-expr-arguments-2.cpp 15 // CHECK: bar<int> tmp =
17 bar<int> tmp; local
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_decrypt.c 29 unsigned char Z[MAXBLOCKSIZE], tmp[MAXBLOCKSIZE]; local
52 tmp[x] = ct[x] ^ Z[x];
54 if ((err = cipher_descriptor[ocb->cipher].ecb_decrypt(tmp, pt, &ocb->key)) != CRYPT_OK) {
69 zeromem(tmp, sizeof(tmp));

Completed in 2415 milliseconds

1 2 3 4 5 6 7 8 91011>>