HomeSort by: relevance | last modified time | path
    Searched defs:vec (Results 1 - 25 of 136) sorted by relevancy

1 2 3 4 5 6

  /src/games/mille/
varpush.c 56 const struct iovec vec[] = { local in function:varpush
72 if (((func)(file, vec, sizeof(vec) / sizeof(vec[0]))) < 0) {
varpush.c 56 const struct iovec vec[] = { local in function:varpush
72 if (((func)(file, vec, sizeof(vec) / sizeof(vec[0]))) < 0) {
  /src/dist/pf/sbin/pflogd/
privsep_fdpass.c 56 struct iovec vec; local in function:send_fd
74 vec.iov_base = &result;
75 vec.iov_len = sizeof(int);
76 msg.msg_iov = &vec;
92 struct iovec vec; local in function:receive_fd
98 vec.iov_base = &result;
99 vec.iov_len = sizeof(int);
100 msg.msg_iov = &vec;
privsep_fdpass.c 56 struct iovec vec; local in function:send_fd
74 vec.iov_base = &result;
75 vec.iov_len = sizeof(int);
76 msg.msg_iov = &vec;
92 struct iovec vec; local in function:receive_fd
98 vec.iov_base = &result;
99 vec.iov_len = sizeof(int);
100 msg.msg_iov = &vec;
  /src/sys/arch/evbmips/ingenic/
cpu.c 81 uint32_t vec, reg; local in function:cpu_attach
88 vec = (uint32_t)&ingenic_wakeup;
91 reg |= vec;
cpu.c 81 uint32_t vec, reg; local in function:cpu_attach
88 vec = (uint32_t)&ingenic_wakeup;
91 reg |= vec;
  /src/sys/arch/x86/x86/
idt.c 169 int vec; local in function:idt_vec_alloc
177 for (vec = low; vec <= high; vec++) {
179 if (atomic_load_acquire(&idt_allocmap[vec]) == 0) {
185 atomic_store_relaxed(&idt_allocmap[vec], 1);
186 return vec;
194 idt_vec_reserve(struct idt_vec *iv, int vec)
200 result = idt_vec_alloc(iv, vec, vec);
    [all...]
idt.c 169 int vec; local in function:idt_vec_alloc
177 for (vec = low; vec <= high; vec++) {
179 if (atomic_load_acquire(&idt_allocmap[vec]) == 0) {
185 atomic_store_relaxed(&idt_allocmap[vec], 1);
186 return vec;
194 idt_vec_reserve(struct idt_vec *iv, int vec)
200 result = idt_vec_alloc(iv, vec, vec);
    [all...]
  /src/sys/arch/alpha/pci/
dwlpx.c 73 void dwlpx_errintr(void *, u_long vec);
186 unsigned long vec, ls = DWLPX_SYSBASE(sc); local in function:dwlpx_init
250 vec = scb_alloc(dwlpx_errintr, sc);
252 if (vec == SCB_ALLOC_FAILED)
256 vec);
259 REGVAL(PCIA_ERRVEC(i) + ccp->cc_sysbase) = vec;
304 dwlpx_errintr(void *arg, unsigned long vec)
dwlpx.c 73 void dwlpx_errintr(void *, u_long vec);
186 unsigned long vec, ls = DWLPX_SYSBASE(sc); local in function:dwlpx_init
250 vec = scb_alloc(dwlpx_errintr, sc);
252 if (vec == SCB_ALLOC_FAILED)
256 vec);
259 REGVAL(PCIA_ERRVEC(i) + ccp->cc_sysbase) = vec;
304 dwlpx_errintr(void *arg, unsigned long vec)
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
bcm2835-common.dtsi 111 vec: vec@7e806000 { label
112 compatible = "brcm,bcm2835-vec";
bcm2835-common.dtsi 111 vec: vec@7e806000 { label
112 compatible = "brcm,bcm2835-vec";
  /src/sys/arch/powerpc/oea/
altivec.c 215 uint32_t vec[7], *vp = (void *) roundup((uintptr_t) vec, 16); local in function:vzeropage
227 * Save the VEC register we are going to use before we disable
258 * Restore VEC register (now that we can access the stack again).
275 uint32_t vec[11], *vp = (void *) roundup((uintptr_t) vec, 16); local in function:vcopypage
287 * Save the VEC registers we will be using before we disable
321 * Restore VEC registers (now that we can access the stack again).
altivec.c 215 uint32_t vec[7], *vp = (void *) roundup((uintptr_t) vec, 16); local in function:vzeropage
227 * Save the VEC register we are going to use before we disable
258 * Restore VEC register (now that we can access the stack again).
275 uint32_t vec[11], *vp = (void *) roundup((uintptr_t) vec, 16); local in function:vcopypage
287 * Save the VEC registers we will be using before we disable
321 * Restore VEC registers (now that we can access the stack again).
  /src/usr.bin/fincore/
fincore.c 82 fincore(int fd, off_t startoff, off_t endoff, unsigned char *vec)
88 off += chunk_size, vec += chunk_size / page_size) {
101 vec)) {
115 unsigned char vec[4096]; local in function:do_file
134 chunk_size = MIN(__arraycount(vec) * page_size,
136 if (fincore(fd, off, off + chunk_size, vec)) {
141 if (vec[i] == 0) {
fincore.c 82 fincore(int fd, off_t startoff, off_t endoff, unsigned char *vec)
88 off += chunk_size, vec += chunk_size / page_size) {
101 vec)) {
115 unsigned char vec[4096]; local in function:do_file
134 chunk_size = MIN(__arraycount(vec) * page_size,
136 if (fincore(fd, off, off + chunk_size, vec)) {
141 if (vec[i] == 0) {
  /src/lib/librefuse/refuse/
chan.c 61 struct fuse_chan** vec; member in struct:refuse_chan_storage
117 if (storage.vec[idx] == NULL) {
118 storage.vec[idx] = chan;
125 storage.vec = realloc(storage.vec, sizeof(struct fuse_chan*) * storage.n_alloc);
126 if (!storage.vec) {
132 storage.vec[idx] = chan;
133 memset(&storage.vec[idx+1], 0, sizeof(struct fuse_chan*) * (storage.n_alloc - (size_t)idx - 1));
154 chan = storage.vec[idx];
176 chan = storage.vec[idx]
    [all...]
  /src/sys/arch/sparc64/dev/
fhc.c 235 long vec; local in function:fhc_intr_establish
248 vec = ((sc->sc_ign << INTMAP_IGN_SHIFT) & INTMAP_IGN) |
262 ih->ih_number = vec;
  /src/sys/dev/pci/
universe_pci.c 282 int i, vec; local in function:univ_pci_intr
297 vec = read_csr_4(d, v_statid[i - 1]);
298 if (vec & 0x100) {
303 (*d->vmeinthandler)(d->vmeintcookie, i, vec);
  /src/sys/dev/qbus/
uba.c 283 int i, csr, vec, br; local in function:ubasearch
306 i = scb_vecref(&vec, &br);
309 if (vec == 0)
313 ua.ua_cvec = vec;
339 aprint_normal(" csr %o vec %o ipl %x", ua->ua_iaddr,
348 uba_intr_establish(void *icookie, int vec, void (*ifunc)(void *iarg),
351 scb_vecalloc(vec, ifunc, iarg, SCB_ISTACK, ev);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 136 vector<uptr> vec; local in function:TestBitVector
138 back_insert_iterator<vector<uptr> >(vec));
139 EXPECT_EQ(bv.intersectsWith(bv1), !vec.empty());
149 t_s = set<uptr>(vec.begin(), vec.end());
155 vec.clear();
157 back_insert_iterator<vector<uptr> >(vec));
158 t_s = set<uptr>(vec.begin(), vec.end());
  /src/sys/ufs/chfs/
chfs_write.c 53 struct iovec vec; local in function:chfs_write_flash_vnode
116 vec.iov_base = fvnode;
117 vec.iov_len = CHFS_PAD(size);
120 err = chfs_write_wbuf(chmp, &vec, 1, nref->nref_offset, &retlen);
165 struct iovec vec[2]; local in function:chfs_write_flash_dirent
199 vec[0].iov_base = fdirent;
200 vec[0].iov_len = sizeof(*fdirent);
201 vec[1].iov_base = name;
202 vec[1].iov_len = namelen;
236 err = chfs_write_wbuf(chmp, vec, 2, nref->nref_offset, &retlen)
289 struct iovec vec[2]; local in function:chfs_write_flash_dnode
    [all...]
  /src/tests/lib/libc/sys/
t_mincore.c 93 char *vec; local in function:check_residency
95 vec = malloc(npgs);
97 ATF_REQUIRE(vec != NULL);
98 ATF_REQUIRE(mincore(addr, npgs * page, vec) == 0);
102 if (vec[i] != 0)
107 (char *)addr + (i * page), vec[i] ? "" : "not ");
111 free(vec);
124 char *map, *vec; local in function:ATF_TC_BODY
127 vec = malloc(page);
129 ATF_REQUIRE(vec != NULL)
    [all...]
  /src/tests/net/fdpass/
fdpass.c 55 struct iovec vec; local in function:send_fd
74 vec.iov_base = &ch;
75 vec.iov_len = 1;
76 msg.msg_iov = &vec;
107 struct iovec vec; local in function:recv_fd
118 vec.iov_base = &ch;
119 vec.iov_len = 1;
120 msg.msg_iov = &vec;
  /src/sys/arch/next68k/stand/boot/
machdep.c 102 vec:12; member in struct:trapframe
117 fp->fmt, fp->vec, fp->sr, fp->pc);

Completed in 64 milliseconds

1 2 3 4 5 6