/external/chromium/testing/gmock/include/gmock/ |
gmock-generated-function-mockers.h | 331 #define GMOCK_RESULT_(tn, F) tn ::testing::internal::Function<F>::Result 335 #define GMOCK_ARG_(tn, F, N) tn ::testing::internal::Function<F>::Argument##N 339 #define GMOCK_MATCHER_(tn, F, N) const ::testing::Matcher<GMOCK_ARG_(tn, F, N)>& 347 #define GMOCK_METHOD0_(tn, constness, ct, Method, F) \ 348 GMOCK_RESULT_(tn, F) ct Method() constness { \ 350 tn ::testing::internal::Function<F>::ArgumentTuple>::value == 0, \ 363 #define GMOCK_METHOD1_(tn, constness, ct, Method, F) [all...] |
/external/webkit/Tools/mangleme/ |
mangle.cgi.c | 69 int tn, tc; local 71 do tn = R(MAXTAGS); while (!tags[tn][0]); 81 printf("%s", tags[tn][0]); 90 do pn = R(MAXPARS-1) + 1; while (!tags[tn][pn]); 91 printf("%s", tags[tn][pn]);
|
remangle.cgi.c | 68 int tn, tc; local 70 do tn = R(MAXTAGS); while (!tags[tn][0]); 80 printf("%s", tags[tn][0]); 89 do pn = R(MAXPARS-1) + 1; while (!tags[tn][pn]); 90 printf("%s", tags[tn][pn]);
|
/external/webrtc/src/modules/audio_processing/aec/main/source/ |
resampler.c | 84 int tn, outsize, mm; local 103 tn = (int) tnew; 105 while (tn < size) { 108 interp = y[tn] + (tnew - tn) * (y[tn+1] - y[tn]); 121 tn = (int) tnew;
|
/external/valgrind/main/exp-ptrcheck/tests/ |
arith_include2.c | 7 { fprintf(stderr, "about to do %d [0]\n", __LINE__); tn = tp[ 0]; } \ 9 { fprintf(stderr, "about to do %d [-1]\n", __LINE__); tn = tp[-1]; } 18 long a, tn; variable
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
TypeData.java | 152 TypeName tn = (TypeName)list2.get(i); local 153 add(list, tn); 154 tn.equivalences = list; 191 TypeName tn = (TypeName)obj; local 192 return getExpected().equals(tn.getExpected()); 219 TypeName tn = (TypeName)td; local 220 if (update(cp, name, tn.expectedName)) 221 name = tn.expectedName; 229 TypeName tn = (TypeName)td; local 230 tn.expectedName = name [all...] |
/external/yaffs2/yaffs2/ |
yaffs_guts.c | 76 static int yaffs_DeleteWorker(yaffs_Object * in, yaffs_Tnode * tn, __u32 level, 683 yaffs_Tnode *tn = NULL; local 691 tn = dev->freeTnodes; 693 if (tn->internal[YAFFS_NTNODES_INTERNAL] != (void *)1) { 703 return tn; 708 yaffs_Tnode *tn = yaffs_GetTnodeRaw(dev); local 710 if(tn) 711 memset(tn, 0, (dev->tnodeWidth * YAFFS_NTNODES_LEVEL0)/8); 713 return tn; 717 static void yaffs_FreeTnode(yaffs_Device * dev, yaffs_Tnode * tn) 832 yaffs_Tnode *tn = fStruct->top; local 896 yaffs_Tnode *tn; local 1257 yaffs_Tnode *tn; local 1346 yaffs_Object *tn = NULL; local 2612 yaffs_Tnode *tn; local 2640 yaffs_Tnode *tn; local 2685 yaffs_Tnode *tn; local 2744 yaffs_Tnode *tn; local 3664 yaffs_Tnode *tn; local [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/ |
perf_rt.c | 321 double x = (dRate->tn ? (dRate->tx ? ((1e6 * dRate->tn) / dRate->tx) : 1e6) : 0.); 326 ID, dRate->modulesAndFlags, dRate->size, dRate->tn); 329 double s = dRate->txx ? (dRate->tx * (double) dRate->tx / dRate->txx / dRate->tn) : 1; 339 dRate->txx = dRate->tx = dRate->tn = 0; 409 me->dRate[i].txx = me->dRate[i].tx = me->dRate[i].tn = me->dRate[i].tn0 = 0; 429 (me->dRate[i].tn && me->debug & 4)) 535 me->dRate[i].txx = me->dRate[i].tx = me->dRate[i].tn = me->dRate[i].tn0 = 0; 558 (me->dRate[i].tn < me->granularity * steps)) 562 fprintf(me->fRt, "rtPERF: [%ld] IGNORED (steps=%d, tn0=%ld, tn=%ld)\n" [all...] |
/external/icu4c/tools/ctestfw/unicode/ |
ctest.h | 165 cleanUpTestTree(TestNode *tn);
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
perf_rt.h | 58 tn, tx, txx: temporal statistics (for grandularity) 59 tn0: tn in the last temporal statistics phase (since the last executing phase) 63 long n, tn, tn0, an; member in struct:PERF_RTdata_rate
|
/frameworks/base/core/java/android/widget/ |
Toast.java | 78 final TN mTN; 91 mTN = new TN(); 106 TN tn = mTN; local 107 tn.mNextView = mNextView; 110 service.enqueueToast(pkg, tn, mDuration); 301 private static class TN extends ITransientNotification.Stub { 330 TN() {
|
/external/opencv/cv/src/ |
cvhough.cpp | 211 int rn, tn; /* number of rho and theta discrete values */ local 255 tn = cvFloor( 2 * Pi * itheta ); 263 CV_CALL( sinTable = (float*)cvAlloc( 5 * tn * stn * sizeof( float ))); 265 for( index = 0; index < 5 * tn * stn; index++ ) 270 CV_CALL( caccum = (uchar*)cvAlloc( rn * tn * sizeof( caccum[0] ))); 271 memset( caccum, 0, rn * tn * sizeof( caccum[0] )); 320 i = cvFloor( rv ) * tn; 323 assert( i < rn * tn ); 337 for( ti = 0; ti < tn; ti++ ) 339 if( caccum[ri * tn + ti > threshold] [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
SynchronousQueue.java | 621 QNode tn = t.next; local 624 if (tn != null) { // lagging tail 625 advanceTail(t, tn); 734 QNode tn = t.next; 737 if (tn != null) { 738 advanceTail(t, tn); [all...] |
/hardware/ti/omap4xxx/camera/inc/ |
Encoder_libjpeg.h | 124 sp<Encoder_libjpeg> tn = NULL; local 136 // wait until tn jpeg thread exits.
|
/external/quake/quake/src/QW/client/ |
d_polyse.c | 494 int tm, tn; local 502 tn = endvertv - startvertv; 505 ((tn <= 16) && (tn >= -15))) 507 ptemp = &adivtab[((tm+15) << 5) + (tn+15)]; 510 erroradjustdown = tn; 515 dn = (double)tn;
|
/external/quake/quake/src/WinQuake/ |
d_polyse.cpp | 494 int tm, tn;
local 502 tn = endvertv - startvertv;
505 ((tn <= 16) && (tn >= -15)))
507 ptemp = &adivtab[((tm+15) << 5) + (tn+15)];
510 erroradjustdown = tn;
515 dn = (double)tn;
|
/external/icu4c/tools/ctestfw/ |
ctest.c | 184 cleanUpTestTree(TestNode *tn) 186 if(tn->child != NULL) { 187 cleanUpTestTree(tn->child); 189 if(tn->sibling != NULL) { 190 cleanUpTestTree(tn->sibling); 193 free(tn); [all...] |
/external/openssl/crypto/bn/ |
bn_mul.c | 547 /* n+tn is the word length 607 bn_mul_normal(&(r[n2]),&(a[n]),tn,&(b[n]),tn); 608 memset(&(r[n2+tn*2]),0,sizeof(BN_ULONG)*(n2-tn*2)); 637 else if (j > 0) /* eg, n == 16, i == 8 and tn == 11 */ 644 else /* (j < 0) eg, n == 16, i == 8 and tn == 5 */
|
/external/clang/lib/AST/ |
StmtDumper.cpp | 283 const char *tn = UD->isTypeName() ? "typename " : ""; local 284 OS << '"' << UD->getDeclKindName() << tn;
|
/external/icu4c/common/ |
locmap.c | 553 ILCID_POSIX_ELEMENT_ARRAY(0x0432, tn, tn_BW) 754 ILCID_POSIX_MAP(tn), /* tn Tswana 0x32 */ [all...] |
/external/oprofile/libpopt/ |
popt.c | 591 size_t tn = strlen(s) + 1; local 594 te = t = malloc(tn);; 614 tn += alen; 616 t = realloc(t, tn); [all...] |
/external/chromium/net/base/ |
effective_tld_names.cc | 364 {"com.tn", 0}, 366 {"net.tn", 0}, 400 {"gov.tn", 0}, [all...] |
/external/libvpx/mkvparser/ |
mkvparser.hpp | 337 const Track* GetTrackByNumber(unsigned long tn) const;
|
mkvparser.cpp | 4998 const long long tn = pBlock->GetTrackNumber(); local 5790 const long long tn = tn_; local [all...] |
/external/llvm/utils/TableGen/ |
ARMDecoderEmitter.cpp | 378 static void setTargetName(TARGET_NAME_t tn) { TargetName = tn; } [all...] |