HomeSort by relevance Sort by last modified time
    Searched refs:Equal (Results 51 - 75 of 482) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/crypto/rsa/
pkcs1v15_test.go 70 if !bytes.Equal(out, want) {
104 if !bytes.Equal(plaintext, in) {
146 if !bytes.Equal(key, want) {
162 if test.out != "FAIL" && !bytes.Equal(plaintext, []byte(test.out)) {
206 if !bytes.Equal(s, expected) {
249 if !bytes.Equal(sig, expectedSig) {
  /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/crypto/rsa/
pkcs1v15_test.go 70 if !bytes.Equal(out, want) {
104 if !bytes.Equal(plaintext, in) {
146 if !bytes.Equal(key, want) {
162 if test.out != "FAIL" && !bytes.Equal(plaintext, []byte(test.out)) {
206 if !bytes.Equal(s, expected) {
249 if !bytes.Equal(sig, expectedSig) {
  /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]) {
  /external/brotli/go/cbrotli/
cbrotli_test.go 22 if !bytes.Equal(uncompressed, wantOriginalData) {
161 if !bytes.Equal(decompressed, input) {
185 if got := decodedOutput.Bytes(); !bytes.Equal(got, content) {
202 if !bytes.Equal(decoded, content) {
262 if !bytes.Equal(decoded, input) {
  /external/boringssl/src/ssl/test/runner/
chacha20_poly1305_test.go 78 if !bytes.Equal(out, expected) {
129 } else if !bytes.Equal(out, input) {
134 if !bytes.Equal(out, output) {
  /prebuilts/go/darwin-x86/src/crypto/tls/
ticket.go 30 func (s *sessionState) equal(i interface{}) bool { func
38 !bytes.Equal(s.masterSecret, s1.masterSecret) {
47 if !bytes.Equal(s.certificates[i], s1.certificates[i]) {
170 if bytes.Equal(keyName, candidateKey.keyName[:]) {
  /prebuilts/go/linux-x86/src/crypto/tls/
ticket.go 30 func (s *sessionState) equal(i interface{}) bool { func
38 !bytes.Equal(s.masterSecret, s1.masterSecret) {
47 if !bytes.Equal(s.certificates[i], s1.certificates[i]) {
170 if bytes.Equal(keyName, candidateKey.keyName[:]) {
  /external/pdfium/xfa/fwl/theme/
cfwl_widgettp.h 109 bool Equal(const CFX_WideStringC& wsFontFamily,
  /external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
MCAsmLexer.h 48 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/v8/src/
bignum.h 51 static bool Equal(const Bignum& a, const Bignum& b) {
  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 175 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
254 if (Equal(approx->last_value_, value)) {
357 if (!Equal(approx->last_value_, value)) {
373 bool Equal(HValue* a, HValue* b) {
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cbc_aes_test.go 80 if !bytes.Equal(test.out, data) {
100 if !bytes.Equal(test.in, data) {
ctr_aes_test.go 83 if out := tt.out[0:len(in)]; !bytes.Equal(out, encrypted) {
93 if out := tt.in[0:len(in)]; !bytes.Equal(out, plain) {
ofb_test.go 83 if !bytes.Equal(ciphertext, tt.out[:len(plaintext)]) {
93 if !bytes.Equal(plaintext, tt.in[:len(ciphertext)]) {
  /prebuilts/go/linux-x86/src/crypto/cipher/
cbc_aes_test.go 80 if !bytes.Equal(test.out, data) {
100 if !bytes.Equal(test.in, data) {
ctr_aes_test.go 83 if out := tt.out[0:len(in)]; !bytes.Equal(out, encrypted) {
93 if out := tt.in[0:len(in)]; !bytes.Equal(out, plain) {
ofb_test.go 83 if !bytes.Equal(ciphertext, tt.out[:len(plaintext)]) {
93 if !bytes.Equal(plaintext, tt.in[:len(ciphertext)]) {
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509.go 392 if !ai.Algorithm.Equal(oidSignatureRSAPSS) {
394 if ai.Algorithm.Equal(details.oid) {
422 if !bytes.Equal(params.Hash.Parameters.FullBytes, asn1NULL) ||
423 !params.MGF.Algorithm.Equal(oidMGF1) ||
424 !mgf1HashFunc.Algorithm.Equal(params.Hash.Algorithm) ||
425 !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1NULL) ||
431 case params.Hash.Algorithm.Equal(oidSHA256) && params.SaltLength == 32:
433 case params.Hash.Algorithm.Equal(oidSHA384) && params.SaltLength == 48:
435 case params.Hash.Algorithm.Equal(oidSHA512) && params.SaltLength == 64:
464 case oid.Equal(oidPublicKeyRSA)
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509.go 392 if !ai.Algorithm.Equal(oidSignatureRSAPSS) {
394 if ai.Algorithm.Equal(details.oid) {
422 if !bytes.Equal(params.Hash.Parameters.FullBytes, asn1NULL) ||
423 !params.MGF.Algorithm.Equal(oidMGF1) ||
424 !mgf1HashFunc.Algorithm.Equal(params.Hash.Algorithm) ||
425 !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1NULL) ||
431 case params.Hash.Algorithm.Equal(oidSHA256) && params.SaltLength == 32:
433 case params.Hash.Algorithm.Equal(oidSHA384) && params.SaltLength == 48:
435 case params.Hash.Algorithm.Equal(oidSHA512) && params.SaltLength == 64:
464 case oid.Equal(oidPublicKeyRSA)
    [all...]
  /build/kati/
strutil.go 142 return bytes.Equal(pat, str)
181 if bytes.Equal(str, pat) {
190 if bytes.Equal(trimed, in) {
197 if bytes.Equal(trimed, in) {
  /build/soong/third_party/zip/
android_test.go 67 if !bytes.Equal(got, testcase.out) {
  /external/webrtc/webrtc/modules/
module_common_types_unittest.cc 17 TEST(IsNewerSequenceNumber, Equal) {
46 TEST(IsNewerTimestamp, Equal) {
  /prebuilts/go/darwin-x86/misc/cgo/test/
buildid_linux.go 66 if typ == 3 && namesz == 4 && bytes.Equal(d[12:16], []byte("GNU\000")) {
  /prebuilts/go/darwin-x86/src/bytes/
example_test.go 40 // a less or equal b
46 // a greater or equal b
49 // Prefer Equal to Compare for equality comparisons.
50 if bytes.Equal(a, b) {
51 // a equal b
53 if !bytes.Equal(a, b) {
54 // a not equal b
66 if i < len(haystack) && bytes.Equal(haystack[i], needle) {

Completed in 746 milliseconds

1 23 4 5 6 7 8 91011>>