HomeSort by relevance Sort by last modified time
    Searched refs:tn (Results 26 - 50 of 133) sorted by null

12 3 4 5 6

  /prebuilts/go/linux-x86/src/debug/macho/
file_test.go 136 tn := len(tt.segments)
138 if tn != fn {
139 t.Errorf("open %s: len(Loads) = %d, want %d", tt.file, fn, tn)
152 tn = len(tt.sections)
154 if tn != fn {
155 t.Errorf("open %s: len(Sections) = %d, want %d", tt.file, fn, tn)
  /frameworks/base/rs/java/android/renderscript/
ScriptGroup.java 576 Node tn = findNode(cl.mToK.mScript); local
577 if (tn.equals(original)) {
580 validateCycle(tn, original);
583 Node tn = findNode(cl.mToF.mScript); local
584 if (tn.equals(original)) {
587 validateCycle(tn, original);
610 Node tn = findNode(cl.mToK.mScript); local
611 validateDAGRecurse(tn, dagNumber);
614 Node tn = findNode(cl.mToF.mScript); local
615 validateDAGRecurse(tn, dagNumber)
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptGroup.java 641 Node tn = findNode(cl.mToK.mScript); local
642 if (tn.equals(original)) {
645 validateCycle(tn, original);
648 Node tn = findNode(cl.mToF.mScript); local
649 if (tn.equals(original)) {
652 validateCycle(tn, original);
675 Node tn = findNode(cl.mToK.mScript); local
676 validateDAGRecurse(tn, dagNumber);
679 Node tn = findNode(cl.mToF.mScript); local
680 validateDAGRecurse(tn, dagNumber)
    [all...]
  /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/ojluni/src/main/java/java/util/concurrent/
SynchronousQueue.java 677 QNode tn = t.next; local
680 if (tn != null) { // lagging tail
681 advanceTail(t, tn);
    [all...]
  /external/fmtlib/test/gmock/
gmock.h     [all...]
  /external/skia/src/gpu/
GrPathUtils.cpp 760 const SkScalar tn = d3; local
772 klmCoeffs[col + 3] = 3 * sn * sn * tn;
777 klmCoeffs[col + 3] = -3 * sn * tn * tn;
782 klmCoeffs[2] = tn;
783 klmCoeffs[5] = tn * tn * tn;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
telnetlib.py 9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
10 >>> tn.write('guido\r\n')
11 >>> print tn.read_all()
650 tn = Telnet()
651 tn.set_debuglevel(debuglevel)
652 tn.open(host, port, timeout=0.5)
653 tn.interact()
654 tn.close()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
telnetlib.py 9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
10 >>> tn.write('guido\r\n')
11 >>> print tn.read_all()
780 tn = Telnet()
781 tn.set_debuglevel(debuglevel)
782 tn.open(host, port, timeout=0.5)
783 tn.interact()
784 tn.close()
  /prebuilts/gdb/linux-x86/lib/python2.7/
telnetlib.py 9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
10 >>> tn.write('guido\r\n')
11 >>> print tn.read_all()
780 tn = Telnet()
781 tn.set_debuglevel(debuglevel)
782 tn.open(host, port, timeout=0.5)
783 tn.interact()
784 tn.close()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
10 >>> tn.write('guido\r\n')
11 >>> print tn.read_all()
780 tn = Telnet()
781 tn.set_debuglevel(debuglevel)
782 tn.open(host, port, timeout=0.5)
783 tn.interact()
784 tn.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
10 >>> tn.write('guido\r\n')
11 >>> print tn.read_all()
780 tn = Telnet()
781 tn.set_debuglevel(debuglevel)
782 tn.open(host, port, timeout=0.5)
783 tn.interact()
784 tn.close()
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 339 tn = typeexpr.type_node()
340 tn.size = int( element.nsProp( "size", None ), 0 )
341 tn.integer = not is_attr_true( element, "float" )
342 tn.unsigned = is_attr_true( element, "unsigned" )
343 tn.pointer = is_attr_true( element, "pointer" )
344 tn.name = "GL" + self.name
345 te.set_base_type_node( tn )
  /frameworks/base/core/java/android/widget/
Toast.java 93 final TN mTN;
114 mTN = new TN(context.getPackageName(), looper);
131 TN tn = mTN; local
132 tn.mNextView = mNextView;
135 service.enqueueToast(pkg, tn, mDuration);
345 private static class TN extends ITransientNotification.Stub {
370 TN(String packageName, @Nullable Looper looper) {
416 getService().cancelToast(mPackageName, TN.this);
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 517 for (TestName tn: TestName.values()) {
518 changeTest(tn);
520 String s = new String("" + tn.toString() + ", " + t);
  /external/icu/icu4c/source/tools/ctestfw/
ctest.c 189 cleanUpTestTree(TestNode *tn)
191 if(tn->child != NULL) {
192 cleanUpTestTree(tn->child);
194 if(tn->sibling != NULL) {
195 cleanUpTestTree(tn->sibling);
198 free(tn);
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
route_test.go 220 for i, tn := range a {
221 s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
route_test.go 220 for i, tn := range a {
221 s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
fset2.c 1530 TokNode *tn; local
2062 TokNode *tn; local
2154 TokNode *tn; local
    [all...]
scan.c 148 TokNode *tn; local
150 tn=(TokNode *)le->elem;
151 require (tn->label != 0,"mark_label_used... TokNode has no label");
152 tn->label_used_in_semantic_pred=1;
    [all...]
  /prebuilts/go/darwin-x86/src/debug/pe/
file_test.go 260 tn := len(tt.sections)
262 if tn != fn {
263 t.Errorf("open %s: len(Sections) = %d, want %d", tt.file, fn, tn)
  /prebuilts/go/darwin-x86/src/math/rand/
rand_test.go 215 tn = dn
232 testKn[i+1] = uint32((dn / tn) * m1)
233 tn = dn
  /prebuilts/go/linux-x86/src/debug/pe/
file_test.go 260 tn := len(tt.sections)
262 if tn != fn {
263 t.Errorf("open %s: len(Sections) = %d, want %d", tt.file, fn, tn)
  /prebuilts/go/linux-x86/src/math/rand/
rand_test.go 215 tn = dn
232 testKn[i+1] = uint32((dn / tn) * m1)
233 tn = dn
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 199 const char *tn = t.getName(); local
200 if(testName!=NULL && testMatch(tn)) return; // skipped.
229 tn,stn,st,me,iter);

Completed in 5819 milliseconds

12 3 4 5 6