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

1 2 3 4 5 6 7

  /external/boringssl/src/ssl/test/runner/poly1305/
poly1305.go 26 // Verify returns true if mac is a valid authenticator for m with the given
28 func Verify(mac *[16]byte, m []byte, key *[32]byte) bool {
  /external/testng/src/test/java/test/tmp/verify/
Verify.java 1 package test.tmp.verify;
8 public @interface Verify {
  /external/testng/src/test/java/test/verify/
Verify.java 1 package test.verify;
11 public @interface Verify {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305.go 26 // Verify returns true if mac is a valid authenticator for m with the given
28 func Verify(mac *[16]byte, m []byte, key *[32]byte) bool {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305.go 26 // Verify returns true if mac is a valid authenticator for m with the given
28 func Verify(mac *[16]byte, m []byte, key *[32]byte) bool {
  /external/libchrome/crypto/
hmac.cc 38 bool HMAC::Verify(const base::StringPiece& data,
  /system/keymaster/
hmac.cpp 72 bool HmacSha256::Verify(const Buffer& data, const Buffer& digest) const {
73 return Verify(data.peek_read(), data.available_read(), digest.peek_read(),
77 bool HmacSha256::Verify(const uint8_t* data, size_t data_len, const uint8_t* digest,
  /external/guava/guava/src/com/google/common/base/
Verify.java 33 * Verify.verify(bill.status() == Status.UNPAID,
78 * format string, {@code Verify} will still behave as expected, and will still include all argument
91 public final class Verify {
96 public static void verify(boolean expression) { method in class:Verify
118 public static void verify( method in class:Verify
156 verify(reference != null, errorMessageTemplate, errorMessageArgs);
163 private Verify() {}
  /external/pdfium/xfa/fxfa/parser/
cscript_signaturepseudomodel.cpp 26 void CScript_SignaturePseudoModel::Verify(CFXJSE_Arguments* pArguments) {
29 ThrowParamCountMismatchException(L"verify");
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer_unittest.cc 30 void Verify(NonlinearBeamformer* bf, float target_azimuth_radians) {
48 Verify(bf, target_azimuth_radians);
60 Verify(&bf, static_cast<float>(M_PI) / 2.f);
  /frameworks/base/tools/aapt2/link/
ManifestFixer_test.cpp 58 std::unique_ptr<xml::XmlResource> Verify(const StringPiece& str) {
74 EXPECT_EQ(nullptr, Verify("<other-tag />"));
75 EXPECT_EQ(nullptr, Verify("<ns:manifest xmlns:ns=\"com\" />"));
76 EXPECT_NE(nullptr, Verify("<manifest package=\"android\"></manifest>"));
80 EXPECT_NE(nullptr, Verify("<manifest package=\"android\" />"));
81 EXPECT_NE(nullptr, Verify("<manifest package=\"com.android\" />"));
82 EXPECT_NE(nullptr, Verify("<manifest package=\"com.android.google\" />"));
84 Verify("<manifest package=\"com.android.google.Class$1\" />"));
85 EXPECT_EQ(nullptr, Verify("<manifest "
89 EXPECT_EQ(nullptr, Verify("<manifest package=\"@string/str\" />"))
    [all...]
  /art/dexoptanalyzer/
dexoptanalyzer_test.cc 70 // Verify that the output of dexoptanalyzer for the given arguments is the same
72 void Verify(const std::string& dex_file,
91 Verify(dex_location, CompilerFilter::kSpeed);
92 Verify(dex_location, CompilerFilter::kExtract);
93 Verify(dex_location, CompilerFilter::kQuicken);
94 Verify(dex_location, CompilerFilter::kSpeedProfile);
103 Verify(dex_location, CompilerFilter::kSpeed);
104 Verify(dex_location, CompilerFilter::kQuicken);
105 Verify(dex_location, CompilerFilter::kExtract);
106 Verify(dex_location, CompilerFilter::kEverything)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/dsa/
dsa.go 257 // Verify verifies the signature in r, s of hash using the public key, pub. It
263 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
  /prebuilts/go/linux-x86/src/crypto/dsa/
dsa.go 257 // Verify verifies the signature in r, s of hash using the public key, pub. It
263 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
  /external/icu/icu4c/source/test/intltest/
tsdcfmsy.cpp 202 Verify(34.5, (UnicodeString)"00.00", sym, (UnicodeString)"34.50");
204 Verify(34.5, (UnicodeString)"00.00", sym, (UnicodeString)"34S50");
206 Verify(34.5, (UnicodeString)"00 %", sym, (UnicodeString)"3450 P");
208 Verify(34.5, CharsToUnicodeString("\\u00a4##.##"), sym, (UnicodeString)"D34.5");
210 Verify(3456.5, (UnicodeString)"0,000.##", sym, (UnicodeString)"3|456S5");
248 Verify(1234567.25, "#,##0.##", *lastResort, "1,234,567.25");
251 void IntlTestDecimalFormatSymbols::Verify(double value, const UnicodeString& pattern,
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
itoatest.cpp 70 static void Verify(void(*f)(T, char*), char* (*g)(T, char*)) {
141 Verify(u32toa_naive, u32toa);
145 Verify(i32toa_naive, i32toa);
149 Verify(u64toa_naive, u64toa);
153 Verify(i64toa_naive, i64toa);
  /prebuilts/go/darwin-x86/src/crypto/ecdsa/
ecdsa.go 225 // Verify verifies the signature in r, s of hash using the public key, pub. Its
227 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
  /prebuilts/go/linux-x86/src/crypto/ecdsa/
ecdsa.go 225 // Verify verifies the signature in r, s of hash using the public key, pub. Its
227 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 89 /// Verify - Check internal consistency of this data structure. If the
92 bool PHITransAddr::Verify() const {
320 assert(Verify() && "Invalid PHITransAddr!");
326 assert(Verify() && "Invalid PHITransAddr!");
  /external/llvm/lib/IR/
InlineAsm.cpp 45 assert(Verify(getFunctionType(), constraints) &&
245 /// Verify - Verify that the specified constraint string is reasonable for the
247 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) {
  /external/swiftshader/third_party/LLVM/lib/Analysis/
PHITransAddr.cpp 87 /// Verify - Check internal consistency of this data structure. If the
90 bool PHITransAddr::Verify() const {
323 assert(Verify() && "Invalid PHITransAddr!");
325 assert(Verify() && "Invalid PHITransAddr!");
  /external/swiftshader/third_party/LLVM/lib/VMCore/
InlineAsm.cpp 45 assert(Verify(getFunctionType(), constraints) &&
243 /// Verify - Verify that the specified constraint string is reasonable for the
245 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) {
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 76 Verify();
138 void LGapResolver::Verify() {
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 78 Verify();
132 void LGapResolver::Verify() {
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 61 Verify();
123 void LGapResolver::Verify() {

Completed in 801 milliseconds

1 2 3 4 5 6 7