/external/bzip2/ |
huffman.c | 72 Int32 nNodes, nHeap, n1, n2, i, j, k; local 102 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); 104 parent[n1] = parent[n2] = nNodes; 105 weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]);
|
/external/chromium_org/v8/test/mjsunit/ |
this-property-assignment.js | 40 var n2 = new Node(); 41 assertEquals(3, n2.a);
|
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/ |
p5.cpp | 4 alignas(1) alignas(2) int n2; // expected-error {{less than minimum alignment}} variable
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
p3-0x.cpp | 44 int n2 = f(0); member in namespace:std_example
|
/external/clang/test/Modules/ |
macros2.c | 75 int n2 = TOP_OTHER_REDEF2; // ok variable
|
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
splice_after_one.pass.cpp | 34 for (int n2 = f; n2 < f+1; ++n2, ++i) 35 assert(*i == t2[n2]);
|
splice_after_range.pass.cpp | 35 for (int n2 = f; n2 < l-1; ++n2, ++i) 36 assert(*i == t2[n2]);
|
/external/ltrace/testsuite/ltrace.main/ |
system_calls.exp | 99 set n2 [GetDefault $d2 $key 0] 100 set sum [expr $n1 - $n2]
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldAndroidPipedStreamTest.java | 273 int n2; field in class:OldAndroidPipedStreamTest.Fibonacci 280 n2 = 0; 284 int ret = n1 + n2; 285 n2 = n1;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
splice_after_one.pass.cpp | 34 for (int n2 = f; n2 < f+1; ++n2, ++i) 35 assert(*i == t2[n2]);
|
splice_after_range.pass.cpp | 35 for (int n2 = f; n2 < l-1; ++n2, ++i) 36 assert(*i == t2[n2]);
|
/pdk/apps/CameraITS/tests/scene1/ |
test_capture_result.py | 90 def is_close_float(n1, n2): 91 return abs(n1 - n2) < 0.05 93 def is_close_rational(n1, n2): 95 its.objects.rational_to_float(n2))
|
/external/opencv/cvaux/src/ |
cvhmmobs.cpp | 137 int n2 = dctSize.width, m2 = n2 / 2; local 249 if( n2 & 1 ) 259 work_t t1 = buf[n2 - 1 - j]; 289 if( n2 & 1 ) 332 int n2 = dctSize.width, m2 = n2 / 2; local 446 if( n2 & 1 ) 456 work_t t1 = buf[n2 - 1 - j]; 486 if( n2 & 1 [all...] |
/external/stlport/src/c_locale_dummy/ |
c_locale_dummy.c | 293 const char* s1, size_t n1, const char* s2, size_t n2) { 296 while (n1 > 0 || n2 > 0) { 298 size_t bufsize2 = n2 < 63 ? n2 : 63; 305 s2 += bufsize2; n2 -= bufsize2; 313 const wchar_t* s1, size_t n1, const wchar_t* s2, size_t n2) { 316 while (n1 > 0 || n2 > 0) { 318 size_t bufsize2 = n2 < 63 ? n2 : 63; 325 s2 += bufsize2; n2 -= bufsize2 [all...] |
/external/stlport/src/c_locale_glibc/ |
c_locale_glibc2.c | 364 const char *s2, size_t n2) { 367 while (n1 > 0 || n2 > 0) { 369 size_t bufsize2 = n2 < 63 ? n2 : 63; 376 s2 += bufsize2; n2 -= bufsize2; 384 const wchar_t *s2, size_t n2) { 387 while (n1 > 0 || n2 > 0) { 389 size_t bufsize2 = n2 < 63 ? n2 : 63; 396 s2 += bufsize2; n2 -= bufsize2 [all...] |
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/ |
c_locale_dummy.c | 272 const char* s1, size_t n1, const char* s2, size_t n2) { 275 while (n1 > 0 || n2 > 0) { 277 size_t bufsize2 = n2 < 63 ? n2 : 63; 284 s2 += bufsize2; n2 -= bufsize2; 292 const wchar_t* s1, size_t n1, const wchar_t* s2, size_t n2) { 295 while (n1 > 0 || n2 > 0) { 297 size_t bufsize2 = n2 < 63 ? n2 : 63; 304 s2 += bufsize2; n2 -= bufsize2 [all...] |
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/ |
c_locale_glibc2.c | 364 const char *s2, size_t n2) { 367 while (n1 > 0 || n2 > 0) { 369 size_t bufsize2 = n2 < 63 ? n2 : 63; 376 s2 += bufsize2; n2 -= bufsize2; 384 const wchar_t *s2, size_t n2) { 387 while (n1 > 0 || n2 > 0) { 389 size_t bufsize2 = n2 < 63 ? n2 : 63; 396 s2 += bufsize2; n2 -= bufsize2 [all...] |
/external/openssl/crypto/lhash/ |
lhash.c | 312 LHASH_NODE **n,**n1,**n2,*np; local 320 n2= &(lh->b[p+(int)lh->pmax]); 321 *n2=NULL; /* 27/07/92 - eay - undefined pointer bug */ 335 np->next= *n2; 336 *n2=np;
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
vfprintf.c | 277 int n, n2; /* handy integers (short term usage) */ local 376 n2 = (ep) - (p); \ 377 if (n2 > (len)) \ 378 n2 = (len); \ 379 if (n2 > 0) \ 380 PRINT((p), n2); \ 381 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \ 430 n2 = 0; \ 433 APPEND_DIGIT(n2, *cp); 1140 int n, n2; \/* handy integer (short term usage) *\/ local [all...] |
vfwprintf.c | 283 int n, n2, n3; /* handy integers (short term usage) */ local 352 * PAD uses `n' and 'n3', and PRINTANDPAD uses 'n', 'n2', and 'n3'. 370 n2 = (ep) - (p); \ 371 if (n2 > (len)) \ 372 n2 = (len); \ 373 if (n2 > 0) \ 374 PRINT((p), n2); \ 375 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \ 418 n2 = 0; 1124 int n, n2; \/* handy integer (short term usage) *\/ local [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_deadlock_detector_test.cc | 73 // Cycle: n1->n2->n1 78 uptr n2 = d.newNode(2); local 80 EXPECT_FALSE(d.onLock(&dtls, n2)); 81 d.onUnlock(&dtls, n2); 84 EXPECT_FALSE(d.onLock(&dtls, n2)); 90 EXPECT_EQ(path[1], n2); 92 EXPECT_EQ(d.getData(n2), 2U); 94 d.onUnlock(&dtls, n2); 97 // Cycle: n1->n2->n3->n1 102 uptr n2 = d.newNode(2) local [all...] |
/external/qemu/slirp/ |
tcp_subr.c | 612 u_int n1, n2, n3, n4, n5, n6; local 641 if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) { 643 HTONS(n2); 644 /* n2 is the one on our host */ 647 tmpso->so_lport == n2 && 652 n2 = ntohs(addr.sin_port); 659 "%d,%d\r\n", n1, n2); 970 &n1, &n2, &n3, &n4, &n5, &n6, buff); 974 laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4)); 988 n2 = ((laddr >> 16) & 0xff) [all...] |
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_utilities_poly.h | 302 double C[16],n0,n1,n2,n3,m; local 353 n2=db_sqr(C[8]) +db_sqr(C[9]) +db_sqr(C[10])+db_sqr(C[11]); 358 if(n0>=n1 && n0>=n2 && n0>=n3) 363 else if(n1>=n2 && n1>=n3) 368 else if(n2>=n3) 370 m=db_SafeReciprocal(sqrt(n2));
|
/external/chromium_org/v8/test/mjsunit/tools/ |
profile_view.js | 84 view.sort(function(n1, n2) { 85 return cmpStrs(n1.internalFuncName, n2.internalFuncName) || 86 (n1.selfTime - n2.selfTime);
|
/external/stlport/src/c_locale_win32/ |
c_wlocale_win32.c | 199 const wchar_t* s2, size_t n2) {
201 while (n1 > 0 || n2 > 0) {
203 DWORD size2 = trim_size_t_to_DWORD(n2);
208 n2 -= size2;
215 const wchar_t* s2, size_t n2) {
217 result = _WLocale_strcmp_aux(lcol, s1, n1, s2, n2);
|