Searched refs:size (Results 151 - 175 of 1112) sorted by relevance

1234567891011>>

/barrelfish-master/lib/libc/db/recno/
H A Drec_put.c80 if (F_ISSET(t, R_FIXLEN) && data->size != t->bt_reclen) {
81 if (data->size > t->bt_reclen)
84 if (t->bt_rdata.size < t->bt_reclen) {
89 t->bt_rdata.size = t->bt_reclen;
91 memmove(t->bt_rdata.data, data->data, data->size);
92 memset((char *)t->bt_rdata.data + data->size,
93 t->bt_bval, t->bt_reclen - data->size);
95 fdata.size = t->bt_reclen;
98 fdata.size = data->size;
[all...]
/barrelfish-master/lib/rcce/
H A Dring_barriers.c89 const uint8_t *msg, size_t size)
94 m->msg = memdup(msg, size);
95 m->length = size;
98 dprintf("%d: msg arrived, (%d, %lu)\n", my_core_id, coreid, size);
103 uint64_t id, uint64_t size,
110 assert(m->length == size);
112 size_t copysize = last_fragment ? size - m->current : BLOCK_SIZE;
115 /* printf("current = %lu, msg[0] = %d (%p), buf[0] = %d (%p), size = %llu, copysize = %lu\n", */
116 /* m->current, m->msg[0], m->msg, bf[0], buf, size, copysize); */
127 /* m->length = size; */
88 message_request(struct rcce_binding *st, uint16_t coreid, const uint8_t *msg, size_t size) argument
102 bulk_message_request(struct rcce_binding *b, uint16_t coreid, uint64_t id, uint64_t size, uint8_t last_fragment) argument
172 bulk_recv_ready(struct rcce_binding *b, uint16_t coreid, uint64_t size) argument
193 send_message(char *msg, size_t size, coreid_t dest) argument
[all...]
/barrelfish-master/lib/elf/
H A Delf.c30 * This function loads an ELF binary image, based at 'base' and of size
31 * 'size' into the memory provided by 'allocate'
37 * \param size Size of ELF binary image in bytes.
40 * \param ret_tlssize Used to return TLS block size
44 size_t size, genvaddr_t *retentry,
56 return elf32_load(em_machine, allocate_func, state, base, size,
60 return elf64_load(em_machine, allocate_func, state, base, size,
69 size_t size, genvaddr_t *retentry)
71 return elf_load_tls(em_machine, allocate_func, state, base, size,
112 * \brief Calculates the size o
42 elf_load_tls(uint16_t em_machine, elf_allocator_fn allocate_func, void *state, lvaddr_t base, size_t size, genvaddr_t *retentry, genvaddr_t *ret_tlsbase, size_t *ret_tlsinitlen, size_t *ret_tlstotallen) argument
67 elf_load(uint16_t em_machine, elf_allocator_fn allocate_func, void *state, lvaddr_t base, size_t size, genvaddr_t *retentry) argument
167 size_t size = 0; local
208 size_t size = 0; local
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dprofile.c66 u64 size; member in struct:mlx4_resource
82 profile[MLX4_RES_QP].size = dev_cap->qpc_entry_sz;
83 profile[MLX4_RES_RDMARC].size = dev_cap->rdmarc_entry_sz;
84 profile[MLX4_RES_ALTC].size = dev_cap->altc_entry_sz;
85 profile[MLX4_RES_AUXC].size = dev_cap->aux_entry_sz;
86 profile[MLX4_RES_SRQ].size = dev_cap->srq_entry_sz;
87 profile[MLX4_RES_CQ].size = dev_cap->cqc_entry_sz;
88 profile[MLX4_RES_EQ].size = dev_cap->eqc_entry_sz;
89 profile[MLX4_RES_DMPT].size = dev_cap->dmpt_entry_sz;
90 profile[MLX4_RES_CMPT].size
[all...]
/barrelfish-master/lib/dma/ioat/
H A Dioat_dma_descriptors.c29 * \param size number of bytes to copy
32 * XXX: this function assumes that the size of the descriptor has already been
33 * checked and must match the maximum transfer size of the channel
38 uint32_t size,
42 ioat_dma_desc_size_insert(vbase, size);
55 * \param size number of bytes to copy
58 * XXX: this function assumes that the size of the descriptor has already been
59 * checked and must match the maximum transfer size of the channel
64 uint32_t size,
68 ioat_dma_desc_size_insert(vbase, size);
35 ioat_dma_desc_fill_memcpy(struct dma_descriptor *desc, lpaddr_t src, lpaddr_t dst, uint32_t size, ioat_dma_desc_ctrl_t ctrl) argument
61 ioat_dma_desc_fill_memset(struct dma_descriptor *desc, uint64_t data, lpaddr_t dst, uint32_t size, ioat_dma_desc_ctrl_t ctrl) argument
[all...]
/barrelfish-master/lib/libc/db/test/hash.tests/
H A Dtseq.c77 bcopy ( res.data, wp, res.size );
78 wp[res.size] = 0;
79 bcopy ( item.data, cp, item.size );
80 cp[item.size] = 0;
/barrelfish-master/lib/libc/inet/
H A Dinet_neta.c45 * inet_neta(src, dst, size)
55 inet_neta(in_addr_t src, char *dst, size_t size) argument
65 if (size < sizeof "255.")
73 size -= (size_t)(dst - tp);
77 if (size < sizeof "0.0.0.0")
/barrelfish-master/lib/libc/xdr/
H A Dxdr_reference.c64 * size is the sizeof the referneced structure.
68 xdr_reference(XDR *xdrs, caddr_t *pp, u_int size, xdrproc_t proc) argument
72 * u_int size; // size of the object pointed to
85 *pp = loc = (caddr_t) mem_alloc(size);
90 memset(loc, 0, size);
100 mem_free(loc, size);
122 * > obj_size: size of the object.
/barrelfish-master/lib/lua/src/
H A Dlzio.c22 size_t size; local
26 buff = z->reader(L, z->data, &size);
28 if (buff == NULL || size == 0)
30 z->n = size - 1; /* discount char being returned */
/barrelfish-master/lib/openssl-1.0.0d/MacOS/
H A DRandomizer.h25 void AddBytes (void *data, long size, double entropy);
/barrelfish-master/lib/openssl-1.0.0d/crypto/des/
H A Decb_enc.c74 const char *ptr,*unroll,*risc,*size; local
97 size="int";
99 size="long";
101 size);
/barrelfish-master/lib/openssl-1.0.0d/crypto/evp/
H A Dp_open.c74 int i,size=0,ret=0; local
89 size=RSA_size(priv->pkey.rsa);
90 key=(unsigned char *)OPENSSL_malloc(size+2);
108 if (key != NULL) OPENSSL_cleanse(key,size);
/barrelfish-master/lib/phoenix/
H A Diterator.h40 int size; member in struct:iterator_t
/barrelfish-master/lib/tzcode/zic/
H A Dialloc.c41 irealloc(pointer, size)
43 const int size;
46 return imalloc(size);
47 return realloc((void *) pointer, (size_t) nonzero(size));
/barrelfish-master/include/
H A Dk_r_malloc.h16 unsigned size; /* size of this block */ member in struct:header::__anon86
/barrelfish-master/include/lwip/lwip/
H A Dmemp_std.h14 The pools are a little bigger to provide 'size' as the amount of user data. */
15 #define LWIP_MALLOC_MEMPOOL(num, size) LWIP_MEMPOOL(POOL_##size, num, (size + sizeof(struct memp_malloc_helper)), "MALLOC_"#size)
22 * Allocates buffers for a pbuf struct AND a payload size */
77 * (Example: pbuf_payload_size=0 allocates only size for the struct)
/barrelfish-master/include/hashtable/
H A Ddictionary.h35 int (*size)(struct dictionary*); member in struct:dictionary
/barrelfish-master/include/vfs/
H A Dmmap.h24 size_t filesize; // size to read from file (rest is zero-filled)
27 errval_t memobj_create_vfs(struct memobj_vfs *memobj, size_t size,
33 errval_t vspace_map_file(size_t size, vregion_flags_t flags,
37 errval_t vspace_map_file_fixed(genvaddr_t base, size_t size,
42 errval_t vspace_map_file_aligned(size_t alignment, size_t size,
/barrelfish-master/include/barrelfish/
H A Dvspace_mmu_aware.h31 size_t size; member in struct:vspace_mmu_aware
42 errval_t vspace_mmu_aware_init(struct vspace_mmu_aware *state, size_t size);
47 size_t size, size_t alignment,
50 struct capref frame, size_t size);
/barrelfish-master/usr/arrakismon/
H A Dpci_host.c38 enum opsize size, uint32_t val)
44 enum opsize size, uint32_t *val)
56 addr.d.doubleword, size, *val);
58 if(size == 1) {
36 confspace_write(struct pci_device *dev, union pci_config_address_word addr, enum opsize size, uint32_t val) argument
42 confspace_read(struct pci_device *dev, union pci_config_address_word addr, enum opsize size, uint32_t *val) argument
H A Dpci.h36 enum opsize size, uint32_t val);
40 enum opsize size, uint32_t *val);
58 int pci_handle_pio_write(struct pci *pci, uint16_t port, enum opsize size,
60 int pci_handle_pio_read(struct pci *pci, uint16_t port, enum opsize size,
/barrelfish-master/lib/barrelfish/vspace/arch/aarch64/
H A Dlayout.c26 l->size = (genvaddr_t) VMSAv8_64_PTABLE_SIZE * VMSAv8_64_PTABLE_SIZE *
/barrelfish-master/lib/barrelfish/vspace/arch/x86_64/
H A Dlayout.c27 l->size = (genvaddr_t)X86_64_PTABLE_SIZE * X86_64_PTABLE_SIZE *
/barrelfish-master/usr/drivers/usb/usb_manager/controller/ohci/
H A Dusb_ohci_memory.h27 usb_paddr_t usb_ohci_buffer_alloc(uint32_t size, uint32_t align);
/barrelfish-master/usr/drivers/usb/usb_manager/include/
H A Dusb_memory.h32 * - size: size of the memory region
37 ssize_t size; member in struct:usb_memory_block
53 * - size: size of the usb page
75 * - size: size of the usb page
82 uint32_t size; member in struct:usb_dma_page
112 uint32_t usb_mem_next_block(uint32_t size, uint32_t align, struct usb_page *page,
115 struct usb_dma_page *usb_mem_dma_alloc(uint32_t size, uint32_
[all...]

Completed in 306 milliseconds

1234567891011>>