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

12 3 4

  /external/icu4c/test/cintltst/
custrtst.c     [all...]
  /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]);
  /frameworks/base/tests/CoreTests/android/core/
PipedStreamTest.java 28 int n2; field in class:Fibonacci
35 n2 = 0;
39 int ret = n1 + n2;
40 n2 = n1;
  /external/stlport/src/c_locale_dummy/
c_locale_dummy.c 268 const char* s1, size_t n1, const char* s2, size_t n2) {
271 while (n1 > 0 || n2 > 0) {
273 size_t bufsize2 = n2 < 63 ? n2 : 63;
280 s2 += bufsize2; n2 -= bufsize2;
288 const wchar_t* s1, size_t n1, const wchar_t* s2, size_t n2) {
291 while (n1 > 0 || n2 > 0) {
293 size_t bufsize2 = n2 < 63 ? n2 : 63;
300 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...]
  /external/openssl/crypto/lhash/
lhash.c 307 LHASH_NODE **n,**n1,**n2,*np; local
340 n2= &(lh->b[p+pmax]);
341 *n2=NULL; /* 27/07/92 - eay - undefined pointer bug */
354 np->next= *n2;
355 *n2=np;
  /external/bluetooth/hcidump/parser/
sdp.c 451 int len, n1 = 0, n2 = 0; local
459 if (parse_de_hdr(frm, &n2) == SDP_DE_UUID) {
460 print_uuid(n2, frm, NULL, NULL);
477 int len, n1 = 0, n2 = 0; local
486 if (parse_de_hdr(frm, &n2) == SDP_DE_UINT) {
488 switch(n2) {
519 int len, split, n1 = 0, n2 = 0; local
525 if (parse_de_hdr(frm, &n2) == SDP_DE_UINT && n2 == sizeof(attr_id)) {
  /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...]
  /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);
  /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);
  /external/qemu/slirp-android/
tcp_subr.c 643 u_int n1, n2, n3, n4, n5, n6; local
671 if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) {
672 /* n2 is the one on our host */
675 tmpso->so_laddr_port == n2 &&
679 n2 = sock_address_get_port(&addr);
686 "%d,%d\r\n", n1, n2);
701 &n1, &n2, &n3, &n4, &n5, &n6, buff);
705 laddr = (n1 << 24) | (n2 << 16) | (n3 << 8) | (n4);
719 n2 = ((laddr >> 16) & 0xff);
726 n1, n2, n3, n4, n5, n6, x==7?buff:"")
    [all...]
  /frameworks/base/libs/utils/
String16.cpp 135 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2)
138 const char16_t* e2 = s2+n2;
147 return n1 < n2
149 : (n1 > n2
154 int strzcmp16_h_n(const char16_t *s1H, size_t n1, const char16_t *s2N, size_t n2)
157 const char16_t* e2 = s2N+n2;
168 return n1 < n2
170 : (n1 > n2
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationAttributesPart.java 119 int n2 = (int) Math.ceil(n / 2.0); local
121 AttributeDescriptor attr_desc = attr_desc_list[i / 2 + (i & 1) * n2];
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 442 * @param n2 {@code 0..15;} medium-high nibble
446 protected static short codeUnit(int n0, int n1, int n2, int n3) {
455 if ((n2 & 0xf) != n2) {
456 throw new IllegalArgumentException("n2 out of range 0..15");
463 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));
  /external/opencore/baselibs/pv_mime_utils/src/
pv_mime_string_utils.cpp 296 int n2 = pv_mime_string_compcnt(str2); local
299 if (n2 > n1)
308 n1 = n2;
309 n2 = temp;
  /external/webkit/WebCore/xml/
XPathParser.cpp 265 String n2; local
266 if (!lexNCName(n2))
269 name = n1 + ":" + n2;
375 String n2; local
376 if (!lexNCName(n2))
379 name = name + ":" + n2;
  /bionic/libc/stdio/
vfprintf.c 163 int n, m, n2; /* handy integers (short term usage) */ local
269 n2 = 0; \
272 n2 = 10 * n2 + to_digit(*cp); \
281 nextarg = n2; \
866 int n, n2; /* handy integer (short term usage) */ local
906 n2 = 0; \
909 n2 = 10 * n2 + to_digit(*cp); \
914 nextarg = n2; \
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 199 int n2 = n*2;
205 r = new Rect(x1 - n, y1, n2, h);
209 r = new Rect(x2 - n, y1, n2, h);
213 r = new Rect(x1, y1 - n, w, n2);
217 r = new Rect(x1, y2 - n, w, n2);
  /external/openssl/crypto/ec/
ecp_smpl.c 1008 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
1032 n2 = BN_CTX_get(ctx);
1044 /* n1, n2 */
1048 if (!BN_copy(n2, &a->Y)) goto end;
1050 /* n2 = Y_a */
1059 if (!field_mul(group, n2, &a->Y, n0, ctx)) goto end;
1060 /* n2 = Y_a * Z_b^3 */
1084 if (!BN_mod_sub_quick(n6, n2, n4, p)) goto end;
1086 /* n6 = n2 - n4 */
1110 if (!BN_mod_add_quick(n2, n2, n4, p)) goto end
1172 BIGNUM *n0, *n1, *n2, *n3; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_div.c 24 int res, n, n2; local
74 n2 = (a->sign == b->sign ? MP_ZPOS : MP_NEG);
77 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
  /external/v8/test/mjsunit/
json.js 32 var n2 = new Constructor(value);
33 n2.valueOf = null;
34 assertThrows(function () { n2.toJSON(); }, TypeError);
74 var n2 = new Date(10001);
75 n2.toISOString = null;
76 assertThrows(function () { n2.toJSON(); }, TypeError);
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uutility.h 86 /// \brief Divides \p n1 by \p n2 and rounds the result up.
93 inline T1 DivRU (T1 n1, T2 n2)
95 return (n1 / n2 + (n1 % n2 > 0));
  /external/openssl/crypto/bn/
bn_lcl.h 470 void bn_mul_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
474 void bn_sqr_recursive(BN_ULONG *r,const BN_ULONG *a, int n2, BN_ULONG *t);
476 void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
478 void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2,
  /external/sqlite/android/
sqlite3_android.cpp 37 static int collate16(void *p, int n1, const void *v1, int n2, const void *v2)
41 (const UChar *) v2, n2);
52 static int collate8(void *p, int n1, const void *v1, int n2, const void *v2)
59 uiter_setUTF8(&i2, (const char *) v2, n2);
  /frameworks/base/include/utils/
String16.h 47 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2);
50 int strzcmp16_h_n(const char16_t *s1H, size_t n1, const char16_t *s2N, size_t n2);

Completed in 1895 milliseconds

12 3 4