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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Dcmptree.py35 t2 = time.time() variable
36 dt = t2-t1
147 t2 = time.time()
149 dt = t2-t1
194 t2 = time.time()
197 dt = t2-t1
/device/linaro/bootloader/edk2/StdLib/LibC/Math/
H A De_log.c105 double hfsq,f,s,z,R,w,t1,t2,dk; local
144 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
146 R = t2+t1;
H A De_log2.c43 double hfsq,f,s,z,R,w,t1,t2,dk; local
77 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
79 R = t2+t1;
H A De_pow.c121 double y1,t1,t2,r,s,t,u,v,w; local
222 t2 = v-(t1-u);
270 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
273 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
276 p_l = (y-y1)*t1+y*t2;
/device/google/contexthub/lib/nanohub/
H A Daes.c217 uint32_t t0, t1, t2; local
231 t2 = *k++ ^
245 x2 = t2;
287 uint32_t t0, t1, t2; local
301 t2 = *k++ ^
315 x2 = t2;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
H A D_codecs_kr.c276 unsigned char c1, c2, t2; local
287 t2 = ((t1 & 1) ? 0x5e : 0) + (c2 - 0x21);
289 OUT2(t2 < 0x4e ? t2 + 0x31 : t2 + 0x43)
419 unsigned char t1, t2; local
423 t2 = (c2 < 0x91 ? c2 - 0x31 : c2 - 0x43);
424 t1 = t1 + (t2 < 0x5e ? 0 : 1) + 0x21;
425 t2 = (t2 <
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_pkg.py96 ("t2", None),
97 ("t2 __init__"+os.extsep+"py", "'doc for t2'"),
98 ("t2 sub", None),
99 ("t2 sub __init__"+os.extsep+"py", ""),
100 ("t2 sub subsub", None),
101 ("t2 sub subsub __init__"+os.extsep+"py", "spam = 1"),
105 import t2.sub namespace
106 import t2.sub.subsub namespace
107 self.assertEqual(t2
129 import t2.sub namespace
130 import t2.sub.subsub namespace
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
H A D_codecs_kr.c276 unsigned char c1, c2, t2; local
287 t2 = ((t1 & 1) ? 0x5e : 0) + (c2 - 0x21);
289 OUT2(t2 < 0x4e ? t2 + 0x31 : t2 + 0x43)
419 unsigned char t1, t2; local
423 t2 = (c2 < 0x91 ? c2 - 0x31 : c2 - 0x43);
424 t1 = t1 + (t2 < 0x5e ? 0 : 1) + 0x21;
425 t2 = (t2 <
[all...]
/device/google/contexthub/firmware/lib/libm/
H A Def_pow.c67 float y1,t1,t2,r,s,t,u,v,w; local
149 t2 = v-(t1-u);
200 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
207 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
210 p_l = (y-y1)*t1+y*t2;
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg_p.c330 {nfa_node *t1, *t2; local
331 t1 = new_nfa_node(); t2 = new_nfa_node();
334 /* MR23 */ if (zzaRet.r != NULL) (zzaRet.r)->trans[1]=t2;
336 (zzaArg(zztasp2,2 ).r)->trans[1]=t2; /* MR20 */
338 zzaRet.l=t1; zzaRet.r=t2;
412 { nfa_node *t1,*t2; local
414 t1 = new_nfa_node(); t2 = new_nfa_node();
416 t1->trans[1]=t2;
417 /* MR23 */ if (zzaRet.r != NULL) (zzaRet.r)->trans[1]=t2;
418 zzaRet.l=t1;zzaRet.r=t2;
[all...]
H A Doutput.c101 char t2[] = "unsigned int"; variable
103 char *typevar[DIF_SIZE] = { t0, t1, t2, t3};
108 char t2[] = "unsigned int"; variable
110 char *typevar[DIF_SIZE] = { t0, t1, t2, t3};
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dldebug.c549 const char *t2 = objtypename(p2); local
550 if (t1 == t2)
553 luaG_runerror(L, "attempt to compare %s with %s", t1, t2);
H A Dlvm.c260 int luaV_equalobj_ (lua_State *L, const TValue *t1, const TValue *t2) { argument
262 lua_assert(ttisequal(t1, t2));
265 case LUA_TNUMBER: return luai_numeq(nvalue(t1), nvalue(t2));
266 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */
267 case LUA_TLIGHTUSERDATA: return pvalue(t1) == pvalue(t2);
268 case LUA_TLCF: return fvalue(t1) == fvalue(t2);
269 case LUA_TSHRSTR: return eqshrstr(rawtsvalue(t1), rawtsvalue(t2));
270 case LUA_TLNGSTR: return luaS_eqlngstr(rawtsvalue(t1), rawtsvalue(t2));
272 if (uvalue(t1) == uvalue(t2)) return 1;
274 tm = get_equalTM(L, uvalue(t1)->metatable, uvalue(t2)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dgcmodule.c996 double t2 = get_time(); local
1005 if (t1 && t2) {
1006 PySys_WriteStderr(", %.4fs elapsed", t2-t1);
H A Dzipimport.c950 eq_mtime(time_t t1, time_t t2) argument
952 time_t d = t1 - t2;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dgcmodule.c942 double t2 = get_time(); local
951 if (t1 && t2) {
952 PySys_WriteStderr(", %.4fs elapsed", t2-t1);
H A Dzipimport.c922 eq_mtime(time_t t1, time_t t2) argument
924 time_t d = t1 - t2;
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DEfiCompress.c649 UINT8 c, *t1, *t2; local
711 t2 = &mText[mMatchPos + mMatchLen];
713 if (*t1 != *t2) {
719 t2++;
H A DTianoCompress.c671 UINT8 *t2; local
737 t2 = &mText[mMatchPos + mMatchLen];
739 if (*t1 != *t2) {
746 t2++;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
H A DEfiCompress.c652 UINT8 c, *t1, *t2; local
714 t2 = &mText[mMatchPos + mMatchLen];
716 if (*t1 != *t2) {
722 t2++;
H A DTianoCompress.c691 UINT8 *t2; local
757 t2 = &mText[mMatchPos + mMatchLen];
759 if (*t1 != *t2) {
766 t2++;
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c494 UINT8 *t2; local
560 t2 = &mText[mMatchPos + mMatchLen];
562 if (*t1 != *t2) {
569 t2++;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c2706 PyLongObject *t1, *t2, *t3; local
2799 /* 3. t2 <- al*bl, and copy into the low digits. */
2800 if ((t2 = k_mul(al, bl)) == NULL) {
2804 assert(Py_SIZE(t2) >= 0);
2805 assert(Py_SIZE(t2) <= 2*shift); /* no overlap with high digits */
2806 memcpy(ret->ob_digit, t2->ob_digit, Py_SIZE(t2) * sizeof(digit));
2809 i = 2*shift - Py_SIZE(t2); /* number of uninitialized digits */
2811 memset(ret->ob_digit + Py_SIZE(t2), 0, i * sizeof(digit));
2813 /* 4 & 5. Subtract ah*bh (t1) and al*bl (t2)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
H A Dlongobject.c2720 PyLongObject *t1, *t2, *t3; local
2813 /* 3. t2 <- al*bl, and copy into the low digits. */
2814 if ((t2 = k_mul(al, bl)) == NULL) {
2818 assert(Py_SIZE(t2) >= 0);
2819 assert(Py_SIZE(t2) <= 2*shift); /* no overlap with high digits */
2820 memcpy(ret->ob_digit, t2->ob_digit, Py_SIZE(t2) * sizeof(digit));
2823 i = 2*shift - Py_SIZE(t2); /* number of uninitialized digits */
2825 memset(ret->ob_digit + Py_SIZE(t2), 0, i * sizeof(digit));
2827 /* 4 & 5. Subtract ah*bh (t1) and al*bl (t2)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dlongobject.c2706 PyLongObject *t1, *t2, *t3; local
2799 /* 3. t2 <- al*bl, and copy into the low digits. */
2800 if ((t2 = k_mul(al, bl)) == NULL) {
2804 assert(Py_SIZE(t2) >= 0);
2805 assert(Py_SIZE(t2) <= 2*shift); /* no overlap with high digits */
2806 memcpy(ret->ob_digit, t2->ob_digit, Py_SIZE(t2) * sizeof(digit));
2809 i = 2*shift - Py_SIZE(t2); /* number of uninitialized digits */
2811 memset(ret->ob_digit + Py_SIZE(t2), 0, i * sizeof(digit));
2813 /* 4 & 5. Subtract ah*bh (t1) and al*bl (t2)
[all...]

Completed in 1089 milliseconds