HomeSort by: relevance | last modified time | path
    Searched refs:storage (Results 1 - 25 of 35) sorted by relevancy

1 2

  /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/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
vchiq_util.c 53 queue->storage = kzalloc(size * sizeof(VCHIQ_HEADER_T *), GFP_KERNEL);
54 if (queue->storage == NULL) {
63 if (queue->storage != NULL)
64 kfree(queue->storage);
89 * Write to queue->storage must be visible after read from
94 queue->storage[queue->write & (queue->size - 1)] = header;
97 * Write to queue->storage must be visible before write to
118 * Read from queue->storage must be visible after read from
123 return queue->storage[queue->read & (queue->size - 1)];
137 * Read from queue->storage must be visible after read fro
    [all...]
vchiq_util.h 52 VCHIQ_HEADER_T **storage; member in struct:__anonff0253f90108
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_ring_buffer.h 80 // A ring buffer with externally provided storage that encodes its state in 8
81 // bytes. Has significant constraints on size and alignment of storage.
94 void Init(void *storage, uptr size) {
101 CHECK_EQ((uptr)storage % (size * 2), 0);
102 long_ = (uptr)storage | ((size >> kPageSizeBits) << kSizeShift);
110 CompactRingBuffer(void *storage, uptr size) {
111 Init(storage, size);
115 CompactRingBuffer(const CompactRingBuffer &other, void *storage) {
117 internal_memcpy(storage, other.StartOfStorage(), size);
118 Init(storage, size)
    [all...]
  /src/sys/rump/dev/lib/libumass/
Makefile 7 COMMENT=USB mass storage driver
  /src/sys/arch/alpha/alpha/
trap.c 635 #define unaligned_load(storage, ptrf, mod) \
636 if (copyin((void *)va, &(storage), sizeof (storage)) != 0) \
640 *regptr = mod (storage);
642 #define unaligned_store(storage, ptrf, mod) \
644 (storage) = mod (*regptr); \
646 (storage) = 0; \
647 if (copyout(&(storage), (void *)va, sizeof (storage)) != 0) \
651 #define unaligned_load_integer(storage) \
    [all...]
  /src/libexec/ld.elf_so/arch/m68k/
rtld_start.S 39 subql #8,%sp | storage for obj and cleanup
  /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/arch/sparc/sparc/
promlib.c 444 /* No storage provided, so we allocate some */
918 * Static storage shared by prom_getbootfile(), prom_getbootargs() and
922 static char storage[128]; variable in typeref:typename:char[128]
930 dp = storage;
932 if (dp >= storage + sizeof(storage) - 1) {
950 return (storage);
977 if (prom_getoption(prop, storage, sizeof storage) != 0)
980 return (storage);
    [all...]
  /src/sys/external/isc/libsodium/dist/m4/
ax_tls.m4 11 # Provides a test for the compiler support of thread local storage (TLS)
50 AC_MSG_CHECKING([for thread local storage (TLS) class])
71 [AC_DEFINE_UNQUOTED([TLS],[$ac_cv_tls],[If the compiler supports a TLS storage class define it to that here])
  /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/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/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...]
  /src/usr.bin/rpcgen/
rpc_svcout.c 263 write_programs(const char *storage)
280 write_program(def, storage);
341 write_program(definition *def, const char *storage)
349 if (storage != NULL) {
350 f_print(fout, "%s ", storage);
358 if (storage != NULL) {
359 f_print(fout, "%s ", storage);
368 if (storage != NULL) {
369 f_print(fout, "%s ", storage);
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
mmp3-dell-ariel.dts 71 mass-storage@1 {
kirkwood-l-50.dts 392 label = "storage";
  /src/usr.bin/make/unit-tests/
varmod-l-name-to-value.mk 24 # Hmmm, this can be used as a double storage or a backup mechanism.
  /src/sys/kern/
subr_extent.c 235 void *storage, size_t storagesize, int flags)
238 char *cp = storage;
241 int fixed_extent = (storage != NULL);
259 if (fixed_extent == 0 && (storagesize != 0 || storage != NULL))
260 panic("extent_create: storage provided for non-fixed");
267 memset(storage, 0, storagesize);
276 fex->fex_storage = storage;
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...]
  /src/sys/arch/atari/atari/
be_bus.c 175 beb_alloc_bus_space_tag(bus_space_tag_t storage)
180 * Allow the caller to specify storage space for the tag. This
183 if (storage != NULL)
184 beb_t = storage;
le_bus.c 259 leb_alloc_bus_space_tag(bus_space_tag_t storage)
264 * Allow the caller to specify storage space for the tag. This
267 if (storage != NULL)
268 leb_t = storage;
  /src/sys/lib/libunwind/
libunwind.cxx 374 void __register_frame_info(const void *ehframe, void *storage) {
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/
asan_device_setup 52 local STORAGE=`$ADB shell mount | grep /system | cut -d ' ' -f1`
53 if [ "$STORAGE" != "" ]; then
54 echo Remounting $STORAGE at /system
55 $ADB shell su -c "mount -o rw,remount $STORAGE /system"
57 echo Failed to get storage device name for "/system" mount point
  /src/sys/arch/powerpc/powerpc/
bus_space.c 405 void *storage, size_t storage_size)
409 t->pbs_limit, storage, storage_size,
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/marvell/
cn9130-db.dtsi 242 label = "main-storage";

Completed in 58 milliseconds

1 2