Searched refs:comp (Results 26 - 50 of 199) sorted by relevance

12345678

/freebsd-13-stable/contrib/unbound/contrib/ios/
H A Dinstall_openssl.sh34 if ! ./Configure "$OPENSSL_HOST" -DNO_FORK no-comp no-asm no-hw no-engine no-tests no-unit-test \
/freebsd-13-stable/contrib/apr/tables/
H A Dapr_skiplist.c250 apr_skiplist_compare comp,
254 apr_skiplist_add_index(sl, comp, compk);
257 sl->compare = comp;
263 apr_skiplist_compare comp,
269 apr_skiplist_find(sl->index, (void *)comp, &m);
274 apr_skiplist_set_compare(ni, comp, compk);
302 apr_skiplist_compare comp,
309 int compared = comp(data, m->next->data);
338 apr_skiplist_compare comp,
343 if (!comp) {
249 apr_skiplist_set_compare(apr_skiplist *sl, apr_skiplist_compare comp, apr_skiplist_compare compk) argument
262 apr_skiplist_add_index(apr_skiplist *sl, apr_skiplist_compare comp, apr_skiplist_compare compk) argument
300 skiplisti_find_compare(apr_skiplist *sl, void *data, apr_skiplistnode **ret, apr_skiplist_compare comp, int last) argument
336 find_compare(apr_skiplist *sli, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp, int last) argument
369 apr_skiplist_find_compare(apr_skiplist *sl, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp) argument
381 apr_skiplist_last_compare(apr_skiplist *sl, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp) argument
439 insert_compare(apr_skiplist *sl, void *data, apr_skiplist_compare comp, int add, apr_skiplist_freefunc myfree) argument
580 apr_skiplist_insert_compare(apr_skiplist *sl, void *data, apr_skiplist_compare comp) argument
594 apr_skiplist_add_compare(apr_skiplist *sl, void *data, apr_skiplist_compare comp) argument
608 apr_skiplist_replace_compare(apr_skiplist *sl, void *data, apr_skiplist_freefunc myfree, apr_skiplist_compare comp) argument
705 apr_skiplist_remove_compare(apr_skiplist *sli, void *data, apr_skiplist_freefunc myfree, apr_skiplist_compare comp) argument
[all...]
/freebsd-13-stable/contrib/mandoc/
H A Dmdoc.h116 int comp; /* -compact */ member in struct:mdoc_bd
123 int comp; /* -compact */ member in struct:mdoc_bl
/freebsd-13-stable/sys/ofed/include/rdma/
H A Drdmavt_mr.h88 struct completion comp; /* complete when refcount goes to zero */ member in struct:rvt_mregion
126 complete(&mr->comp);
/freebsd-13-stable/crypto/openssl/ssl/
H A Dssl_txt.c118 SSL_COMP *comp = NULL; local
120 if (!ssl_cipher_get_evp(x, NULL, NULL, NULL, NULL, &comp, 0))
122 if (comp == NULL) {
126 if (BIO_printf(bp, "\n Compression: %d (%s)", comp->id,
127 comp->name) <= 0)
H A Dssl_ciph.c15 #include <openssl/comp.h>
460 SSL_COMP *comp = NULL; local
467 comp = OPENSSL_malloc(sizeof(*comp));
468 if (comp != NULL) {
469 comp->method = method;
470 comp->id = SSL_COMP_ZLIB_IDX;
471 comp->name = COMP_get_name(method);
472 sk_SSL_COMP_push(ssl_comp_methods, comp);
488 size_t *mac_secret_size, SSL_COMP **comp, in
486 ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc, const EVP_MD **md, int *mac_pkey_type, size_t *mac_secret_size, SSL_COMP **comp, int use_etm) argument
1963 SSL_COMP *comp; local
2011 SSL_COMP_get_name(const COMP_METHOD *comp) argument
2020 SSL_COMP_get0_name(const SSL_COMP *comp) argument
2029 SSL_COMP_get_id(const SSL_COMP *comp) argument
[all...]
/freebsd-13-stable/usr.bin/comm/
H A Dcomm.c72 int comp, read1, read2; local
161 comp = strcmp(line1, line2);
163 comp = wcscoll(tline1, tline2);
170 if (!comp) {
178 if (comp < 0) {
/freebsd-13-stable/crypto/openssl/crypto/stack/
H A Dstack.c31 OPENSSL_sk_compfunc comp; member in struct:stack_st
36 OPENSSL_sk_compfunc old = sk->comp;
38 if (sk->comp != c)
40 sk->comp = c;
214 st->comp = c;
296 if (st->comp == NULL) {
305 qsort(st->data, st->num, sizeof(void *), st->comp);
310 r = OBJ_bsearch_ex_(&data, st->data, st->num, sizeof(void *), st->comp,
403 if (st != NULL && !st->sorted && st->comp != NULL) {
405 qsort(st->data, st->num, sizeof(void *), st->comp);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dsimple_ilist.h258 template <class Compare> void merge(simple_ilist &RHS, Compare comp);
264 template <class Compare> void sort(Compare comp);
270 void simple_ilist<T, Options...>::merge(simple_ilist &RHS, Compare comp) { argument
276 if (comp(*RI, *LI)) {
279 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); });
292 void simple_ilist<T, Options...>::sort(Compare comp) { argument
307 sort(comp);
308 RHS.sort(comp);
309 merge(RHS, comp);
H A DPriorityQueue.h70 std::make_heap(this->c.begin(), this->c.end(), this->comp);
/freebsd-13-stable/contrib/tcsh/
H A Dtc.disc.c105 int comp = getcompat(COMPAT_BSDTTY); local
107 if ((comp & COMPAT_BSDTTY) != COMPAT_BSDTTY) {
108 (void) setcompat(comp | COMPAT_BSDTTY);
/freebsd-13-stable/usr.sbin/services_mkdb/
H A Duniq.c47 static int comp(const char *, char **, size_t *);
77 if (!comp(line, &compline, &complen)) {
111 comp(const char *origline, char **compline, size_t *len) function
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dcomp.h26 int COMP_CTX_get_type(const COMP_CTX* comp);
/freebsd-13-stable/contrib/byacc/
H A Dvmsbuild.com23 $ comp = "__vaxc__=1"
30 $ comp = "__decc__=1"
45 $ comp = ""
49 $ comp = f$edit(p2, "UPCASE")
50 $ if "''comp'" .eqs. "VAXC"
54 $ if "''comp'" .eqs. "DECC"
84 $ if "''comp'" .eqs. "" then gosub decc_config
87 $ if "''comp'" .nes. "" then goto screen_config
104 $ comp = "__gcc__=1"
198 $ mms/ignore=warning/macro=('comp','mmsta
[all...]
/freebsd-13-stable/usr.sbin/ppp/
H A Dproto.c58 proto_Prepend(struct mbuf *bp, u_short proto, unsigned comp, int extra) argument
65 if (comp && cp[0] == 0)
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dwitness.h91 * If two witnesses are of equal rank and they have the samp comp
95 witness_comp_t *comp; member in struct:witness_s
97 /* Opaque data, passed to comp(). */
144 witness_comp_t *comp, void *opaque);
303 } else if (w->rank == witness->rank && (w->comp == NULL || w->comp !=
304 witness->comp || w->comp(w, w->opaque, witness, witness->opaque) >
/freebsd-13-stable/usr.bin/mt/
H A Dmt.c159 { "comp", MTCOMP, 0, NEED_2ARGS|ZERO_ALLOWED|IS_COMP },
204 static const char *comptostring(u_int32_t comp);
210 const struct commands *comp; local
240 for (comp = com;; comp++) {
241 if (comp->c_name == NULL)
243 if (strncmp(p, comp->c_name, len) == 0)
246 if((comp->c_flags & NEED_2ARGS) && argc != 2)
248 if(comp->c_flags & DISABLE_THIS) {
251 if (comp
552 comptostring(u_int32_t comp) argument
[all...]
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dt_regex_att.c260 geterror(const char *s, int *comp, int *exec) argument
290 *comp = 0;
295 *comp = nv[i].v;
484 int comp, exec; local
486 geterror(matches, &comp, &exec);
490 comp = exec = 0;
515 ATF_REQUIRE_MSG(c == comp,
/freebsd-13-stable/tests/sys/aio/
H A Daio_test.c260 aio_write_test(struct aio_context *ac, completion comp, struct sigevent *sev) argument
276 len = comp(&aio);
292 aio_writev_test(struct aio_context *ac, completion comp, struct sigevent *sev) argument
317 len = comp(&aio);
330 aio_read_test(struct aio_context *ac, completion comp, struct sigevent *sev) argument
347 len = comp(&aio);
359 aio_readv_test(struct aio_context *ac, completion comp, struct sigevent *sev) argument
384 len = comp(&aio);
409 aio_file_test(completion comp, struct sigevent *sev, bool vectored) argument
422 aio_writev_test(&ac, comp, se
465 aio_fifo_test(completion comp, struct sigevent *sev) argument
532 aio_unix_socketpair_test(completion comp, struct sigevent *sev, bool vectored) argument
599 aio_pty_test(completion comp, struct sigevent *sev) argument
665 aio_pipe_test(completion comp, struct sigevent *sev) argument
786 aio_md_test(completion comp, struct sigevent *sev, bool vectored) argument
1731 aio_zvol_test(completion comp, struct sigevent *sev, bool vectored) argument
[all...]
/freebsd-13-stable/usr.bin/uniq/
H A Duniq.c102 int ch, comp; local
206 comp = inlcmp(thisline, prevline);
208 comp = 1;
210 comp = wcscoll(tthis, tprev);
212 if (comp) {
/freebsd-13-stable/contrib/ntp/ntpd/
H A Drefclock_irig.c227 double comp[SIZE]; /* decompanding table */ member in struct:irigunit
363 up->comp[0] = up->comp[OFFSET] = 0.;
364 up->comp[1] = 1; up->comp[OFFSET + 1] = -1.;
365 up->comp[2] = 3; up->comp[OFFSET + 2] = -3.;
368 up->comp[i] = up->comp[i - 1] + step;
369 up->comp[OFFSE
[all...]
/freebsd-13-stable/contrib/less/
H A Dmkutable48 foreach my $comp (@force_compose) {
49 my ($lo,$hi) = @$comp;
/freebsd-13-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dt_opencrypto.sh116 atf_test_case comp cleanup
265 atf_add_test_case comp
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dprincipal.c193 heim_general_string *comp; local
239 comp = calloc(ncomp, sizeof(*comp));
240 if (comp == NULL) {
249 free (comp);
282 comp[n] = malloc(q - start + 1);
283 if (comp[n] == NULL) {
289 memcpy(comp[n], start, q - start);
290 comp[n][q - start] = 0;
338 comp[
748 append_component(krb5_context context, krb5_principal p, const char *comp, size_t comp_len) argument
768 memcpy (princ_ncomp(p, len), comp, comp_len); local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Ddsl_destroy.c122 uint64_t used, comp, uncomp; member in struct:process_old_arg
143 poa->comp += BP_GET_PSIZE(bp);
173 -poa.used, -poa.comp, -poa.uncomp, tx);
370 uint64_t used = 0, comp = 0, uncomp = 0; local
395 &used, &comp, &uncomp);
402 &used, &comp, &uncomp);
404 -used, -comp, -uncomp, tx);
411 DD_USED_HEAD, used, comp, uncomp, tx);
456 &used, &comp, &uncomp);
871 uint64_t used, comp, uncom local
877 ASSERT3U(dsl_dir_phys(dd)->dd_compressed_bytes, ==, comp); local
896 uint64_t zap_obj, to_delete, used, comp, uncomp; local
955 uint64_t used, comp, uncomp; local
[all...]

Completed in 160 milliseconds

12345678