HomeSort by relevance Sort by last modified time
    Searched refs:Equal (Results 201 - 225 of 634) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/linux-x86/src/cmd/internal/goobj/
read.go 367 case bytes.Equal(rd.tmp[:8], archiveHeader):
371 case bytes.Equal(rd.tmp[:8], goobjHeader):
413 if !bytes.Equal(data[58:60], archiveMagic) {
437 if bytes.Equal(p, goobjHeader) {
490 if !bytes.Equal(r.tmp[:8], []byte("\x00\x00go19ld")) {
605 if !bytes.Equal(r.tmp[:7], []byte("\xffgo19ld")) {
  /prebuilts/go/linux-x86/src/net/
ip_test.go 244 if out, err := tt.in.MarshalText(); !bytes.Equal(out, tt.byt) || !reflect.DeepEqual(err, tt.error) {
279 if out := tt.in.Mask(tt.mask); out == nil || !tt.out.Equal(out) {
355 if err == nil && (!tt.ip.Equal(ip) || !tt.net.IP.Equal(net.IP) || !reflect.DeepEqual(net.Mask, tt.net.Mask)) {
715 // Half of the N are equal.
719 x.Equal(y)
721 // The other half are not equal.
725 x.Equal(y)
hosts.go 59 if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
  /build/soong/third_party/zip/
zip_test.go 61 if !outTime.Equal(testTime) {
215 if !bytes.Equal(buf, all[i:i+j]) {
319 if !bytes.Equal(gotEnd, end) {
  /build/blueprint/gotestrunner/
gotestrunner.go 43 if bytes.Equal(buf, []byte("PASS\n")) {
  /external/flatbuffers/tests/
go_test.go 155 if got := monster.Name(); !bytes.Equal([]byte("MyMonster"), got) {
166 // check that new allocs equal given ones:
200 // check that new allocs equal given ones:
229 if got := monster2.Name(); !bytes.Equal([]byte("Fred"), got) {
287 if got := monster.Testarrayofstring(0); !bytes.Equal([]byte("test1"), got) {
291 if got := monster.Testarrayofstring(1); !bytes.Equal([]byte("test2"), got) {
569 if !bytes.Equal(want, got) {
1107 if got := stat.Id(); !bytes.Equal([]byte("MyStat"), got) {
    [all...]
  /external/golang-protobuf/proto/
text_parser_test.go 575 if !Equal(pb, exp) {
590 if !Equal(m, want) {
623 if !Equal(m, want) {
635 if !Equal(m, want) {
  /external/pdfium/xfa/fwl/theme/
cfwl_widgettp.cpp 268 bool CFWL_FontData::Equal(const WideStringView& wsFontFamily,
318 if (pData->Equal(wsFontFamily, dwFontStyles, wCodePage))
  /external/tensorflow/tensorflow/compiler/xla/
layout_util.cc 331 /* static */ bool LayoutUtil::Equal(const Layout& lhs, const Layout& rhs) {
442 LayoutUtil::Equal(lhs.layout(), rhs.layout());
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_instruction_test.cc 725 EXPECT_TRUE(ShapeUtil::Equal(clone01->outfeed_shape(), shape01));
726 EXPECT_TRUE(ShapeUtil::Equal(clone10->outfeed_shape(), shape10));
743 EXPECT_TRUE(ShapeUtil::Equal(tuple_clone->shape(), tuple->shape()));
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
long_test.go 87 if !bytes.Equal(b1.Bytes(), b2.Bytes()) {
  /prebuilts/go/darwin-x86/src/crypto/x509/
cert_pool.go 76 if s.certs[c].Equal(cert) {
pkcs8_test.go 104 if !bytes.Equal(derBytes, reserialised) {
  /prebuilts/go/darwin-x86/src/go/doc/
doc_test.go 136 if !bytes.Equal(got, want) {
  /prebuilts/go/darwin-x86/src/net/
hosts.go 59 if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprog/
numcpu_freebsd.go 46 if bytes.Equal(output, []byte("1\n")) == false {
  /prebuilts/go/darwin-x86/src/syscall/
creds_test.go 118 if !bytes.Equal(oob, oob2) {
  /prebuilts/go/linux-x86/src/cmd/gofmt/
long_test.go 87 if !bytes.Equal(b1.Bytes(), b2.Bytes()) {
  /prebuilts/go/linux-x86/src/crypto/x509/
cert_pool.go 76 if s.certs[c].Equal(cert) {
pkcs8_test.go 104 if !bytes.Equal(derBytes, reserialised) {
  /prebuilts/go/linux-x86/src/go/doc/
doc_test.go 136 if !bytes.Equal(got, want) {
  /prebuilts/go/linux-x86/src/runtime/testdata/testprog/
numcpu_freebsd.go 46 if bytes.Equal(output, []byte("1\n")) == false {
  /prebuilts/go/linux-x86/src/syscall/
creds_test.go 118 if !bytes.Equal(oob, oob2) {
  /external/boringssl/src/ssl/test/runner/
handshake_messages.go 300 func (m *clientHelloMsg) equal(i interface{}) bool { func
306 return bytes.Equal(m.raw, m1.raw) &&
309 bytes.Equal(m.random, m1.random) &&
310 bytes.Equal(m.sessionId, m1.sessionId) &&
311 bytes.Equal(m.cookie, m1.cookie) &&
313 bytes.Equal(m.compressionMethods, m1.compressionMethods) &&
318 bytes.Equal(m.supportedPoints, m1.supportedPoints) &&
323 bytes.Equal(m.pskKEModes, m1.pskKEModes) &&
326 bytes.Equal(m.tls13Cookie, m1.tls13Cookie) &&
328 bytes.Equal(m.sessionTicket, m1.sessionTicket) &
    [all...]
  /art/compiler/optimizing/
load_store_elimination.cc 594 bool Equal(HInstruction* heap_value, HInstruction* value) {
608 return Equal(real_heap_value, value);
633 if (Equal(heap_value, value)) {
671 if (Equal(heap_values[i], value)) {
    [all...]

Completed in 1341 milliseconds

1 2 3 4 5 6 7 891011>>