HomeSort by: relevance | last modified time | path
    Searched defs:is_equal (Results 1 - 16 of 16) sorted by relevancy

  /src/external/mit/isl/dist/
isl_test2.cc 98 std::declval<T>().is_equal(std::declval<T>()))>::type = true>
99 static bool is_equal(const T &a, const T &b) function
101 return a.is_equal(b);
105 static bool is_equal(const T &a, const T &b) function
129 if (is_equal(expected, res))
155 if (is_equal(expected, res))
182 if (is_equal(expected, res))
isl_union_templ.c 1217 isl_bool is_equal; local
1240 is_equal = FN(FN(UNION,every),BASE)(u1,
1246 return is_equal;
isl_space.c 1045 isl_bool is_equal; local
1047 is_equal = isl_space_has_equal_tuples(space1, space2);
1048 return check_match(space1, is_equal);
1121 isl_bool is_equal; local
1123 is_equal = isl_space_wrapped_tuple_is_equal(space1, outer, inner,
1125 return check_match(space1, is_equal);
2647 isl_bool is_equal; local
2649 is_equal = isl_space_has_domain_tuples(space1, space2);
2650 return check_match(space1, is_equal);
isl_scheduler.c 375 int is_equal; local
382 is_equal = isl_map_plain_is_equal(model->map, edge->map);
383 if (is_equal < 0)
385 if (is_equal)
  /src/crypto/external/apache2/openssl/dist/crypto/ec/
ecp_sm2p256.c 100 static ossl_inline int is_equal(const BN_ULONG *a, const BN_ULONG *b) function
126 #define is_one(a) is_equal(a, ONE)
129 is_equal(a->X, b->X) && is_equal(a->Y, b->Y) && is_equal(a->Z, b->Z)
441 && is_equal(bn_get_words(generator->X), def_xG)
442 && is_equal(bn_get_words(generator->Y), def_yG)
583 r->Z_is_one = is_equal(bn_get_words(r->Z), ONE) & 1;
ecp_nistz256.c 194 static BN_ULONG is_equal(const BN_ULONG a[P256_LIMBS], function
373 * It is easy to prove that is_equal(U1, U2) implies that the affine
375 * Likewise is_equal(S1, S2) implies that the affine y-coordinates are
391 if (is_equal(U1, U2) & ~in1infty & ~in2infty & is_equal(S1, S2)) {
792 return (bn_get_top(generator->X) == P256_LIMBS) && (bn_get_top(generator->Y) == P256_LIMBS) && is_equal(bn_get_words(generator->X), def_xG) && is_equal(bn_get_words(generator->Y), def_yG) && is_one(generator->Z);
  /src/external/gpl3/gdb/dist/sim/igen/
ld-decode.h 184 int is_equal; member in struct:_decode_cond
  /src/external/gpl3/gdb.old/dist/sim/igen/
ld-decode.h 184 int is_equal; member in struct:_decode_cond
  /src/external/public-domain/xz/dist/tests/
test_index.c 73 is_equal(const lzma_index *a, const lzma_index *b) function
134 expect(is_equal(a, a));
135 expect(is_equal(b, b));
136 expect(is_equal(c, c));
138 expect(!is_equal(a, b));
139 expect(!is_equal(a, c));
140 expect(!is_equal(b, c));
168 expect(is_equal(i, d));
231 expect(is_equal(i, d));
273 expect(is_equal(i, d))
    [all...]
  /src/external/mpl/bind/dist/tests/dns/
rbt_test.c 450 bool is_equal; local
458 is_equal = strcmp(labelstr, nodestr) == 0 ? true : false;
462 return is_equal;
  /src/external/gpl2/groff/dist/contrib/groffer/
groffer2.sh 1487 if is_equal "$#" 0
1549 # is_equal (<string1> <string2>)
1556 is_equal() function
1558 func_check is_equal '=' 2 "$@";
1679 if is_equal "$1" "$2"
1860 if is_equal "$1" 'yes'
2024 if is_equal "$#" 0
3383 if is_equal "$1" '-'
3922 if obj _FILESPEC_ARG is_equal '-'
4264 until test "$#" -le 0 || is_equal "$1" '--
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ecp_nistz256.c 203 static BN_ULONG is_equal(const BN_ULONG a[P256_LIMBS], function
382 * It is easy to prove that is_equal(U1, U2) implies that the affine
384 * Likewise is_equal(S1, S2) implies that the affine y-coordinates are
400 if (is_equal(U1, U2) & ~in1infty & ~in2infty & is_equal(S1, S2)) {
808 is_equal(bn_get_words(generator->X), def_xG) &&
809 is_equal(bn_get_words(generator->Y), def_yG) &&
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/
ecp_nistz256.c 197 static BN_ULONG is_equal(const BN_ULONG a[P256_LIMBS], function
376 * It is easy to prove that is_equal(U1, U2) implies that the affine
378 * Likewise is_equal(S1, S2) implies that the affine y-coordinates are
394 if (is_equal(U1, U2) & ~in1infty & ~in2infty & is_equal(S1, S2)) {
803 is_equal(bn_get_words(generator->X), def_xG) &&
804 is_equal(bn_get_words(generator->Y), def_yG) &&
  /src/external/mit/isl/dist/interface/
isl.py 8397 def is_equal(arg0, arg1): member in class:union_map
9657 def is_equal(arg0, arg1): member in class:map
9667 return union_map(arg0).is_equal(arg1)
10665 def is_equal(arg0, arg1): member in class:basic_map
10675 return map(arg0).is_equal(arg1)
11106 def is_equal(arg0, arg1): member in class:union_set
11777 def is_equal(arg0, arg1): member in class:set
11787 return union_set(arg0).is_equal(arg1)
12669 def is_equal(arg0, arg1): member in class:basic_set
12679 return set(arg0).is_equal(arg1
13279 def is_equal(arg0, arg1): member in class:id_to_ast_expr
13364 def is_equal(arg0, arg1): member in class:id_to_id
15555 def is_equal(arg0, arg1): member in class:schedule_node
17045 def is_equal(arg0, arg1): member in class:space
    [all...]
  /src/external/mit/isl/dist/include/isl/
cpp-checked.h 1507 inline boolean is_equal(const isl::checked::basic_map &bmap2) const;
1508 inline boolean is_equal(const isl::checked::map &map2) const;
1509 inline boolean is_equal(const isl::checked::union_map &umap2) const;
1646 inline boolean is_equal(const isl::checked::basic_set &bset2) const;
1647 inline boolean is_equal(const isl::checked::set &set2) const;
1648 inline boolean is_equal(const isl::checked::union_set &uset2) const;
1649 inline boolean is_equal(const isl::checked::point &bset2) const;
1859 inline boolean is_equal(const isl::checked::id_to_ast_expr &hmap2) const;
1891 inline boolean is_equal(const isl::checked::id_to_id &hmap2) const;
2025 inline boolean is_equal(const isl::checked::map &map2) const
7956 boolean basic_map::is_equal(const isl::checked::basic_map &bmap2) const function in class:isl::checked::basic_map
7962 boolean basic_map::is_equal(const isl::checked::map &map2) const function in class:isl::checked::basic_map
7967 boolean basic_map::is_equal(const isl::checked::union_map &umap2) const function in class:isl::checked::basic_map
8599 boolean basic_set::is_equal(const isl::checked::basic_set &bset2) const function in class:isl::checked::basic_set
8605 boolean basic_set::is_equal(const isl::checked::set &set2) const function in class:isl::checked::basic_set
8610 boolean basic_set::is_equal(const isl::checked::union_set &uset2) const function in class:isl::checked::basic_set
8615 boolean basic_set::is_equal(const isl::checked::point &bset2) const function in class:isl::checked::basic_set
9443 boolean id_to_ast_expr::is_equal(const isl::checked::id_to_ast_expr &hmap2) const function in class:isl::checked::id_to_ast_expr
9537 boolean id_to_id::is_equal(const isl::checked::id_to_id &hmap2) const function in class:isl::checked::id_to_id
10195 boolean map::is_equal(const isl::checked::map &map2) const function in class:isl::checked::map
10201 boolean map::is_equal(const isl::checked::union_map &umap2) const function in class:isl::checked::map
10206 boolean map::is_equal(const isl::checked::basic_map &map2) const function in class:isl::checked::map
13227 boolean point::is_equal(const isl::checked::basic_set &bset2) const function in class:isl::checked::point
13232 boolean point::is_equal(const isl::checked::set &set2) const function in class:isl::checked::point
13237 boolean point::is_equal(const isl::checked::union_set &uset2) const function in class:isl::checked::point
16157 boolean schedule_node::is_equal(const isl::checked::schedule_node &node2) const function in class:isl::checked::schedule_node
17188 boolean set::is_equal(const isl::checked::set &set2) const function in class:isl::checked::set
17194 boolean set::is_equal(const isl::checked::union_set &uset2) const function in class:isl::checked::set
17199 boolean set::is_equal(const isl::checked::basic_set &set2) const function in class:isl::checked::set
17204 boolean set::is_equal(const isl::checked::point &set2) const function in class:isl::checked::set
17972 boolean space::is_equal(const isl::checked::space &space2) const function in class:isl::checked::space
18838 boolean union_map::is_equal(const isl::checked::union_map &umap2) const function in class:isl::checked::union_map
20233 boolean union_set::is_equal(const isl::checked::union_set &uset2) const function in class:isl::checked::union_set
    [all...]
cpp.h 1573 inline bool is_equal(const isl::basic_map &bmap2) const;
1574 inline bool is_equal(const isl::map &map2) const;
1575 inline bool is_equal(const isl::union_map &umap2) const;
1712 inline bool is_equal(const isl::basic_set &bset2) const;
1713 inline bool is_equal(const isl::set &set2) const;
1714 inline bool is_equal(const isl::union_set &uset2) const;
1715 inline bool is_equal(const isl::point &bset2) const;
1925 inline bool is_equal(const isl::id_to_ast_expr &hmap2) const;
1957 inline bool is_equal(const isl::id_to_id &hmap2) const;
2091 inline bool is_equal(const isl::map &map2) const
9326 bool basic_map::is_equal(const isl::basic_map &bmap2) const function in class:isl::basic_map
9338 bool basic_map::is_equal(const isl::map &map2) const function in class:isl::basic_map
9345 bool basic_map::is_equal(const isl::union_map &umap2) const function in class:isl::basic_map
10279 bool basic_set::is_equal(const isl::basic_set &bset2) const function in class:isl::basic_set
10291 bool basic_set::is_equal(const isl::set &set2) const function in class:isl::basic_set
10298 bool basic_set::is_equal(const isl::union_set &uset2) const function in class:isl::basic_set
10305 bool basic_set::is_equal(const isl::point &bset2) const function in class:isl::basic_set
11520 bool id_to_ast_expr::is_equal(const isl::id_to_ast_expr &hmap2) const function in class:isl::id_to_ast_expr
11652 bool id_to_id::is_equal(const isl::id_to_id &hmap2) const function in class:isl::id_to_id
12744 bool map::is_equal(const isl::map &map2) const function in class:isl::map
12756 bool map::is_equal(const isl::union_map &umap2) const function in class:isl::map
12763 bool map::is_equal(const isl::basic_map &map2) const function in class:isl::map
17744 bool point::is_equal(const isl::basic_set &bset2) const function in class:isl::point
17751 bool point::is_equal(const isl::set &set2) const function in class:isl::point
17758 bool point::is_equal(const isl::union_set &uset2) const function in class:isl::point
22410 bool schedule_node::is_equal(const isl::schedule_node &node2) const function in class:isl::schedule_node
23947 bool set::is_equal(const isl::set &set2) const function in class:isl::set
23959 bool set::is_equal(const isl::union_set &uset2) const function in class:isl::set
23966 bool set::is_equal(const isl::basic_set &set2) const function in class:isl::set
23973 bool set::is_equal(const isl::point &set2) const function in class:isl::set
25307 bool space::is_equal(const isl::space &space2) const function in class:isl::space
26839 bool union_map::is_equal(const isl::union_map &umap2) const function in class:isl::union_map
29230 bool union_set::is_equal(const isl::union_set &uset2) const function in class:isl::union_set
    [all...]

Completed in 64 milliseconds