Searched refs:compare (Results 1 - 25 of 151) sorted by relevance

1234567

/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dstore-test.c50 compare(const char *name, krb5_storage *sp, void *expected, size_t len) function
81 nerr += compare("Integer", sp, "\x1\x2\x3\x4", 4);
86 nerr += compare("Integer (LE)", sp, "\x4\x3\x2\x1", 4);
91 nerr += compare("Integer (BE)", sp, "\x1\x2\x3\x4", 4);
103 nerr += compare("Integer (host)", sp, data, 4);
110 nerr += compare("Principal", sp, "\x0\x0\x0\x1"
H A Dkrb5_ccapi.h152 cc_int32 (*compare)(cc_credentials_t, cc_credentials_t, cc_uint32*); member in struct:cc_credentials_functions
195 cc_int32 (*compare)(cc_ccache_t, cc_ccache_t, cc_uint32*); member in struct:cc_ccache_functions
220 cc_int32 (*compare)(cc_context_t, cc_context_t, cc_uint32*); member in struct:cc_context_functions
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DPriorityQueue.h30 explicit PriorityQueue(const Compare &compare = Compare(),
32 : std::priority_queue<T, Sequence, Compare>(compare, sequence)
37 const Compare &compare = Compare(),
39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dmtsm.cpp42 void int_value::diff(FILE *fp, const char *s, int_value compare) argument
44 if (differs(compare)) {
48 fputs(i_to_a(compare.value), fp);
50 value = compare.value;
74 int int_value::differs(int_value compare) argument
76 return compare.is_known
77 && (!is_known || value != compare.value);
88 void bool_value::diff(FILE *fp, const char *s, bool_value compare) argument
90 if (differs(compare)) {
94 value = compare
109 diff(FILE *fp, const char *s, units_value compare) argument
130 differs(units_value compare) argument
145 diff(FILE *fp, const char *s, string_value compare) argument
169 differs(string_value compare) argument
199 flush(FILE *fp, statem *compare) argument
[all...]
/freebsd-9.3-release/libexec/bootpd/
H A Dhash.c196 hash_Exists(hashtable, hashcode, compare, key)
199 hash_cmpfp compare;
206 if ((*compare) (key, memberptr->data)) {
219 * to determine the bucket number, and "compare" and "key" to determine
228 hash_Insert(hashtable, hashcode, compare, key, element)
231 hash_cmpfp compare;
237 if (hash_Exists(hashtable, hashcode, compare, key)) {
260 hash_Delete(hashtable, hashcode, compare, key, free_data)
263 hash_cmpfp compare;
280 while (memberptr && (*compare) (ke
[all...]
/freebsd-9.3-release/crypto/heimdal/packages/debian/
H A Dheimdal-servers-x.postinst21 if [ -n "$2" ] && dpkg --compare-versions "$2" ge 0.2h-1; then
H A Dheimdal-servers.postinst34 if [ -n "$2" ] && dpkg --compare-versions "$2" ge 0.3e-4; then
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dheap.c60 ! heap->compare(heap->array[(i)], \
71 isc_heapcompare_t compare; member in struct:isc_heap
76 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare, argument
83 REQUIRE(compare != NULL);
98 heap->compare = compare;
150 i > 1 && heap->compare(elt, heap->array[p]) ;
171 if (j < size && heap->compare(heap->array[j+1],
174 if (heap->compare(elt, heap->array[j]))
221 less = heap->compare(el
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dheap.c60 ! heap->compare(heap->array[(i)], \
71 isc_heapcompare_t compare; member in struct:isc_heap
76 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare, argument
83 REQUIRE(compare != NULL);
98 heap->compare = compare;
150 i > 1 && heap->compare(elt, heap->array[p]) ;
171 if (j < size && heap->compare(heap->array[j+1],
174 if (heap->compare(elt, heap->array[j]))
221 less = heap->compare(el
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp31 return LHSS->getName().compare(RHSS->getName());
/freebsd-9.3-release/contrib/mtree/
H A DMakefile10 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c specspec.c \
H A Dextern.h63 int compare(NODE *, FTSENT *);
/freebsd-9.3-release/usr.sbin/mtree/
H A Dextern.h35 int compare(char *, NODE *, FTSENT *);
H A DMakefile10 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
/freebsd-9.3-release/contrib/nvi/tcl_scripts/
H A Dmailprocs.tcl6 if {[string compare [lindex [split $line :] 0] "To"] == 0} {
20 if {[string compare $target $name] == 0} {
60 if {[string compare $target [string trim $address]] == 0} {
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dheap.h55 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare,
67 *\li "compare" is a function which takes two void * arguments and
/freebsd-9.3-release/contrib/ofed/libmlx4/src/
H A Dwqe.h110 uint64_t compare; member in struct:mlx4_wqe_atomic_seg
/freebsd-9.3-release/lib/libc/mips/string/
H A Dbcmp.S59 xor v0, a0, a1 # compare low two bits of addresses
78 lw v0, 0(a0) # compare words
92 lbu v0, 0(a0) # compare bytes until a1 word aligned
104 LWHI v0, 0(a0) # compare words a0 unaligned, a1 aligned
H A Dstrcmp.S52 lbu t0, 0(a0) # get two bytes and compare them
/freebsd-9.3-release/tools/tools/zfsboottest/
H A DMakefile18 -W -Wextra -Wno-sign-compare -Wno-unused-parameter
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dheap.h55 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare,
65 *\li "compare" is a function which takes two void * arguments and
/freebsd-9.3-release/usr.bin/look/
H A Dlook.c82 int compare(wchar_t *, unsigned char *, unsigned char *);
251 if (compare(string, p, back) == GREATER)
276 switch (compare(string, front, back)) {
295 for (; front < back && compare(string, front, back) == EQUAL; ++front) {
318 compare(wchar_t *s1, unsigned char *s2, unsigned char *back) function
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dbasic_string.h1927 * @param str String to compare against.
1933 * compare as the smallest of size() and str.size(). The function
1934 * then compares the two strings by calling traits::compare(data(),
1939 compare(const basic_string& __str) const function in class:basic_string
1945 int __r = traits_type::compare(_M_data(), __str.data(), __len);
1955 * @param str String to compare against.
1962 * rlen of the strings to compare as the smallest of the length of the
1964 * strings by calling traits::compare(substring.data(),str.data(),rlen).
1969 compare(size_type __pos, size_type __n, const basic_string& __str) const;
1975 * @param str String to compare agains
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dvstring.h1655 * @param str String to compare against.
1661 * compare as the smallest of size() and str.size(). The function
1662 * then compares the two strings by calling traits::compare(data(),
1667 compare(const __versa_string& __str) const function in class:__versa_string
1676 int __r = traits_type::compare(this->_M_data(), __str.data(), __len);
1686 * @param str String to compare against.
1693 * rlen of the strings to compare as the smallest of the length of the
1695 * strings by calling traits::compare(substring.data(),str.data(),rlen).
1700 compare(size_type __pos, size_type __n,
1707 * @param str String to compare agains
[all...]
/freebsd-9.3-release/contrib/ofed/libmthca/src/
H A Dwqe.h101 uint64_t compare; member in struct:mthca_atomic_seg

Completed in 203 milliseconds

1234567