Searched defs:n6 (Results 1 - 6 of 6) sorted by relevance

/external/llvm/unittests/VMCore/
H A DMetadataTest.cpp97 MDNode *n6 = MDNode::getIfExists(Context, c2); local
106 EXPECT_EQ(n6, (Value*)0);
/external/qemu/slirp/
H A Dtcp_subr.c612 u_int n1, n2, n3, n4, n5, n6; local
970 &n1, &n2, &n3, &n4, &n5, &n6, buff);
975 lport = htons((n5 << 8) | (n6));
980 n6 = ntohs(so->so_fport);
982 n5 = (n6 >> 8) & 0xff;
983 n6 &= 0xff;
995 n1, n2, n3, n4, n5, n6, x==7?buff:"");
1002 &n1, &n2, &n3, &n4, &n5, &n6, buff);
1007 lport = htons((n5 << 8) | (n6));
1012 n6
[all...]
/external/openssl/crypto/ec/
H A Decp_smpl.c649 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
677 n6 = BN_CTX_get(ctx);
678 if (n6 == NULL) goto end;
723 /* n5, n6 */
725 if (!BN_mod_sub_quick(n6, n2, n4, p)) goto end;
727 /* n6 = n2 - n4 */
731 if (BN_is_zero(n6))
774 if (!field_sqr(group, n0, n6, ctx)) goto end;
778 /* X_r = n6^2 - n5^2 * 'n7' */
786 if (!field_mul(group, n0, n0, n6, ct
[all...]
/external/qemu/slirp-android/
H A Dtcp_subr.c767 u_int n1, n2, n3, n4, n5, n6; local
825 &n1, &n2, &n3, &n4, &n5, &n6, buff);
830 lport = (n5 << 8) | (n6);
835 n6 = so->so_faddr_port;
837 n5 = (n6 >> 8) & 0xff;
838 n6 &= 0xff;
850 n1, n2, n3, n4, n5, n6, x==7?buff:"");
857 &n1, &n2, &n3, &n4, &n5, &n6, buff);
862 lport = (n5 << 8) | (n6);
867 n6
[all...]
/external/clang/test/CXX/expr/expr.const/
H A Dp2-0x.cpp233 constexpr int n6 = 3 * -715827883; // expected-error {{constant expression}} expected-note {{value -2147483649 is outside the range of }} member in namespace:UndefinedBehavior::Overflow
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp78 constexpr int **n6 = const_cast<int**>(&n3); member in namespace:ConstCast
80 constexpr int n8 = **n6;
278 constexpr bool n6 = 0 > &y; // expected-error {{must be initialized by a constant expression}}

Completed in 277 milliseconds