/external/chromium_org/v8/test/cctest/compiler/ |
test-node-algorithm.cc | 101 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};
|
test-run-machops.cc | 3551 Node* n6 = m.Load(kMachInt32, base, m.Int32Constant(6 * sizeof(int32_t))); local [all...] |
test-scheduler.cc | 878 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 = graph.NewNode(op) local 1235 Node* n6 = graph.NewNode(op); local 1577 Node* n6 = graph.NewNode(op); local [all...] |
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/ |
p6.cpp | 18 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/llvm/unittests/IR/ |
MetadataTest.cpp | 97 MDNode *n6 = MDNode::getIfExists(Context, c2); local 106 EXPECT_EQ(n6, (Value*)nullptr);
|
/external/chromium_org/third_party/boringssl/src/crypto/ec/ |
simple.c | 617 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, ctx) [all...] |
/external/openssl/crypto/ec/ |
ecp_smpl.c | 650 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, ctx)) goto end [all...] |
/external/clang/test/CXX/expr/expr.const/ |
p2-0x.cpp | 235 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/ |
constant-expression-cxx11.cpp | 78 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}} [all...] |