Searched refs:ct (Results 1 - 19 of 19) sorted by relevance

/barrelfish-master/lib/openssl-1.0.0d/crypto/aes/
H A Daes_locl.h68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
/barrelfish-master/usr/drivers/iommu/modules/intel_vtd/
H A Dintel_vtd_ctxt_table.c17 errval_t vtd_ctxt_table_create(struct vtd_ctxt_table *ct, struct vtd *vtd) argument
24 assert(capref_is_null(ct->ctcap));
25 assert(capref_is_null(ct->mappingcncap));
28 err = slot_alloc_root(&ct->mappingcncap);
33 err = slot_alloc(&ct->ctcap);
55 err = cap_retype(ct->ctcap, ramcap, 0, ObjType_VNode_VTd_ctxt_table,
62 err = cnode_create_from_mem(ct->mappingcncap, ramcap2, ObjType_L2CNode,
63 &ct->mappigncn, L2_CNODE_SLOTS);
85 cap_destroy(ct->ctcap);
91 slot_free(ct
98 vtd_ctxt_table_destroy(struct vtd_ctxt_table *ct) argument
150 vtd_ctxt_table_unmap(struct vtd_ctxt_table *ct) argument
179 vtd_ctxt_table_valid(struct vtd_ctxt_table *ct) argument
[all...]
H A Dintel_vtd.h254 errval_t vtd_ctxt_table_create(struct vtd_ctxt_table *ct, struct vtd *vtd);
255 errval_t vtd_ctxt_table_destroy(struct vtd_ctxt_table *ct);
259 bool vtd_ctxt_table_valid(struct vtd_ctxt_table *ct);
H A Dintel_vtd_devices.c118 struct vtd_ctxt_table *ct; local
119 err = vtd_ctxt_table_get_by_id(vtd, bus, &ct);
130 vdev->ctxt_table = ct;
/barrelfish-master/lib/libc/rpc/
H A Dclnt_vc.c169 struct ct_data *ct = NULL; /* client handle */ local
183 ct = (struct ct_data *)mem_alloc(sizeof (*ct));
184 if ((cl == (CLIENT *)NULL) || (ct == (struct ct_data *)NULL)) {
191 ct->ct_addr.buf = NULL;
251 ct->ct_closeit = FALSE;
256 ct->ct_fd = fd;
257 ct->ct_wait.tv_usec = 0;
258 ct->ct_waitset = FALSE;
259 ct
319 struct ct_data *ct = (struct ct_data *) cl->cl_private; local
462 struct ct_data *ct; local
474 struct ct_data *ct; local
522 struct ct_data *ct; local
640 struct ct_data *ct = (struct ct_data *) cl->cl_private; local
680 struct ct_data *ct = (struct ct_data *)ctp; local
734 struct ct_data *ct = (struct ct_data *)ctp; local
[all...]
/barrelfish-master/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DAbstractCompoundTerm.java89 CompoundTerm ct = (CompoundTerm) obj;
90 if(!ct.functor().equals(this.functor()))
94 if(ct.arity() != this.arity())
98 for(int i = 1; i <= ct.arity(); i++)
100 if(!this.arg(i).equals(ct.arg(i)))
/barrelfish-master/lib/openssl-1.0.0d/demos/maurice/
H A Dexample2.c30 char *ct = "This the clear text"; local
58 len = RSA_public_encrypt(strlen(ct)+1, ct, buf, pubKey->pkey.rsa,RSA_PKCS1_PADDING);
/barrelfish-master/tools/harness/tests/
H A Drcce.py51 ct = 0
56 ct = float(m.group(1));
60 computetime[int(m.group(1))] = ct
/barrelfish-master/lib/blk/blk_ahci/
H A Dahci_port.c28 static void command_table_set_cfis(struct command_table* ct, struct sata_fis_reg_h2d* fis) argument
30 assert(sizeof(ct->cfis) >= sizeof(*fis));
31 struct sata_fis_reg_h2d* fis_ptr = (struct sata_fis_reg_h2d*) ct->cfis;
144 struct command_table* ct = port->command_table[slot]; local
147 command_table_set_cfis(ct, &fis);
148 ct->prdt[0] = region_descriptor_new(base, (length - 1) | 0x1, false);
190 struct command_table* ct = port->command_table[slot]; local
193 command_table_set_cfis(ct, &fis);
194 ct->prdt[0] = region_descriptor_new(buffer->paddr, (buffer->bytes - 1) | 0x1, false);
247 struct command_table* ct local
[all...]
/barrelfish-master/lib/ahci/
H A Dahci_util.c92 struct ahci_dma_region *ct; local
93 r = ahci_dma_region_alloc(cmd_table_size, &ct);
98 port->command_slots[command_slot].command_table = ct;
109 ahci_port_chdr_ctba_insert(chdr, ct->paddr);
112 memset(ct->vaddr, 0, cmd_table_size);
113 ahci_dma_region_copy_in(ct, fis, 0, fis_length);
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dtsget104 my $ct = $curl->getinfo(CURLINFO_CONTENT_TYPE);
105 if (lc($ct) ne "application/timestamp-reply"
106 && lc($ct) ne "application/timestamp-response") {
107 $error_string = "unexpected content type returned: $ct";
/barrelfish-master/lib/cpuid/
H A Dcpuid_generic.c236 * \param ct type of the cache
240 char *cpuid_cache_type_string(cpuid_cachetype_t ct) argument
242 switch(ct) {
/barrelfish-master/lib/libc/tests/nss/
H A Dgethostby_test.c219 char **c1, **c2, **ct, **cb; local
247 for (ct = c2; *ct; ++ct) {
248 if (strcmp(*c1, *ct) == 0) {
263 for (ct = c1; *ct; ++ct) {
264 if (strcmp(*c2, *ct) == 0) {
288 for (ct
[all...]
/barrelfish-master/include/cpuid/
H A Dcpuid.h197 * \param ct type of the cache
201 char *cpuid_cache_type_string(cpuid_cachetype_t ct);
/barrelfish-master/kernel/arch/x86_64/
H A Dpage_mappings_arch.c460 vtd_ctxt_entry_t ct = (vtd_ctxt_entry_t)( local
462 if (vtd_ctxt_entry_p_extract(ct)) {
469 vtd_ctxt_entry_t_insert(ct, vtd_hmd);
470 vtd_ctxt_entry_aw_insert(ct, agaw);
471 vtd_ctxt_entry_did_insert(ct, domid);
492 vtd_ctxt_entry_t_insert(ct, vtd_hmd);
497 vtd_ctxt_entry_slptptr_insert(ct, (src_lp >> BASE_PAGE_BITS));
498 vtd_ctxt_entry_p_insert(ct, 1);
/barrelfish-master/usr/webserver/
H A Dhttp_server.c624 uint64_t ct = rdtsc(); local
625 uint64_t delta = ct - *l_ts;
626 *l_ts = ct;
/barrelfish-master/tools/schedsim/
H A Dsimulator.c333 struct dcb *ct = allptrs[i]; local
334 printf("%c%2d: ", typechar(ct->type), i);
/barrelfish-master/lib/cxx/cxx/
H A Dlocale.cpp4781 __time_get_storage<char>::__analyze(char fmt, const ctype<char>& ct) argument
4803 if (ct.is(ctype_base::space, *bb))
4806 for (++bb; bb != be && ct.is(ctype_base::space, *bb); ++bb)
4813 ct, err, false)
4827 ct, err, false)
4836 if (fmt == 'x' && ct.is(ctype_base::digit, this->__months_[i][0]))
4845 ct, err, false) - this->__am_pm_;
4855 if (ct.is(ctype_base::digit, *bb))
4857 switch(__get_up_to_n_digits(bb, be, err, ct, 4))
4929 __time_get_storage<wchar_t>::__analyze(char fmt, const ctype<wchar_t>& ct) argument
5079 init(const ctype<char>& ct) argument
5116 init(const ctype<wchar_t>& ct) argument
[all...]
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dpaddy.pl1614 metacall_process(T,T1), tidy(T1,Tp), % for gc(A),ct(A),fail etc

Completed in 207 milliseconds