HomeSort by relevance Sort by last modified time
    Searched refs:n1 (Results 101 - 125 of 365) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 107 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
108 if( n1!=n2 ) return 1;
109 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
123 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
124 if( n1!=n2 ) return 1;
125 return memcmp(pKey1,pKey2,n1);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.c 313 dwarf2_loc *n1, *n2; local
316 n1 = STAILQ_FIRST(&dsd->locs);
317 while (n1) {
318 n2 = STAILQ_NEXT(n1, link);
319 yasm_xfree(n1);
320 n1 = n2;
  /external/chromium_org/ui/message_center/
notification_list.h 34 bool operator()(Notification* n1, Notification* n2);
38 bool operator()(Notification* n1, Notification* n2);
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 60 N n1; local
61 n1.PR();
  /external/libvpx/libvpx/build/make/
version.sh 36 changelog_version=`head -n1 "${p}/CHANGELOG" | awk '{print $2}'`
  /frameworks/native/opengl/tests/hwc/
hwcRects.cpp 266 for (unsigned int n1 = 0; n1 < argNext.length(); n1++) {
267 switch(argNext[n1]) {
553 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) {
554 testPrintE(" %s", hwcTestGraphicFormat[n1].desc);
  /system/core/libutils/
Unicode.cpp 293 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2)
295 const char16_t* e1 = s1+n1;
305 return n1 < n2
307 : (n1 > n2
312 int strzcmp16_h_n(const char16_t *s1H, size_t n1, const char16_t *s2N, size_t n2)
314 const char16_t* e1 = s1H+n1;
326 return n1 < n2
328 : (n1 > n2
  /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) {
642 HTONS(n1);
649 tmpso->so_fport == n1) {
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));
987 n1 = ((laddr >> 24) & 0xff);
995 n1, n2, n3, n4, n5, n6, x==7?buff:"");
1002 &n1, &n2, &n3, &n4, &n5, &n6, buff)
    [all...]
  /external/bzip2/
huffman.c 72 Int32 nNodes, nHeap, n1, n2, i, j, k; local
101 n1 = 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/third_party/WebKit/Source/core/xml/
XPathParser.cpp 245 String n1; local
246 if (!lexNCName(n1))
254 name = n1;
262 name = n1 + ":" + n2;
  /external/chromium_org/v8/test/mjsunit/
this-property-assignment.js 37 var n1 = new Node();
38 assertEquals(3, n1.a);
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 3 alignas(1) int n1; // expected-error {{requested alignment is less than minimum alignment of 4 for type 'int'}} variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp 43 int n1 = f(i); member in namespace:std_example
  /external/clang/tools/diag-build/
diag-build.sh 94 head -n1 |
  /external/qemu/slirp-android/
tcp_subr.c 767 u_int n1, n2, n3, n4, n5, n6; local
795 if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) {
801 tmpso->so_faddr_port == n1) {
810 "%d,%d\r\n", n1, n2);
825 &n1, &n2, &n3, &n4, &n5, &n6, buff);
829 laddr = (n1 << 24) | (n2 << 16) | (n3 << 8) | (n4);
842 n1 = ((laddr >> 24) & 0xff);
850 n1, n2, n3, n4, n5, n6, x==7?buff:"");
857 &n1, &n2, &n3, &n4, &n5, &n6, buff);
861 laddr = (n1 << 24) | (n2 << 16) | (n3 << 8) | (n4)
    [all...]
  /external/v8/test/mjsunit/
this-property-assignment.js 37 var n1 = new Node();
38 assertEquals(3, n1.a);
  /pdk/apps/CameraITS/tests/
test_capture_result.py 68 def is_close_float(n1, n2):
69 return abs(n1 - n2) < 0.05
71 def is_close_rational(n1, n2):
72 return is_close_float(r2f(n1), r2f(n2))
  /external/opencv/cvaux/src/
cvhmmobs.cpp 136 int n1 = dctSize.height, m1 = n1 / 2; local
182 if( n1 & 1 )
192 float t1 = img[x + (n1 - 1 - j) * imgStep];
220 if( n1 & 1 )
331 int n1 = dctSize.height, m1 = n1 / 2; local
379 if( n1 & 1 )
389 float t1 = img[x + (n1 - 1 - j) * imgStep];
417 if( n1 & 1
    [all...]
  /external/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) {
276 size_t bufsize1 = n1 < 63 ? n1 : 63;
283 s1 += bufsize1; n1 -= bufsize1;
292 const wchar_t* s1, size_t n1, const wchar_t* s2, size_t n2) {
295 while (n1 > 0 || n2 > 0) {
296 size_t bufsize1 = n1 < 63 ? n1 : 63;
303 s1 += bufsize1; n1 -= bufsize1
    [all...]
  /external/stlport/src/c_locale_glibc/
c_locale_glibc2.c 363 const char *s1, size_t n1,
367 while (n1 > 0 || n2 > 0) {
368 size_t bufsize1 = n1 < 63 ? n1 : 63;
375 s1 += bufsize1; n1 -= bufsize1;
383 const wchar_t *s1, size_t n1,
387 while (n1 > 0 || n2 > 0) {
388 size_t bufsize1 = n1 < 63 ? n1 : 63;
395 s1 += bufsize1; n1 -= bufsize1
    [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) {
276 size_t bufsize1 = n1 < 63 ? n1 : 63;
283 s1 += bufsize1; n1 -= bufsize1;
292 const wchar_t* s1, size_t n1, const wchar_t* s2, size_t n2) {
295 while (n1 > 0 || n2 > 0) {
296 size_t bufsize1 = n1 < 63 ? n1 : 63;
303 s1 += bufsize1; n1 -= bufsize1
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
c_locale_glibc2.c 363 const char *s1, size_t n1,
367 while (n1 > 0 || n2 > 0) {
368 size_t bufsize1 = n1 < 63 ? n1 : 63;
375 s1 += bufsize1; n1 -= bufsize1;
383 const wchar_t *s1, size_t n1,
387 while (n1 > 0 || n2 > 0) {
388 size_t bufsize1 = n1 < 63 ? n1 : 63;
395 s1 += bufsize1; n1 -= bufsize1
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
custrtst.c     [all...]
  /external/icu4c/test/cintltst/
custrtst.c     [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 44 void SwapDateAdded(BookmarkNode* n1, BookmarkNode* n2) {
45 Time tmp = n1->date_added();
46 n1->set_date_added(n2->date_added());
412 // nodes: n1 > n2 > n3 > n4.
414 BookmarkNode* n1 = AsMutable(model.AddURL(model.GetBookmarkBarNode(), local
430 n1->set_date_added(base_time + TimeDelta::FromDays(4));
439 ASSERT_TRUE(n1 == recently_added[0]);
444 SwapDateAdded(n1, n2);
448 ASSERT_TRUE(n1 == recently_added[1]);
456 // nodes: n1 > n
459 BookmarkNode* n1 = AsMutable(model.AddURL( local
530 const BookmarkNode* n1 = model.AddURL( local
    [all...]

Completed in 931 milliseconds

1 2 3 45 6 7 8 91011>>