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

1 2

  /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/
aec_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/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...]
  /frameworks/native/opengl/tests/EGLTest/
egl_cache_test.cpp 83 char* tn = tempnam("/sdcard", "EGL_test-cache-"); local
84 mFilename = tn;
85 free(tn);
  /ndk/sources/host-tools/make-3.81/tests/
run_make_tests.pl 163 $tn = $pure_testname . ($num_of_logfiles ? ".$num_of_logfiles" : "");
164 print("Renaming purify log file to $tn\n") if $debug;
165 rename($pure_log, "$tn")
166 || die "Can't rename $log to $tn: $!\n";
  /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...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptGroup.java 184 Node tn = findNode(cl.mToK.mScript); local
185 if (tn.equals(original)) {
188 validateCycle(tn, original);
191 Node tn = findNode(cl.mToF.mScript); local
192 if (tn.equals(original)) {
195 validateCycle(tn, original);
218 Node tn = findNode(cl.mToK.mScript); local
219 validateDAGRecurse(tn, dagNumber);
222 Node tn = findNode(cl.mToF.mScript); local
223 validateDAGRecurse(tn, dagNumber)
    [all...]
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
ScriptGroup.java 179 Node tn = findNode(cl.mToK.mScript); local
180 if (tn.mSeen) {
183 validateRecurse(tn, depth + 1);
186 Node tn = findNode(cl.mToF.mScript); local
187 if (tn.mSeen) {
190 validateRecurse(tn, depth + 1);
  /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
  /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 648 QNode tn = t.next; local
651 if (tn != null) { // lagging tail
652 advanceTail(t, tn);
761 QNode tn = t.next;
764 if (tn != null) {
765 advanceTail(t, tn);
    [all...]
  /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);
306 private static class TN extends ITransientNotification.Stub {
337 TN() {
  /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;
  /hardware/ti/omap4xxx/camera/inc/
Encoder_libjpeg.h 148 sp<Encoder_libjpeg> tn = NULL; local
163 // wait until tn jpeg thread exits.
  /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/clang/lib/AST/
StmtDumper.cpp 289 const char *tn = UD->isTypeName() ? "typename " : ""; local
290 OS << '"' << UD->getDeclKindName() << tn;
  /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/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.cpp 4887 const long long tn = pBlock->GetTrackNumber(); local
    [all...]

Completed in 1021 milliseconds

1 2