HomeSort by relevance Sort by last modified time
    Searched refs:n5 (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/v8/test/cctest/compiler/
test-node-algorithm.cc 61 Node* n5 = graph.NewNode(&dummy_operator, n4, n2); local
62 graph.SetEnd(n5);
72 CHECK(n5->id() == node_visitor.nodes_[4]->id());
81 Node* n5 = graph.NewNode(&dummy_operator, n4, n2); local
82 graph.SetEnd(n5);
87 CHECK(n5->id() == node_visitor.nodes_[0]->id());
100 Node* n5 = graph.NewNode(&dummy_operator, n2); local
103 Node* end_dependencies[4] = {n4, n5, n6, n7};
113 CHECK(n5->id() == node_visitor.nodes_[2]->id());
127 Node* n5 = graph.NewNode(&dummy_operator, n2) local
223 Node* n5 = graph.NewNode(&dummy_operator, n4); local
317 Node* n5 = graph.NewNode(&dummy_operator, n2); local
    [all...]
test-scheduler.cc 772 Node* n5 = graph.NewNode(op, n0); local
773 USE(n5);
774 n15->ReplaceInput(1, n5);
862 Node* n5 = graph.NewNode(op); local
863 USE(n5);
864 n16->ReplaceInput(1, n5);
893 n12->ReplaceInput(2, n5);
909 n18->ReplaceInput(2, n5);
    [all...]
test-node.cc 316 Node* n5 = graph.NewNode(&dummy_operator, n4); local
332 CHECK(*current == n5);
  /external/chromium_org/v8/src/compiler/
graph.h 48 Node* n5) {
49 Node* nodes[] = {n1, n2, n3, n4, n5};
53 Node* n5, Node* n6) {
54 Node* nodes[] = {n1, n2, n3, n4, n5, n6};
graph-builder.h 49 Node* n5) {
50 Node* buffer[] = {n1, n2, n3, n4, n5};
55 Node* n5, Node* n6) {
56 Node* nodes[] = {n1, n2, n3, n4, n5, n6};
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p6.cpp 15 alignas(8) extern int n5;
16 extern int n5;
p5.cpp 7 alignas(1) alignas(2) int n5 alignas(4); // ok
  /external/chromium_org/base/containers/
linked_list_unittest.cc 113 Node n5(5);
119 list.Append(&n5);
122 EXPECT_EQ(&n5, list.tail());
132 EXPECT_EQ(&n5, list.tail());
139 n5.RemoveFromList();
171 list.Append(&n5);
174 EXPECT_EQ(&n5, list.tail());
  /external/llvm/unittests/IR/
MetadataTest.cpp 96 MDNode *n5 = MDNode::getIfExists(Context, c1); local
105 EXPECT_EQ(n5, n2);
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 234 constexpr int n5 = -65536 * 32768; // ok member in namespace:UndefinedBehavior::Overflow
242 constexpr int n13 = n5 + n5; // expected-error {{constant expression}} expected-note {{value -4294967296 is outside the range of }}
243 constexpr int n14 = n3 - n5; // expected-error {{constant expression}} expected-note {{value 4294967295 is outside the range of }}
244 constexpr int n15 = n5 * n5; // expected-error {{constant expression}} expected-note {{value 4611686018427387904 is outside the range of }}
  /external/qemu/slirp/
tcp_subr.c 612 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:"");
    [all...]
  /external/qemu/slirp-android/
tcp_subr.c 767 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/chromium_org/third_party/boringssl/src/crypto/ec/
simple.c 617 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
643 n5 = BN_CTX_get(ctx);
697 /* n5, n6 */
698 if (!BN_mod_sub_quick(n5, n1, n3, p))
702 /* n5 = n1 - n3 */
705 if (BN_is_zero(n5)) {
731 if (!BN_copy(&r->Z, n5))
744 if (!field_mul(group, &r->Z, n0, n5, ctx))
748 /* Z_r = Z_a * Z_b * n5 */
753 if (!field_sqr(group, n4, n5, ctx)
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 650 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
677 n5 = BN_CTX_get(ctx);
724 /* n5, n6 */
725 if (!BN_mod_sub_quick(n5, n1, n3, p)) goto end;
727 /* n5 = n1 - n3 */
730 if (BN_is_zero(n5))
759 if (!BN_copy(&r->Z, n5)) goto end;
769 if (!field_mul(group, &r->Z, n0, n5, ctx)) goto end;
772 /* Z_r = Z_a * Z_b * n5 */
776 if (!field_sqr(group, n4, n5, ctx)) goto end
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 482 int n5 = 0; // Number scan results we included in the string local
511 if (n5 < 4) {
524 n5++;
565 if (n5 <= 4) {
  /device/asus/fugu/kernel-headers/linux/
kct.h 92 #define MKFN_N(fn, n0, n1, n2, n3, n4, n5, n6, n7, n8, n9, n10, n11, n, ...) fn##n
  /device/asus/fugu/original-kernel-headers/linux/
kct.h 111 #define MKFN_N(fn, n0, n1, n2, n3, n4, n5, n6, n7, n8, n9, n10, n11, n, ...) fn##n
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
bind.hpp 341 typedef typename r4::next n5; typedef in struct:boost::mpl::bind4::apply
416 typedef typename r4::next n5; typedef in struct:boost::mpl::bind5::apply
419 typedef aux::replace_unnamed_arg< T5,n5 > r5;
  /external/chromium_org/v8/test/mjsunit/
large-object-allocation.js 175 this.n5 = i;
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 77 constexpr const int * const *n5 = const_cast<const int* const*>(&n3); member in namespace:ConstCast
79 constexpr int n7 = **n5;
282 constexpr bool n5 = 0 < &y; // expected-error {{must be initialized by a constant expression}} member in namespace:PointerComparison
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_unittest.cc 2299 int n5 = 0; local
2301 n1++, n2++, n3++, n4++, n5++) local
    [all...]
  /external/gtest/test/
gtest_unittest.cc 2306 int n5 = 0; local
2308 n1++, n2++, n3++, n4++, n5++) local
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 2583 int n5 = 0; local
2585 n1++, n2++, n3++, n4++, n5++) local
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_unittest.cc 2315 int n5 = 0; local
2317 n1++, n2++, n3++, n4++, n5++) local
    [all...]
  /external/clang/test/CXX/drs/
dr0xx.cpp 657 int n5 = convert_to<const volatile int&>(); member in namespace:dr59

Completed in 967 milliseconds

1 2