Searched defs:n5 (Results 1 - 9 of 9) sorted by relevance

/external/llvm/unittests/VMCore/
H A DMetadataTest.cpp96 MDNode *n5 = MDNode::getIfExists(Context, c1); local
105 EXPECT_EQ(n5, n2);
/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));
982 n5 = (n6 >> 8) & 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));
1014 n5 = (n6 >> 8) & 0xff;
1027 n1, n2, n3, n4, n5, n6, x==7?buff:"");
/external/openssl/crypto/ec/
H A Decp_smpl.c649 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
676 n5 = BN_CTX_get(ctx);
723 /* n5, n6 */
724 if (!BN_mod_sub_quick(n5, n1, n3, p)) goto end;
726 /* n5 = n1 - n3 */
729 if (BN_is_zero(n5))
758 if (!BN_copy(&r->Z, n5)) goto end;
768 if (!field_mul(group, &r->Z, n0, n5, ctx)) goto end;
771 /* Z_r = Z_a * Z_b * n5 */
775 if (!field_sqr(group, n4, n5, 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);
837 n5 = (n6 >> 8) & 0xff;
850 n1, n2, n3, n4, n5, n6, x==7?buff:"");
857 &n1, &n2, &n3, &n4, &n5, &n6, buff);
862 lport = (n5 << 8) | (n6);
869 n5 = (n6 >> 8) & 0xff;
882 n1, n2, n3, n4, n5, n6, x==7?buff:"");
/external/clang/test/CXX/expr/expr.const/
H A Dp2-0x.cpp232 constexpr int n5 = -65536 * 32768; // ok member in namespace:UndefinedBehavior::Overflow
240 constexpr int n13 = n5 + n5; // expected-error {{constant expression}} expected-note {{value -4294967296 is outside the range of }}
241 constexpr int n14 = n3 - n5; // expected-error {{constant expression}} expected-note {{value 4294967295 is outside the range of }}
242 constexpr int n15 = n5 * n5; // expected-error {{constant expression}} expected-note {{value 4611686018427387904 is outside the range of }}
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp77 constexpr const int * const *n5 = const_cast<const int* const*>(&n3); member in namespace:ConstCast
79 constexpr int n7 = **n5;
277 constexpr bool n5 = 0 < &y; // expected-error {{must be initialized by a constant expression}} member in namespace:PointerComparison
/external/chromium/testing/gtest/test/
H A Dgtest_unittest.cc2225 const char* e5, int n1, int n2, int n3, int n4, int n5) {
2226 const int sum = n1 + n2 + n3 + n4 + n5;
2234 << n1 << " + " << n2 << " + " << n3 << " + " << n4 << " + " << n5
2344 int n5 = 0; local
2346 n1++, n2++, n3++, n4++, n5++) local
2352 EXPECT_EQ(1, n5) << "Argument 5 is not evaluated exactly once.";
2223 operator ()( const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, int n1, int n2, int n3, int n4, int n5) argument
/external/gtest/test/
H A Dgtest_unittest.cc2225 const char* e5, int n1, int n2, int n3, int n4, int n5) {
2226 const int sum = n1 + n2 + n3 + n4 + n5;
2234 << n1 << " + " << n2 << " + " << n3 << " + " << n4 << " + " << n5
2344 int n5 = 0; local
2346 n1++, n2++, n3++, n4++, n5++) local
2352 EXPECT_EQ(1, n5) << "Argument 5 is not evaluated exactly once.";
2223 operator ()( const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, int n1, int n2, int n3, int n4, int n5) argument
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc2464 const char* e5, int n1, int n2, int n3, int n4, int n5) {
2465 const int sum = n1 + n2 + n3 + n4 + n5;
2473 << n1 << " + " << n2 << " + " << n3 << " + " << n4 << " + " << n5
2583 int n5 = 0; local
2585 n1++, n2++, n3++, n4++, n5++) local
2591 EXPECT_EQ(1, n5) << "Argument 5 is not evaluated exactly once.";
2462 operator ()( const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, int n1, int n2, int n3, int n4, int n5) argument

Completed in 253 milliseconds