HomeSort by relevance Sort by last modified time
    Searched defs:Equal (Results 1 - 25 of 43) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/bytes/
bytes_decl.go 14 // Equal returns a boolean reporting whether a and b
17 func Equal(a, b []byte) bool // ../runtime/asm_$GOARCH.s
  /prebuilts/go/linux-x86/src/bytes/
bytes_decl.go 14 // Equal returns a boolean reporting whether a and b
17 func Equal(a, b []byte) bool // ../runtime/asm_$GOARCH.s
  /art/runtime/base/
bit_vector-inl.h 72 inline bool BitVector::Equal(const BitVector* src) const {
  /prebuilts/go/darwin-x86/src/crypto/hmac/
hmac.go 11 Receivers should be careful to use Equal to compare MACs in order to avoid
19 return hmac.Equal(messageMAC, expectedMAC)
92 // Equal compares two MACs for equality without leaking timing information.
93 func Equal(mac1, mac2 []byte) bool {
  /prebuilts/go/linux-x86/src/crypto/hmac/
hmac.go 11 Receivers should be careful to use Equal to compare MACs in order to avoid
19 return hmac.Equal(messageMAC, expectedMAC)
92 // Equal compares two MACs for equality without leaking timing information.
93 func Equal(mac1, mac2 []byte) bool {
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LowerAtomic.cpp 30 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
31 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 32 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
33 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
37 Res = Builder.CreateInsertValue(Res, Equal, 1);
  /external/v8/src/
bignum.h 51 static bool Equal(const Bignum& a, const Bignum& b) {
  /art/runtime/
lock_word.h 248 static bool Equal(LockWord lw1, LockWord lw2) {
275 // Disallow this in favor of explicit Equal() with the
294 // not work. Prefer Equal() or GetValueWithoutReadBarrierState().
  /prebuilts/go/darwin-x86/src/regexp/syntax/
regexp.go 61 // Equal returns true if x and y have identical structure.
62 func (x *Regexp) Equal(y *Regexp) bool {
91 if !sub.Equal(y.Sub[i]) {
97 if x.Flags&NonGreedy != y.Flags&NonGreedy || !x.Sub[0].Equal(y.Sub[0]) {
102 if x.Flags&NonGreedy != y.Flags&NonGreedy || x.Min != y.Min || x.Max != y.Max || !x.Sub[0].Equal(y.Sub[0]) {
107 if x.Cap != y.Cap || x.Name != y.Name || !x.Sub[0].Equal(y.Sub[0]) {
  /prebuilts/go/linux-x86/src/regexp/syntax/
regexp.go 61 // Equal returns true if x and y have identical structure.
62 func (x *Regexp) Equal(y *Regexp) bool {
91 if !sub.Equal(y.Sub[i]) {
97 if x.Flags&NonGreedy != y.Flags&NonGreedy || !x.Sub[0].Equal(y.Sub[0]) {
102 if x.Flags&NonGreedy != y.Flags&NonGreedy || x.Min != y.Min || x.Max != y.Max || !x.Sub[0].Equal(y.Sub[0]) {
107 if x.Cap != y.Cap || x.Name != y.Name || !x.Sub[0].Equal(y.Sub[0]) {
  /build/blueprint/bootstrap/bpdoc/
bpdoc.go 130 func (p *Property) Equal(other Property) bool {
194 if !p.Properties[i].Equal(other.Properties[i]) {
  /external/flatbuffers/tests/
phpTest.php 112 $assert->Equal($pos->GetTest1(), 3.0);
143 $assert->Equal('Fred', $fred->getName());
338 $assert->Equal($uut->capacity(), strlen($buffer));
344 $assert->Equal("\x63", $uut->_buffer[0]); // don't share buffer as php user might confuse reference.
359 $assert->Equal(chr(0x01), $uut->_buffer[0]);
360 $assert->Equal(chr(0x00), $uut->_buffer[1]);
367 $assert->Equal(chr(0x00), $uut->_buffer[0]);
368 $assert->Equal(chr(0x80), $uut->_buffer[1]);
395 $assert->Equal(chr(0x0D), $uut->_buffer[0]);
396 $assert->Equal(chr(0x0C), $uut->_buffer[1])
    [all...]
  /external/pdfium/xfa/fwl/theme/
cfwl_widgettp.cpp 273 bool CFWL_FontData::Equal(const CFX_WideStringC& wsFontFamily,
320 if (pData->Equal(wsFontFamily, dwFontStyles, wCodePage))
  /external/skia/src/core/
SkTypeface.cpp 113 bool SkTypeface::Equal(const SkTypeface* facea, const SkTypeface* faceb) {
  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 174 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
253 if (Equal(approx->last_value_, value)) {
356 if (!Equal(approx->last_value_, value)) {
372 bool Equal(HValue* a, HValue* b) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
type_test.go 54 func (t *TypeImpl) Equal(u Type) bool {
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1.go 214 // Equal reports whether oi and other represent the same identifier.
215 func (oi ObjectIdentifier) Equal(other ObjectIdentifier) bool {
  /prebuilts/go/darwin-x86/src/net/
ip.go 111 return ip.Equal(IPv4zero) || ip.Equal(IPv6unspecified)
119 return ip.Equal(IPv6loopback)
164 !ip.Equal(IPv4bcast) &&
368 // Equal reports whether ip and x are the same IP address.
370 // considered to be equal.
371 func (ip IP) Equal(x IP) bool {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
type_test.go 54 func (t *TypeImpl) Equal(u Type) bool {
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1.go 214 // Equal reports whether oi and other represent the same identifier.
215 func (oi ObjectIdentifier) Equal(other ObjectIdentifier) bool {
  /prebuilts/go/linux-x86/src/net/
ip.go 111 return ip.Equal(IPv4zero) || ip.Equal(IPv6unspecified)
119 return ip.Equal(IPv6loopback)
164 !ip.Equal(IPv4bcast) &&
368 // Equal reports whether ip and x are the same IP address.
370 // considered to be equal.
371 func (ip IP) Equal(x IP) bool {
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 53 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/pdfium/core/fpdfapi/parser/
cpdf_object_unittest.cpp 110 bool Equal(const CPDF_Object* obj1, const CPDF_Object* obj2) {
130 if (!Equal(array1->GetObjectAt(i), array2->GetObjectAt(i)))
142 if (!Equal(it->second.get(), dict2->GetObjectFor(it->first)))
155 if (!Equal(stream1->GetDict(), stream2->GetDict()))
257 EXPECT_TRUE(Equal(indirect_obj_results[i], m_RefObjs[i]->GetDict()));
277 EXPECT_TRUE(Equal(m_DirectObjs[i].get(), obj.get()));
283 EXPECT_TRUE(Equal(it.get(), obj.get()));
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
MCAsmLexer.h 48 Star, Dot, Comma, Dollar, Equal, EqualEqual,

Completed in 901 milliseconds

1 2