Searched refs:comp (Results 1 - 25 of 81) sorted by relevance

1234

/barrelfish-master/usr/eclipseclp/CPViz/viztool/src/components/
H A DJComponentModifier.java33 * @param comp the component associed with this object
35 void addJComponent(JComponent comp); argument
/barrelfish-master/include/lwip2/netif/ppp/
H A Dvj.h153 extern void vj_compress_init (struct vjcompress *comp);
154 extern u8_t vj_compress_tcp (struct vjcompress *comp, struct pbuf **pb);
155 extern void vj_uncompress_err (struct vjcompress *comp);
156 extern int vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp);
157 extern int vj_uncompress_tcp (struct pbuf **nb, struct vjcompress *comp);
H A Dvj.c42 #define INCR(counter) ++comp->stats.counter
48 vj_compress_init(struct vjcompress *comp) argument
51 struct cstate *tstate = comp->tstate;
54 memset((char *)comp, 0, sizeof(*comp));
56 comp->maxSlotIndex = MAX_SLOTS - 1;
57 comp->compressSlot = 0; /* Disable slot ID compression by default. */
64 comp->last_cs = &tstate[0];
65 comp->last_recv = 255;
66 comp
160 vj_compress_tcp(struct vjcompress *comp, struct pbuf **pb) argument
453 vj_uncompress_err(struct vjcompress *comp) argument
464 vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp) argument
501 vj_uncompress_tcp(struct pbuf **nb, struct vjcompress *comp) argument
[all...]
/barrelfish-master/lib/lwip2/src/netif/ppp/
H A Dvj.c42 #define INCR(counter) ++comp->stats.counter
48 vj_compress_init(struct vjcompress *comp) argument
51 struct cstate *tstate = comp->tstate;
54 memset((char *)comp, 0, sizeof(*comp));
56 comp->maxSlotIndex = MAX_SLOTS - 1;
57 comp->compressSlot = 0; /* Disable slot ID compression by default. */
64 comp->last_cs = &tstate[0];
65 comp->last_recv = 255;
66 comp
160 vj_compress_tcp(struct vjcompress *comp, struct pbuf **pb) argument
453 vj_uncompress_err(struct vjcompress *comp) argument
464 vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp) argument
501 vj_uncompress_tcp(struct pbuf **nb, struct vjcompress *comp) argument
[all...]
/barrelfish-master/lib/libc/gen/
H A Dfmtmsg.c117 char *comp, *output; local
135 while ((comp = nextcomp(msgverb)) != NULL) {
136 if (strcmp(comp, "label") == 0 && label != MM_NULLLBL) {
139 } else if (strcmp(comp, "severity") == 0 && sevname != NULL) {
142 } else if (strcmp(comp, "text") == 0 && text != MM_NULLTXT) {
145 } else if (strcmp(comp, "action") == 0 && act != MM_NULLACT) {
149 } else if (strcmp(comp, "tag") == 0 && tag != MM_NULLTAG) {
/barrelfish-master/lib/openssl-1.0.0d/crypto/stack/
H A Dstack.c83 int (*old)(const void *,const void *)=sk->comp;
85 if (sk->comp != c)
87 sk->comp=c;
97 if ((ret=sk_new(sk->comp)) == NULL) goto err;
107 ret->comp=sk->comp;
131 ret->comp=c;
220 if (st->comp == NULL)
229 r=OBJ_bsearch_ex_(&data,st->data,st->num,sizeof(void *),st->comp,
318 /* same comment as in sk_find ... previously st->comp wa
[all...]
H A Dstack.h73 int (*comp)(const void *, const void *); member in struct:stack_st
/barrelfish-master/lib/openssl-1.0.0d/crypto/comp/
H A Dcomp_err.c1 /* crypto/comp/comp_err.c */
63 #include <openssl/comp.h>
H A Dc_rle.c5 #include <openssl/comp.h>
H A DMakefile2 # OpenSSL/crypto/comp/Makefile
5 DIR= comp
28 EXHEADER= comp.h
81 c_rle.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
88 c_zlib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
95 comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h
103 comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
H A Dcomp_lib.c5 #include <openssl/comp.h>
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssl_txt.c209 SSL_COMP *comp = NULL; local
211 ssl_cipher_get_evp(x,NULL,NULL,NULL,NULL,&comp);
212 if (comp == NULL)
218 if (BIO_printf(bp,"\n Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err;
H A Dssl_ciph.c146 #include <openssl/comp.h>
429 SSL_COMP *comp = NULL; local
435 comp=(SSL_COMP *)OPENSSL_malloc(sizeof(SSL_COMP));
436 if (comp != NULL)
438 comp->method=COMP_zlib();
439 if (comp->method
440 && comp->method->type == NID_undef)
441 OPENSSL_free(comp);
444 comp->id=SSL_COMP_ZLIB_IDX;
445 comp
461 ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc, const EVP_MD **md, int *mac_pkey_type, int *mac_secret_size,SSL_COMP **comp) argument
1681 SSL_COMP_get_name(const void *comp) argument
1694 SSL_COMP *comp; local
1739 SSL_COMP_get_name(const COMP_METHOD *comp) argument
[all...]
H A Ds3_enc.c224 COMP_METHOD *comp; local
238 comp=NULL;
240 comp=s->s3->tmp.new_compression->method;
262 if (comp != NULL)
264 s->expand=COMP_CTX_new(comp);
270 if (s->s3->rrec.comp == NULL)
271 s->s3->rrec.comp=(unsigned char *)
273 if (s->s3->rrec.comp == NULL)
298 if (comp != NULL)
300 s->compress=COMP_CTX_new(comp);
394 SSL_COMP *comp; local
[all...]
H A Dt1_enc.c141 #include <openssl/comp.h>
322 const SSL_COMP *comp; local
337 comp=s->s3->tmp.new_compression;
342 printf("\talg= %ld/%ld, comp= %p\n",
345 comp);
379 if (comp != NULL)
381 s->expand=COMP_CTX_new(comp->method);
387 if (s->s3->rrec.comp == NULL)
388 s->s3->rrec.comp=(unsigned char *)
390 if (s->s3->rrec.comp
553 SSL_COMP *comp; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/err/
H A Derr_all.c67 #include <openssl/comp.h>
105 #include <openssl/comp.h>
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dbip_comp.c398 occurs_compound(pword *comp, pword *term) argument
408 if (comp == term)
416 if (comp == term)
430 if (occurs_compound(comp, arg))
1063 int comp, sequence; local
1117 comp = number_sort; /* input for breal comparison */
1119 key_ptr2->val, key_ptr2->tag, &comp);
1127 comp = ec_compare_terms(key_ptr1->val, key_ptr1->tag,
1132 comp = -comp;
1423 int comp, err; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/cms/
H A Dcms_cd.c61 #include <openssl/comp.h>
/barrelfish-master/include/openssl/
H A Dstack.h73 int (*comp)(const void *, const void *); member in struct:stack_st
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dsa.h48 complete(&client->comp);
H A Duverbs.h72 struct completion comp; member in struct:ib_uverbs_device
104 struct ib_uverbs_comp_event_desc comp; member in union:ib_uverbs_event::__anon645
/barrelfish-master/tools/fastmodels/
H A Dmain.c61 load_component(char *basepath, size_t bplen, struct component_config *comp, argument
63 if(bplen + comp->path_len >= PATH_MAX) {
69 memcpy(basepath + bplen, buf + comp->path_start, comp->path_len);
70 basepath[bplen + comp->path_len]= '\0';
83 comp->image= load_file(path, &comp->image_size, &comp->alloc_size);
648 for(struct component_config *comp= config->first_module;
649 comp; com
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dcq.c86 if (cq->comp)
87 cq->comp(cq);
89 debug_printf("%s.%d: comp: %p\n", __func__, __LINE__, cq->comp);
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dtabnotebook.tcl281 } elseif {[string comp $w [winfo parent $val]] && \
282 [string comp $data(hold) [winfo parent $val]]} {
453 if {[string comp $val {}]} {
456 } elseif {[string comp $w [winfo parent $val]] && \
457 [string comp $data(hold) [winfo parent $val]]} {
465 if {[string comp $val {}]} {
471 if {[string comp $val {}]} {
/barrelfish-master/include/sys/
H A Dtree.h631 int comp = 0; \
635 comp = (cmp)(elm, parent); \
636 if (comp < 0) \
638 else if (comp > 0) \
645 if (comp < 0) \
662 int comp; \
664 comp = cmp(elm, tmp); \
665 if (comp < 0) \
667 else if (comp > 0) \
682 int comp; \
[all...]

Completed in 301 milliseconds

1234