/src/sys/kern/ |
kern_uuid.c | 68 struct uuid *store, tmp; local in function:sys_uuidgen 81 for (store = SCARG(uap,store), count = SCARG(uap,count); 83 store++, count--) { 85 error = copyout(&tmp, store, sizeof tmp); 94 uuidgen(struct uuid *store, int count) 98 uuid_generate(store++);
|
subr_autoconf.c | 1087 struct cfargs_internal * const store) 1089 struct cfargs_internal *args = store; 1207 struct cfargs_internal store; local in function:config_search 1210 cfargs_canonicalize(cfargs, &store)); 1266 struct cfargs_internal store; local in function:config_found_acquire 1268 cfargs_canonicalize(cfargs, &store); 1863 struct cfargs_internal store; local in function:config_attach_acquire 1868 cfargs_canonicalize(cfargs, &store));
|
/src/tests/rump/kernspace/ |
alloc.c | 48 static void *store[32]; variable in typeref:typename:void * [32] 72 for (i = 0; i < __arraycount(store); i++) { 73 pool_put(&pp1, store[i]); 95 for (i = 0; i < __arraycount(store); i++) { 96 store[i] = pool_get(&pp1, PR_NOWAIT); 97 if (store[i] == NULL) { 98 panic("pool_get store failed");
|
/src/usr.bin/uuidgen/ |
uuidgen.c | 80 uuid_t *store, *uuid; local in function:main 124 store = (uuid_t*)malloc(sizeof(uuid_t) * count); 125 if (store == NULL) 130 if (uuidgen(store, count) != 0) 133 uuid = store; 140 uuid = store; 181 free(store);
|
/src/usr.sbin/ypserv/revnetgroup/ |
hash.c | 140 * Store an entry in the main netgroup hash table. Here's how this 157 store(struct group_entry *table[], const char *key, const char *data) function in typeref:typename:void 174 * Store a group member entry and/or update its grouplist. This is
|
/src/tests/usr.sbin/inetd/ |
test_server.c | 129 struct iovec store = { local in function:dgram_wait_service 136 .msg_iov = &store,
|
/src/usr.sbin/services_mkdb/ |
output_db.c | 67 static void store(DBT *, DBT *, int); 105 store(&data, &key, warndup); 110 store(&key, &data, warndup); 114 store(&key, &data, warndup); 121 store(&key, &data, warndup); 125 store(&key, &data, warndup); 142 store(DBT *key, DBT *data, int warndup) function in typeref:typename:void 147 (void)printf("store [%*.*s] [%*.*s]\n",
|
/src/sys/dev/ |
midictl.h | 159 midictl_store *store; member in struct:__anona7dcc7c50208
|
/src/games/hack/ |
makedefs.c | 301 int store = (inbraces || inparens) local in function:getentry 306 if (store && sp < string + STRSZ) 309 if (store)
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_chained_origin_depot.cc | 78 void store(const args_type &args, u32 other_hash) { function in struct:__msan::ChainedOriginDepotNode
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/ |
hw_gpio.h | 104 } store; member in struct:hw_gpio
|
/src/usr.bin/nbsvtool/ |
nbsvtool.c | 63 * Create a detach PEM signature of file `infile' and store it in 111 X509_STORE *store; local in function:verify_file 118 store = X509_STORE_new(); 119 if (store == NULL) 120 err(1, "Failed to create store"); 122 X509_STORE_load_locations(store, anchor, NULL); 138 ret = PKCS7_verify(p7, cert_chain, store, in, NULL, 0);
|
/src/common/lib/libutil/ |
snprintb.c | 72 store(state *s, char c) function in typeref:typename:void 96 store(s, '#'); 98 store(s, '\0'); 109 store(s, ','); 111 store(s, '<'); 123 store(s, '>'); 143 store(s, *s->bitfmt); 176 store(s, s->bitfmt[-1]); 200 store(s, s->bitfmt[-1]); 201 store(s, '=') [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_stackdepot.cc | 31 // We use these bits to store the per-stack use counter. 74 void store(const args_type &args, u32 hash) { function in struct:__sanitizer::StackDepotNode
|
/src/sys/arch/powerpc/fpu/ |
fpu_emu.c | 384 * Handle load/store insns: 391 int store, update; local in function:fpu_execute 400 /* Store as integer */ 412 ("fpu_execute: Store INT %x at %p\n", 422 /* Not an indexed FP load/store op */ 425 store = (instr.i_x.i_xo & 0x80); 432 /* calculate EA of load/store */ 442 store = instr.i_d.i_opcd & 0x4; 449 /* calculate EA of load/store */ 462 if (store) { [all...] |
/src/libexec/mail.local/ |
mail.local.c | 70 static int store(const char *); 120 fd = store(from); 132 store(const char *from) function in typeref:typename:int
|
/src/sys/arch/sun2/sun2/ |
promlib.c | 273 uint16_t old_g0_g4_vectors[4], *vec, *store; local in function:prom_abort 284 store = old_g0_g4_vectors; 285 *(store++) = *vec; 287 *(store++) = *vec; 290 *(store++) = *vec; 292 *(store++) = *vec; 310 store = old_g0_g4_vectors; 311 *(vec++) = *(store++); 312 *(vec++) = *(store++); 313 *(vec++) = *(store++) [all...] |
/src/lib/libc/db/hash/ |
hash.c | 917 SEGMENT store; local in function:alloc_segs 932 store = calloc((size_t)(nsegs << hashp->SSHIFT), sizeof(SEGMENT)); 933 if (store == NULL) { 940 hashp->dir[i] = &store[i << hashp->SSHIFT];
|
/src/sys/arch/sandpoint/stand/altboot/ |
fxp.c | 127 uint8_t store[sizeof(struct rxdesc) + FRAMESIZE]; member in struct:local 310 rfa = (struct rxdesc *)sc->store; 316 rfa->size = htole16(sizeof(sc->store) - sizeof(struct rxdesc)); 317 wbinv(rfa, sizeof(sc->store)); 386 rfa = (struct rxdesc *)l->store; 387 inv(rfa, sizeof(l->store)); /* whole including received frame */ 393 memcpy(buf, &l->store[sizeof(struct rxdesc)], len);
|
sip.c | 103 uint8_t store[2][FRAMESIZE]; member in struct:local 199 rxd[0].xd2 = htole32(VTOPHYS(l->store[0])); 202 rxd[1].xd2 = htole32(VTOPHYS(l->store[1])); 289 ptr = l->store[l->rx];
|
/src/usr.bin/dc/ |
bcode.c | 120 static void store(void); 213 { 's', store }, 819 store(void) function in typeref:typename:void
|
/src/sys/dev/pci/ixgbe/ |
ixgbe_x550.c | 2378 u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 }; local in function:ixgbe_reset_phy_fw 2384 rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_PHY_SW_RESET, &store); 2387 memset(store, 0, sizeof(store)); 2389 rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_INIT_PHY, &store); 2402 u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 }; local in function:ixgbe_check_overtemp_fw 2405 rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &store); 2409 if (store[0] & FW_PHY_ACT_GET_LINK_INFO_TEMP) { 2714 /* Store the permanent mac address */ 2717 /* Store MAC address from RAR0, clear receive address registers, an [all...] |
/src/sys/arch/amd64/amd64/ |
machdep.c | 508 struct nmistore *store; local in function:cpu_init_tss 536 /* NMI - store a structure at the top of the stack */ 543 store = (struct nmistore *)(p + PAGE_SIZE - sizeof(struct nmistore)); 544 store->cr3 = pmap_pdirpa(pmap_kernel(), 0);
|
/src/sys/netinet/ |
sctp_input.c | 405 struct sockaddr_storage store; local in function:sctp_handle_heartbeat_ack 416 sin = (struct sockaddr_in *)&store; 417 sin6 = (struct sockaddr_in6 *)&store; 419 memset(&store, 0, sizeof(store));
|
/src/lib/libnvmm/ |
libnvmm_x86.c | 2010 struct x86_store *store; local in function:node_immediate 2015 store = &instr->src; 2026 store->type = STORE_IMM; 2027 if (fsm_read(fsm, (uint8_t *)&store->u.imm.data, immsize) == -1) { 2033 store->u.imm.data = sign_extend(store->u.imm.data, sesize); 3041 struct x86_store *store, gvaddr_t *gvap, size_t size) 3048 if (store->type == STORE_SIB) { 3049 sib = &store->u.sib; 3056 } else if (store->type == STORE_REG) [all...] |