HomeSort by: relevance | last modified time | path
    Searched defs:storage (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
vchiq_util.h 52 VCHIQ_HEADER_T **storage; member in struct:__anonff0253f90108
  /src/tests/lib/libc/sys/
t_kevent.c 80 int s[2], storage, status, kq; local in function:ATF_TC_BODY
103 iov.iov_base = &storage;
118 iov.iov_base = &storage;
  /src/tests/include/sys/
t_socket.c 90 int rfd, fd[2], storage; local in function:ATF_TC_BODY
134 iov.iov_base = &storage;
  /src/lib/librefuse/refuse/
chan.c 67 static struct refuse_chan_storage storage; variable in typeref:struct:refuse_chan_storage
115 /* Find the first empty slot in the storage. */
116 for (idx = 0; idx < (int)storage.n_alloc; idx++) {
117 if (storage.vec[idx] == NULL) {
118 storage.vec[idx] = chan;
124 storage.n_alloc = (storage.n_alloc + 8) * 2;
125 storage.vec = realloc(storage.vec, sizeof(struct fuse_chan*) * storage.n_alloc)
    [all...]
  /src/usr.bin/m4/
look.c 72 void *storage = xalloc(s, "hash alloc"); local in function:hash_alloc
73 if (storage)
74 memset(storage, 0, s);
75 return storage;
  /src/sys/dev/ic/
isp_target.c 838 uint8_t storage[QENTRY_LEN]; local in function:isp_target_async
840 memset(storage, 0, QENTRY_LEN);
842 ct7_entry_t *ct = (ct7_entry_t *) storage;
849 ct2_entry_t *ct = (ct2_entry_t *) storage;
855 ct_entry_t *ct = (ct_entry_t *) storage;
863 isp_async(isp, ISPASYNC_TARGET_ACTION, storage);
1065 char storage[QENTRY_LEN]; local in function:isp_notify_ack
1082 ISP_MEMZERO(storage, QENTRY_LEN);
1085 na_fcentry_24xx_t *na = (na_fcentry_24xx_t *) storage;
1110 na_fcentry_t *na = (na_fcentry_t *) storage;
1174 char storage[QENTRY_LEN]; local in function:isp_acknak_abts
    [all...]
isp_library.c 63 uint8_t storage[QENTRY_LEN]; local in function:isp_send_cmd
149 ISP_MEMZERO(storage, QENTRY_LEN);
153 ispcontreq64_t *crq = (ispcontreq64_t *) storage;
159 ispcontreq_t *crq = (ispcontreq_t *) storage;
176 isp_put_cont64_req(isp, (ispcontreq64_t *)storage, qe1);
178 isp_put_cont_req(isp, (ispcontreq_t *)storage, qe1);
181 isp_print_bytes(isp, "additional queue entry", QENTRY_LEN, storage);
2017 uint8_t storage[QENTRY_LEN], storage2[QENTRY_LEN]; local in function:isp_send_tgt_cmd
2168 ISP_MEMZERO(storage, QENTRY_LEN);
2172 ispcontreq64_t *crq = (ispcontreq64_t *) storage;
    [all...]
  /src/sys/arch/sparc/sparc/
promlib.c 311 /* No storage provided, so we allocate some */
785 * Static storage shared by prom_getbootfile(), prom_getbootargs() and
789 static char storage[128]; variable in typeref:typename:char[128]
797 dp = storage;
799 if (dp >= storage + sizeof(storage) - 1) {
817 return (storage);
844 if (prom_getoption(prop, storage, sizeof storage) != 0)
847 return (storage);
    [all...]
  /src/sys/dev/scsipi/
ses.c 935 char storage[CFLEN], *sdata; local in function:ses_getconfig
979 cdp = (SesEncDesc *) storage;
1089 * we only need 2 bytes of data storage.
1092 * storage we need by noting that starting at offset
1293 * Starting at offset 8, start skipping over the storage
1365 * Starting at offset 8, start skipping over the storage
  /src/sys/kern/
subr_pool.c 1080 pool_alloc_item_header(struct pool *pp, void *storage, int flags)
1085 ph = storage;
1396 char *storage; local in function:pool_grow
1429 storage = pool_allocator_alloc(pp, flags);
1430 if (__predict_false(storage == NULL))
1433 ph = pool_alloc_item_header(pp, storage, flags);
1435 pool_allocator_free(pp, storage);
1441 pool_prime_page(pp, storage, ph);
1478 pool_prime_page(struct pool *pp, void *storage, struct pool_item_header *ph)
1482 void *cp = storage;
    [all...]

Completed in 21 milliseconds