/external/bluetooth/hcidump/parser/ |
sdp.c | 451 int len, n1 = 0, n2 = 0; local 456 if (parse_de_hdr(frm, &n1) == SDP_DE_SEQ) { 458 while (len - (int) frm->len < n1 && (int) frm->len > 0) { 477 int len, n1 = 0, n2 = 0; local 482 if (parse_de_hdr(frm, &n1) == SDP_DE_SEQ) { 484 while (len - (int) frm->len < n1 && (int) frm->len > 0) { 519 int len, split, n1 = 0, n2 = 0; local 521 if (parse_de_hdr(frm, &n1) == SDP_DE_SEQ) { 523 while (len - (int) frm->len < n1 && (int) frm->len > 0) {
|
/external/stlport/src/c_locale_win32/ |
c_wlocale_win32.c | 198 const wchar_t* s1, size_t n1,
201 while (n1 > 0 || n2 > 0) {
202 DWORD size1 = trim_size_t_to_DWORD(n1);
207 n1 -= size1;
214 const wchar_t* s1, size_t n1,
217 result = _WLocale_strcmp_aux(lcol, s1, n1, s2, n2);
|
/external/v8/test/mjsunit/tools/ |
profile_view.js | 83 view.sort(function(n1, n2) { 84 return cmpStrs(n1.internalFuncName, n2.internalFuncName) || 85 (n1.selfTime - n2.selfTime);
|
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
c_wlocale_win32.c | 198 const wchar_t* s1, size_t n1,
201 while (n1 > 0 || n2 > 0) {
202 DWORD size1 = trim_size_t_to_DWORD(n1);
207 n1 -= size1;
214 const wchar_t* s1, size_t n1,
217 result = _WLocale_strcmp_aux(lcol, s1, n1, s2, n2);
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_poly.h | 302 double C[16],n0,n1,n2,n3,m; local 352 n1=db_sqr(C[4]) +db_sqr(C[5]) +db_sqr(C[6]) +db_sqr(C[7]); 358 if(n0>=n1 && n0>=n2 && n0>=n3) 363 else if(n1>=n2 && n1>=n3) 365 m=db_SafeReciprocal(sqrt(n1));
|
/bionic/libc/tools/zoneinfo/ |
generate | 33 latest_archive=`ls -r -v tzdata*.tar.gz | head -n1`
|
/external/genext2fs/ |
mkbootimg_ext2.sh | 94 num_blocks=`du -sk $TMPDIR | tail -n1 | awk '{print $1;}'`
|
/external/valgrind/main/callgrind/ |
events.c | 71 EventGroup* CLG_(register_event_group) (int id, Char* n1) 74 eg->name[0] = n1; 79 EventGroup* CLG_(register_event_group2)(int id, Char* n1, Char* n2) 82 eg->name[0] = n1; 88 EventGroup* CLG_(register_event_group3)(int id, Char* n1, Char* n2, Char* n3) 91 eg->name[0] = n1; 99 Char* n1, Char* n2, Char* n3, Char* n4) 102 eg->name[0] = n1;
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
InsnFormat.java | 441 * @param n1 {@code 0..15;} medium-low nibble 446 protected static short codeUnit(int n0, int n1, int n2, int n3) { 451 if ((n1 & 0xf) != n1) { 452 throw new IllegalArgumentException("n1 out of range 0..15"); 463 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));
|
/dalvik/dx/src/com/android/dx/dex/code/ |
InsnFormat.java | 541 * @param n1 {@code 0..15;} medium-low nibble 546 protected static short codeUnit(int n0, int n1, int n2, int n3) { 551 if ((n1 & 0xf) != n1) { 552 throw new IllegalArgumentException("n1 out of range 0..15"); 563 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/ |
SHA1PRNG_SecureRandomTest.java | 160 int n1 = 10; local 163 byte[][] bytes1 = new byte[10][n1]; 174 int i1 = k /n1; 175 int i2 = k %n1;
|
/frameworks/base/opengl/tests/hwc/ |
hwcColorEquiv.cpp | 435 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) { 436 testPrintE(" %s", hwcTestGraphicFormat[n1].desc);
|
/frameworks/base/tests/backup/ |
test_restore.sh | 69 restore_set=$(a shell bmgr list sets | head -n1 | awk '{print $1}')
|
/system/extras/tests/bionic/libc/ |
run-test.sh | 142 RET=`tail -n1 $ADB_CMD_LOG`
|
/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...] |
/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;
|
/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/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();
|