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

/external/chromium_org/v8/src/compiler/
H A Dgraph.h53 Node* n5, Node* n6) {
54 Node* nodes[] = {n1, n2, n3, n4, n5, n6};
52 NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4, Node* n5, Node* n6) argument
H A Dgraph-builder.h55 Node* n5, Node* n6) {
56 Node* nodes[] = {n1, n2, n3, n4, n5, n6};
54 NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4, Node* n5, Node* n6) argument
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp6.cpp18 int n6; // expected-error {{'alignas' must be specified on definition if it is specified on any declaration}} variable
19 alignas(8) extern int n6; // expected-note {{declared with 'alignas' attribute here}}
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-node-algorithm.cc101 Node* n6 = graph.NewNode(&dummy_operator, n2); local
103 Node* end_dependencies[4] = {n4, n5, n6, n7};
114 CHECK(n6->id() == node_visitor.nodes_[3]->id());
128 Node* n6 = graph.NewNode(&dummy_operator, n3); local
134 Node* end_dependencies[6] = {n4, n8, n10, n11, n6, n7};
150 CHECK(n6->id() == node_visitor.nodes_[8]->id());
318 Node* n6 = graph.NewNode(&dummy_operator, n3); local
324 Node* end_dependencies[6] = {n4, n8, n10, n11, n6, n7};
H A Dtest-run-machops.cc3551 Node* n6 = m.Load(kMachInt32, base, m.Int32Constant(6 * sizeof(int32_t))); local
3557 Node* i4 = m.Int32Add(n6, n7);
H A Dtest-scheduler.cc878 Node* n6 = graph.NewNode(op, nil, nil); local
879 USE(n6);
880 n6->ReplaceInput(0, n0);
888 n13->ReplaceInput(1, n6);
890 n6->ReplaceInput(1, n14);
891 n9->ReplaceInput(2, n6);
899 n10->ReplaceInput(2, n6);
901 n12->ReplaceInput(4, n6);
913 n8->ReplaceInput(2, n6);
986 Node* n6 local
1235 Node* n6 = graph.NewNode(op); local
1577 Node* n6 = graph.NewNode(op); local
[all...]
/external/llvm/unittests/IR/
H A DMetadataTest.cpp97 MDNode *n6 = MDNode::getIfExists(Context, c2); local
106 EXPECT_EQ(n6, (Value*)nullptr);
/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/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dsimple.c617 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
644 n6 = BN_CTX_get(ctx);
645 if (n6 == NULL)
697 /* n5, n6 */
700 if (!BN_mod_sub_quick(n6, n2, n4, p))
703 /* n6 = n2 - n4 */
706 if (BN_is_zero(n6)) {
751 if (!field_sqr(group, n0, n6, ctx))
759 /* X_r = n6^2 - n5^2 * 'n7' */
769 if (!field_mul(group, n0, n0, n6, ct
[all...]
/external/openssl/crypto/ec/
H A Decp_smpl.c650 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
678 n6 = BN_CTX_get(ctx);
679 if (n6 == NULL) goto end;
724 /* n5, n6 */
726 if (!BN_mod_sub_quick(n6, n2, n4, p)) goto end;
728 /* n6 = n2 - n4 */
732 if (BN_is_zero(n6))
775 if (!field_sqr(group, n0, n6, ctx)) goto end;
779 /* X_r = n6^2 - n5^2 * 'n7' */
787 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.cpp235 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;
283 constexpr bool n6 = 0 > &y; // expected-error {{must be initialized by a constant expression}}

Completed in 7612 milliseconds