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

1 2 3 4 5 6 7 8 91011>>

  /external/opencore/codecs_v2/audio/mp3/dec/src/
pvmp3_decode_huff_cw.cpp 152 uint32 tmp; local
155 tmp = getUpTo9bits(pMainData, 3); /* hufftable1 */
157 cw = *(huffTable_1 + tmp);
169 uint32 tmp; local
172 tmp = getUpTo9bits(pMainData, 6); /* huffTable_2,3 */
174 if (tmp >> 3)
176 tmp = (tmp >> 3) - 1;
180 tmp = tmp + 7
195 uint32 tmp; local
221 uint32 tmp; local
250 uint32 tmp; local
279 uint32 tmp; local
312 uint32 tmp; local
345 uint32 tmp; local
378 uint32 tmp; local
423 uint32 tmp; local
463 uint32 tmp; local
504 uint32 tmp; local
569 uint32 tmp; local
614 uint32 tmp; local
682 uint32 tmp; local
734 uint32 tmp = getUpTo9bits(pMainData, 6); \/* huffTable_32 *\/ local
754 uint16 tmp = getUpTo9bits(pMainData, 4); \/* huffTable_33 *\/ local
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_huff_cw.cpp 152 uint32 tmp; local
155 tmp = getUpTo9bits(pMainData, 3); /* hufftable1 */
157 cw = *(huffTable_1 + tmp);
169 uint32 tmp; local
172 tmp = getUpTo9bits(pMainData, 6); /* huffTable_2,3 */
174 if (tmp >> 3)
176 tmp = (tmp >> 3) - 1;
180 tmp = tmp + 7
195 uint32 tmp; local
221 uint32 tmp; local
250 uint32 tmp; local
279 uint32 tmp; local
312 uint32 tmp; local
345 uint32 tmp; local
378 uint32 tmp; local
423 uint32 tmp; local
463 uint32 tmp; local
504 uint32 tmp; local
569 uint32 tmp; local
614 uint32 tmp; local
682 uint32 tmp; local
734 uint32 tmp = getUpTo9bits(pMainData, 6); \/* huffTable_32 *\/ local
754 uint16 tmp = getUpTo9bits(pMainData, 4); \/* huffTable_33 *\/ local
    [all...]
  /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...]
  /dalvik/vm/mterp/c/
OP_CONST.c 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_WIDE.c 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_4.c 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_32.c 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.c 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/opencore/codecs_v2/video/avc_h264/enc/src/
sad_halfpel_inline.h 29 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
31 tmp = (tmp2 >> 1) - tmp;
32 if (tmp > 0) sad += tmp;
33 else sad -= tmp;
38 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
40 tmp = (tmp >> 2) - tmp2;
41 if (tmp > 0) sad += tmp
53 rsbs tmp, tmp, tmp2, asr #1 ; local
54 rsbmi tmp, tmp, #0 ; local
55 add sad, sad, tmp ; local
65 rsbs tmp, tmp2, tmp, asr #2 ; local
66 rsbmi tmp, tmp, #0 ; local
67 add sad, sad, tmp ; local
    [all...]
  /external/stlport/test/unit/
valarray_test.cpp 37 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 = cos(darray)
63 valarray<float> tmp; local
90 valarray<long double> tmp; local
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
sad_halfpel_inline.h 34 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
36 tmp = (tmp2 >> 1) - tmp;
37 if (tmp > 0) sad += tmp;
38 else sad -= tmp;
43 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
45 tmp = (tmp >> 2) - tmp2;
46 if (tmp > 0) sad += tmp
58 rsbs tmp, tmp, tmp2, asr #1 ; local
59 rsbmi tmp, tmp, #0 ; local
60 add sad, sad, tmp ; local
70 rsbs tmp, tmp2, tmp, asr #2 ; local
71 rsbmi tmp, tmp, #0 ; local
72 add sad, sad, tmp ; local
    [all...]
  /external/e2fsprogs/lib/e2p/
uuid.c 34 __u32 tmp; local
36 tmp = *ptr++;
37 tmp = (tmp << 8) | *ptr++;
38 tmp = (tmp << 8) | *ptr++;
39 tmp = (tmp << 8) | *ptr++;
40 uu->time_low = tmp;
42 tmp = *ptr++
    [all...]
  /external/dropbear/libtommath/
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);
  /external/openssl/crypto/x509v3/
tabtest.c 72 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/opencore/oscl/oscl/osclbase/src/
oscl_linked_list.cpp 31 OsclAny* tmp; local
34 tmp = pOpaqueType->get_next(head);
38 head = tmp;
86 OsclAny *tmp; local
89 for (tmp = head, ii = 0; tmp ; ++ii)
90 tmp = pOpaqueType->get_next(tmp);
163 OsclAny *tmp; local
171 for (tmp = head, ii = 0; ii < index; ++ii, tmp = pOpaqueType->get_next(tmp)
186 OsclAny *tmp; local
228 OsclAny *tmp; local
254 OsclAny *tmp; local
303 OsclAny *tmp; local
345 OsclAny *tmp; local
    [all...]
  /external/e2fsprogs/contrib/
dconf 12 AWKFILE=/tmp/${SELF}.awk
13 TEMPFILE=/tmp/${SELF}.tmp
  /external/opencore/fileformats/mp4/parser/src/
boxrecord.cpp 36 uint16 tmp = 0; local
38 if (!AtomUtils::read16(fp, tmp))
46 _top = (int16)tmp;
50 if (!AtomUtils::read16(fp, tmp))
58 _left = (int16)tmp;
61 if (!AtomUtils::read16(fp, tmp))
69 _bottom = (int16)tmp;
72 if (!AtomUtils::read16(fp, tmp))
80 _right = (int16)tmp;
89 uint16 tmp = 0 local
    [all...]
  /external/tinyxml/
tinystr.cpp 45 TiXmlString tmp; local
46 tmp.init(length(), cap);
47 memcpy(tmp.start(), data(), length());
48 swap(tmp);
58 TiXmlString tmp; local
59 tmp.init(len);
60 memcpy(tmp.start(), str, len);
61 swap(tmp);
87 TiXmlString tmp; local
88 tmp.reserve(a.length() + b.length())
96 TiXmlString tmp; local
106 TiXmlString tmp; local
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
median5.cpp 121 int16 tmp; local
133 tmp = x1;
135 x2 = tmp;
139 tmp = x1;
141 x3 = tmp;
145 tmp = x1;
147 x4 = tmp;
155 tmp = x2;
157 x3 = tmp;
161 tmp = x2
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
median5.cpp 121 int16 tmp; local
133 tmp = x1;
135 x2 = tmp;
139 tmp = x1;
141 x3 = tmp;
145 tmp = x1;
147 x4 = tmp;
155 tmp = x2;
157 x3 = tmp;
161 tmp = x2
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/common/src/
deblock.cpp 295 int indexA, indexB, tmp; local
384 /* Save Alpha, Beta and clipTable for future use, with the obselete variables filterLeftMbEdgeFlag, mbNum amd tmp */
387 tmp = (int)clipTable;
483 /* Recover Alpha, Beta and clipTable for edge!=0 with the variables filterLeftMbEdgeFlag, mbNum and tmp */
487 clipTable = (int *)tmp;
530 int tmp; local
576 tmp = *ptrQ++ - *ptrP++;
577 if (tmp < 0) tmp = -tmp;
733 int idx, tmp; local
908 int idx, tmp; local
1087 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1276 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1494 int L1, L0, R0, R1, tmp, tmp1; local
1584 int L1, L0, R0, R1, tmp, tmp1; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 297 int indexA, indexB, tmp; local
386 /* Save Alpha, Beta and clipTable for future use, with the obselete variables filterLeftMbEdgeFlag, mbNum amd tmp */
389 tmp = (int)clipTable;
485 /* Recover Alpha, Beta and clipTable for edge!=0 with the variables filterLeftMbEdgeFlag, mbNum and tmp */
489 clipTable = (int *)tmp;
532 int tmp; local
578 tmp = *ptrQ++ - *ptrP++;
579 if (tmp < 0) tmp = -tmp;
735 int idx, tmp; local
910 int idx, tmp; local
1089 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1278 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1496 int L1, L0, R0, R1, tmp, tmp1; local
1586 int L1, L0, R0, R1, tmp, tmp1; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/
BigIntegers.java 23 byte[] tmp = new byte[bytes.length - 1];
25 System.arraycopy(bytes, 1, tmp, 0, tmp.length);
27 return tmp;

Completed in 1198 milliseconds

1 2 3 4 5 6 7 8 91011>>