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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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
equal_test.go 18 // equal does not read across the boundary and cause a page
44 Equal(b[i:i+j], b[i+pagesize-j:i+pagesize])
45 Equal(b[i+pagesize-j:i+pagesize], b[i:i+j])
bytes_amd64.go 33 if Equal(sep, s) {
58 if Equal(s[i:i+n], sep) {
82 if h == hashsep && Equal(s[:n], sep) {
90 if h == hashsep && Equal(s[i-n:i], sep) {
bytes_s390x.go 36 if Equal(sep, s) {
61 if Equal(s[i:i+n], sep) {
85 if h == hashsep && Equal(s[:n], sep) {
93 if h == hashsep && Equal(s[i-n:i], sep) {
bytes_generic.go 35 if Equal(s[i:i+n], sep) {
  /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
equal_test.go 18 // equal does not read across the boundary and cause a page
44 Equal(b[i:i+j], b[i+pagesize-j:i+pagesize])
45 Equal(b[i+pagesize-j:i+pagesize], b[i:i+j])
bytes_amd64.go 33 if Equal(sep, s) {
58 if Equal(s[i:i+n], sep) {
82 if h == hashsep && Equal(s[:n], sep) {
90 if h == hashsep && Equal(s[i-n:i], sep) {
bytes_s390x.go 36 if Equal(sep, s) {
61 if Equal(s[i:i+n], sep) {
85 if h == hashsep && Equal(s[:n], sep) {
93 if h == hashsep && Equal(s[i-n:i], sep) {
bytes_generic.go 35 if Equal(s[i:i+n], sep) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
builtin_test.go 28 if !bytes.Equal(old, new) {
  /prebuilts/go/darwin-x86/src/crypto/cipher/
xor_test.go 22 if !bytes.Equal(d1, d2) {
23 t.Error("not equal")
cfb_test.go 76 if !bytes.Equal(ciphertext, expected) {
84 if !bytes.Equal(plaintextCopy, plaintextCopy) {
110 if !bytes.Equal(plaintextCopy, plaintext) {
  /prebuilts/go/darwin-x86/src/crypto/rand/
example_test.go 24 fmt.Println(bytes.Equal(b, make([]byte, c)))
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
builtin_test.go 28 if !bytes.Equal(old, new) {
  /prebuilts/go/linux-x86/src/crypto/cipher/
xor_test.go 22 if !bytes.Equal(d1, d2) {
23 t.Error("not equal")
cfb_test.go 76 if !bytes.Equal(ciphertext, expected) {
84 if !bytes.Equal(plaintextCopy, plaintextCopy) {
110 if !bytes.Equal(plaintextCopy, plaintext) {
  /prebuilts/go/linux-x86/src/crypto/rand/
example_test.go 24 fmt.Println(bytes.Equal(b, make([]byte, c)))
  /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);
  /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/darwin-x86/src/encoding/hex/
hex_test.go 50 } else if !bytes.Equal(dst, test.dec) {
72 if !bytes.Equal(dst, test.dec) {
133 if !bytes.Equal(out.Bytes(), expectedHexDump) {
146 if !bytes.Equal(out, expectedHexDump) {
  /prebuilts/go/darwin-x86/src/hash/fnv/
fnv_test.go 73 if actual := hash.Sum(nil); !bytes.Equal(g.sum, actual) {
104 if a := h.Sum(nil); !bytes.Equal(sum, a) {
110 if a := h.Sum(nil); !bytes.Equal(sum, a) {
117 if a := h.Sum(nil); !bytes.Equal(sum, a) {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue9537.dir/
b.go 28 if !bytes.Equal(t1, t2) {
  /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 {

Completed in 273 milliseconds

1 2 3 4 5 6 7 8 91011>>