/external/opencv/ml/src/ |
mlann_mlp.cpp | 182 int n1 = layer_sizes->data.i[i-1]; local 184 double val = 0, G = n2 > 2 ? 0.7*pow((double)n1,1./(n2-1)) : 1.; 191 for( k = 0; k <= n1; k++ ) 201 for( k = 0; k <= n1; k++ ) 203 w[n1*n2 + j] *= G*(-1+j*2./n2); 1017 int n1 = layer_sizes->data.i[i-1], n2 = layer_sizes->data.i[i]; local 1020 cvInitMatHeader( &_w, n1+1, n2, CV_64F, weights[i] ); 1021 cvInitMatHeader( &_dw, n1+1, n2, CV_64F, dw->data.db + (weights[i] - weights[0]) ); 1022 cvInitMatHeader( x1, n1+1, 1, CV_64F, x[i-1] ); 1023 x[i-1][n1] = 1. 1129 int n1, n2, si, j, k; local [all...] |
mlboost.cpp | 213 int n1 = node->get_num_valid(vi); local 215 assert( 0 <= split_point && split_point < n1-1 ); 226 for( ; i < n1; i++ ) 251 int n1 = node->get_num_valid(vi); local 260 for( i = n1; i < n; i++ ) 275 for( i = 0; i < n1 - 1; i++ ) 300 for( i = 0; i < n1 - 1; i++ ) 447 int n1 = node->get_num_valid(vi); local 453 for( i = n1; i < n; i++ ) 462 for( i = 0; i < n1 - 1; i++ 577 int n1 = node->get_num_valid(vi); local [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
quotearg.c | 681 /* FIXME: technically, the type of n1 should be `unsigned int', 686 size_t n1 = n0 + 1; local 689 if (xalloc_oversized (n1, sizeof *sv)) 692 slotvec = sv = xrealloc (preallocated ? NULL : sv, n1 * sizeof *sv); 695 memset (sv + nslots, 0, (n1 - nslots) * sizeof *sv); 696 nslots = n1;
|
/system/core/fs_mgr/ |
fs_mgr.c | 401 char *n1; local 405 n1 = strdup(in1); 408 remove_trailing_slashes(n1); 411 ret = !strcmp(n1, n2); 413 free(n1);
|
/external/chromium/base/third_party/nspr/ |
prtime.cc | 870 int n1, n2, n3; local [all...] |
/external/tremolo/Tremolo/ |
mdct.c | 468 void mdct_unroll_lap(int n0,int n1, 479 DATA_TYPE *l=in+(W&&lW ? n1>>1 : n0>>1); 480 DATA_TYPE *r=right+(lW ? n1>>2 : n0>>2); 482 LOOKUP_T *wR=(W && lW ? w1+(n1>>1) : w0+(n0>>1)); 485 int preLap=(lW && !W ? (n1>>2)-(n0>>2) : 0 ); 486 int halfLap=(lW && W ? (n1>>2) : (n0>>2) ); 487 int postLap=(!lW && W ? (n1>>2)-(n0>>2) : 0 );
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
treewizard.py | 567 n1 = self.adaptor.getChildCount(t1) 569 if n1 != n2: 572 for i in range(n1): 608 n1 = adaptor.getChildCount(t1) 610 if n1 != n2: 613 for i in range(n1):
|
/external/speex/libspeex/ |
lsp.c | 532 float *pw,*n1,*n2,*n3,*n4=NULL; local 562 n1 = pw+(i*4); 563 n2 = n1 + 1; 566 xout1 = xin1 - 2.f*x_freq[i2] * *n1 + *n2; 568 *n2 = *n1; 570 *n1 = xin1;
|
/external/chromium/chrome/browser/task_manager/ |
task_manager_browsertest.cc | 324 scoped_refptr<NotificationDelegate> del1(new MockNotificationDelegate("n1")); 325 Notification n1( 331 notifications->Add(n1, browser()->profile()); 335 notifications->CancelById(n1.notification_id());
|
/external/icu4c/i18n/ |
gregoimp.cpp | 109 int32_t n1 = ClockMath::floorDivide(doy, 365, doy); local 110 year = 400*n400 + 100*n100 + 4*n4 + n1; 111 if (n100 == 4 || n1 == 4) {
|
/external/clang/test/Sema/ |
struct-packed-align.c | 129 extern int n1[sizeof(struct nS) == 9 ? 1 : -1];
|
/external/sqlite/android/ |
sqlite3_android.cpp | 38 static int collate16(void *p, int n1, const void *v1, int n2, const void *v2) 41 UCollationResult result = ucol_strcoll(coll, (const UChar *) v1, n1, 53 static int collate8(void *p, int n1, const void *v1, int n2, const void *v2) 59 uiter_setUTF8(&i1, (const char *) v1, n1);
|
/external/v8/test/mjsunit/ |
object-toprimitive.js | 34 var n1 = Number(o1); variable 36 assertTrue(typeof n1 == "number");
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_model.h | 340 bool operator()(const BookmarkNode* n1, const BookmarkNode* n2) const { 341 return n1->GetURL() < n2->GetURL();
|
bookmark_utils.h | 144 // Returns true if |n1| was added more recently than |n2|. 145 bool MoreRecentlyAdded(const BookmarkNode* n1, const BookmarkNode* n2);
|
/external/dbus/dbus/ |
dbus-sysdeps-wince-glue.c | 68 DWORD n1; local 85 n1 = ((nbytes + sizeof(wchar_t) - 1) / sizeof (wchar_t)) + 1; 86 result_w = malloc (n1 * sizeof (wchar_t)); 99 result_w[n1 - 1] = 0; /* Make sure it is really a string. */ 141 DWORD n1, nbytes, type; local 178 n1 = nbytes + 1; 179 result = malloc (n1); 182 if (RegQueryValueExA (key_handle, name, 0, &type, result, &n1))
|
/external/valgrind/unittest/ |
posix_tests.cc | 545 StealthNotification n1; 667 StealthNotification n1, n2, n3, n4, n5; 675 n1.signal(); 683 n1.wait(); 698 n1.wait(); 1063 StealthNotification n1, n2; 1069 n1.signal(); 1079 n1.wait();
|
/external/icu4c/test/cintltst/ |
putiltst.c | 34 double n1=0.0, y1=0.0, expn1, expy1; local 40 y1 = uprv_modf(value1, &n1); 43 if(y1 != expy1 || n1 != expn1){ 45 expn1, n1, expy1, y1); 48 log_verbose("[float] x = %f n = %f y = %f\n", value1, n1, y1);
|
/external/qemu/block/ |
qcow2.c | 317 int n1; local 321 n1 = 0; 323 n1 = bs->total_sectors - sector_num; 324 memset(buf + n1 * 512, 0, 512 * (nb_sectors - n1)); 325 return n1; 387 int index_in_cluster, n1; local 429 n1 = qcow2_backing_read1(bs->backing_hd, acb->sector_num, 431 if (n1 > 0) { [all...] |
/external/chromium/testing/gtest/test/ |
gtest_output_test_.cc | 244 // waits for n1 | SCOPED_TRACE("Trace B"); 246 // | notifies n1 264 Notification n1; member in struct:CheckPoints 274 check_points->n1.Notify(); 292 check_points.n1.WaitForNotification();
|
/external/gtest/test/ |
gtest_output_test_.cc | 244 // waits for n1 | SCOPED_TRACE("Trace B"); 246 // | notifies n1 264 Notification n1; member in struct:CheckPoints 274 check_points->n1.Notify(); 292 check_points.n1.WaitForNotification();
|
/external/javassist/src/test/test/javassist/convert/ |
ArrayAccessReplaceTest.java | 409 Number n1, n2, n3, n4; local 420 n1 = ns[1]; 430 return n1;
|
/external/skia/tests/ |
PDFPrimitivesTest.cpp | 297 SkRefPtr<SkPDFName> n1 = new SkPDFName("n1"); local 298 n1->unref(); // SkRefPtr and new both took a reference. 299 dict->insert(n1.get(), int42.get()); 300 SimpleCheckObjectOutput(reporter, dict.get(), "<</n1 42\n>>"); 308 "<</n1 42\n/n2 0.5\n/n3 [1 0.5 0]\n>>");
|
/external/webkit/Tools/android/flex-2.5.4a/ |
misc.c | 637 void out_dec2( fmt, n1, n2 ) 639 int n1, n2; 641 printf( fmt, n1, n2 );
|
/frameworks/native/opengl/tests/hwc/ |
hwcCommit.cpp | 397 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) { 398 formats.push_back(hwcTestGraphicFormat[n1].desc); [all...] |