HomeSort by: relevance | last modified time | path
    Searched defs:verify (Results 1 - 25 of 129) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl2/xcvs/dist/lib/
test-getdate.sh 36 verify () function
223 verify getdate-1
274 verify getdate-2
332 verify getdate-3
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
verify.h 30 integer constant expression contexts. verify (R) is for declaration
53 the verify macro:
55 void function (int n) { verify (n < 0); }
57 * For the verify macro, the struct verify_type__ will need to
69 two uses of the verify macro would yield colliding declarations
77 But this has the problem that two invocations of verify from
113 # define verify(R) \
122 /* Verify requirement R at compile-time, as an integer constant expression.
136 /* Verify requirement R at compile-time, as a declaration without a
139 # define verify(R) extern int (* verify_function__ (void)) [verify_true (R) macro
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/test/
test_read_format_zip_7075_utf8_paths.c 32 verify(struct archive *a) { function
82 /* Verify with seeking reader. */
87 verify(a);
91 /* Verify with streaming reader. */
97 verify(a);
test_read_format_zip_comment_stored.c 32 verify(const char *refname) function
71 verify("test_read_format_zip_comment_stored_1.zip");
72 verify("test_read_format_zip_comment_stored_2.zip");
test_read_format_zip_extra_padding.c 51 static void verify(struct archive *a) { function
73 /* Verify with seeking reader. */
78 verify(a);
82 /* Verify with streaming reader. */
88 verify(a);
test_read_format_zip_msdos.c 44 static void verify(struct archive *a, int streaming) { function
96 /* Verify with seeking reader. */
101 verify(a, 0);
105 /* Verify with streaming reader. */
111 verify(a, 1);
test_compat_gzip.c 28 * Verify our ability to read sample files compatibly with gunzip.
41 verify(const char *name) function
72 /* Verify the end-of-archive. */
75 /* Verify that the format detection worked. */
90 verify("test_compat_gzip_1.tgz");
93 verify("test_compat_gzip_2.tgz");
test_compat_lz4.c 29 * Verify our ability to read sample files compatibly with 'lz4 -d'.
42 verify(const char *name, const char *n[]) function
73 /* Verify the end-of-archive. */
76 /* Verify that the format detection worked. */
93 verify("test_compat_lz4_1.tar.lz4.uu", n);
96 verify("test_compat_lz4_2.tar.lz4.uu", n);
98 verify("test_compat_lz4_3.tar.lz4.uu", n);
100 verify("test_compat_lz4_B4.tar.lz4.uu", n2);
102 verify("test_compat_lz4_skippable_frames_B4.tar.lz4.uu", n2);
104 verify("test_compat_lz4_B5.tar.lz4.uu", n2)
    [all...]
test_read_format_lha.c 135 verify(const char *refname, int posix) function
157 /* Verify directory1. */
174 /* Verify directory2. */
189 /* Verify symbolic link file1. */
201 /* Verify symbolic link file2. */
214 /* Verify regular file1. */
227 /* Verify regular file2. */
243 /* Verify the number of files read. */
253 /* Verify the number of files read. */
260 /* Verify encryption status *
    [all...]
test_read_format_cab.c 177 verify(const char *refname, enum comp_type comp) function
193 /* Verify regular empty. */
204 /* Verify regular zero.
230 /* Verify regular file1. */
242 /* Verify regular file2. */
263 /* Verify archive format. */
297 /* Verify regular empty. */
306 /* Verify regular file1. */
311 /* Verify regular file2. */
330 /* Verify archive format. *
    [all...]
  /src/external/gpl2/diffutils/dist/lib/
strtoimax.c 43 /* Verify a requirement at compile-time (unlike assert, which is runtime). */
44 #define verify(name, assertion) struct name { char a[(assertion) ? 1 : -1]; } macro
91 verify (size_is_that_of_long_or_long_long,
98 verify (size_is_that_of_long,
  /src/usr.bin/chpass/
edit.c 73 if (verify(tempname, pw))
146 verify(char *tempname, struct passwd *pw) function
  /src/crypto/external/apache2/openssl/dist/demos/signature/
rsa_pss_direct.c 126 static int verify(OSSL_LIB_CTX *libctx, const unsigned char *sig, size_t sig_len) function
172 /* Verify signature. */
176 fprintf(stderr, "Failed to verify signature; "
199 if (verify(libctx, sig, sig_len) == 0)
rsa_pss_hash.c 114 static int verify(OSSL_LIB_CTX *libctx, const unsigned char *sig, size_t sig_len) function
158 /* Verify signature. */
160 fprintf(stderr, "Failed to verify signature; "
182 if (verify(libctx, sig, sig_len) == 0)
  /src/crypto/external/bsd/openssl/dist/demos/signature/
rsa_pss_direct.c 124 static int verify(OSSL_LIB_CTX *libctx, const unsigned char *sig, size_t sig_len) function
170 /* Verify signature. */
173 fprintf(stderr, "Failed to verify signature; "
196 if (verify(libctx, sig, sig_len) == 0)
rsa_pss_hash.c 114 static int verify(OSSL_LIB_CTX *libctx, const unsigned char *sig, size_t sig_len) function
157 /* Verify signature. */
159 fprintf(stderr, "Failed to verify signature; "
181 if (verify(libctx, sig, sig_len) == 0)
  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
AMDGPUMetadataVerifier.cpp 266 bool MetadataVerifier::verify(msgpack::DocNode &HSAMetadataRoot) { function in class:llvm::AMDGPU::MetadataVerifier
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
RegisterBank.cpp 32 bool RegisterBank::verify(const TargetRegisterInfo &TRI) const { function in class:RegisterBank
39 // Verify that the register bank covers all the sub classes of the
51 // Verify that the Size of the register bank is big enough to cover
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 95 // Verify the live intervals in this union and add them to the visited set.
96 void LiveIntervalUnion::verify(LiveVirtRegBitSet& VisitedVRegs) { function in class:LiveIntervalUnion
  /src/usr.sbin/mtree/
verify.c 1 /* $NetBSD: verify.c,v 1.50 2024/12/11 14:52:26 christos Exp $ */
39 static char sccsid[] = "@(#)verify.c 8.1 (Berkeley) 6/6/93";
41 __RCSID("$NetBSD: verify.c,v 1.50 2024/12/11 14:52:26 christos Exp $");
67 verify(FILE *fi) function
  /src/external/gpl3/gdb/dist/gnulib/import/
verify.h 58 If _Static_assert works, verify (R) uses it directly. Similarly,
83 the verify macro:
85 void function (int n) { verify (n < 0); }
87 * For the verify macro, the struct _gl_verify_type will need to
99 two uses of the verify macro would yield colliding declarations
107 But this has the problem that two invocations of verify from
147 * GCC warns if -Wnested-externs is enabled and 'verify' is used
172 /* Verify requirement R at compile-time, as an integer constant expression
200 /* Verify requirement R at compile-time, as a declaration without a
258 integer constant expression contexts. verify (R) is for declaratio
274 # define verify macro
276 # define verify macro
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
verify.h 58 If _Static_assert works, verify (R) uses it directly. Similarly,
83 the verify macro:
85 void function (int n) { verify (n < 0); }
87 * For the verify macro, the struct _gl_verify_type will need to
99 two uses of the verify macro would yield colliding declarations
107 But this has the problem that two invocations of verify from
147 * GCC warns if -Wnested-externs is enabled and 'verify' is used
172 /* Verify requirement R at compile-time, as an integer constant expression
200 /* Verify requirement R at compile-time, as a declaration without a
258 integer constant expression contexts. verify (R) is for declaratio
274 # define verify macro
276 # define verify macro
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
BlockVerifier.cpp 182 Error BlockVerifier::verify() { function in class:llvm::xray::BlockVerifier
  /src/external/gpl2/lvm2/dist/include/
label.h 70 int (*verify) (struct labeller * l, void *buf, uint64_t sector); member in struct:label_ops
  /src/external/gpl2/lvm2/dist/lib/label/
label.h 70 int (*verify) (struct labeller * l, void *buf, uint64_t sector); member in struct:label_ops

Completed in 29 milliseconds

1 2 3 4 5 6