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/tests/usr.bin/indent/
fmt_expr.c 22 *(GNode **)Vector_Push(&vec) = ln->datum; variable
fmt_expr.c 22 *(GNode **)Vector_Push(&vec) = ln->datum; variable
  /src/games/mille/
varpush.c 56 const struct iovec vec[] = { local
72 if (((func)(file, vec, sizeof(vec) / sizeof(vec[0]))) < 0) {
varpush.c 56 const struct iovec vec[] = { local
72 if (((func)(file, vec, sizeof(vec) / sizeof(vec[0]))) < 0) {
  /src/dist/pf/sbin/pflogd/
privsep_fdpass.c 56 struct iovec vec; local
74 vec.iov_base = &result;
75 vec.iov_len = sizeof(int);
76 msg.msg_iov = &vec;
92 struct iovec vec; local
98 vec.iov_base = &result;
99 vec.iov_len = sizeof(int);
100 msg.msg_iov = &vec;
privsep_fdpass.c 56 struct iovec vec; local
74 vec.iov_base = &result;
75 vec.iov_len = sizeof(int);
76 msg.msg_iov = &vec;
92 struct iovec vec; local
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
88 vec = (uint32_t)&ingenic_wakeup;
91 reg |= vec;
cpu.c 81 uint32_t vec, reg; local
88 vec = (uint32_t)&ingenic_wakeup;
91 reg |= vec;
  /src/sys/arch/x86/x86/
idt.c 169 int vec; local
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
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
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
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/arch/powerpc/oea/
altivec.c 215 uint32_t vec[7], *vp = (void *) roundup((uintptr_t) vec, 16); local
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
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
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
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
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
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...]
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/next68k/stand/boot/
machdep.c 102 vec:12; member in struct:trapframe
117 fp->fmt, fp->vec, fp->sr, fp->pc);
  /src/sys/arch/sparc64/dev/
fhc.c 235 long vec; local
248 vec = ((sc->sc_ign << INTMAP_IGN_SHIFT) & INTMAP_IGN) |
262 ih->ih_number = vec;
  /src/sys/dev/mvme/
vme_two_isr.c 222 int vec; local
224 vec = (int) arg; /* 0x08 <= vec <= 0x1f */
228 VME2_LOCAL_INTERRUPT(vec));
230 isr = &vme_two_handlers[vec - VME2_VECTOR_LOCAL_OFFSET];
234 printf("vmetwo: Spurious local interrupt, vector 0x%x\n", vec);
240 vmetwo_local_intr_establish(int pri, int vec, int (*hand)(void *), void *arg, struct evcnt *evcnt)
243 vmetwo_intr_establish(vmetwo_sc, pri, pri, vec, 1, hand, arg, evcnt);
248 vmetwo_intr_establish(void *csc, int prior, int lvl, int vec, int first, int (*hand)(void *), void *arg, struct evcnt *evcnt)
263 if (vec >= VME2_VECTOR_LOCAL_MIN && vec <= VME2_VECTOR_LOCAL_MAX)
    [all...]
  /src/sys/dev/pci/
universe_pci.c 282 int i, vec; local
297 vec = read_csr_4(d, v_statid[i - 1]);
298 if (vec & 0x100) {
303 (*d->vmeinthandler)(d->vmeintcookie, i, vec); local
  /src/sys/dev/qbus/
uba.c 283 int i, csr, vec, br; local
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/ufs/chfs/
chfs_write.c 53 struct iovec vec; local
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
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
    [all...]
  /src/tests/net/fdpass/
fdpass.c 55 struct iovec vec; local
74 vec.iov_base = &ch;
75 vec.iov_len = 1;
76 msg.msg_iov = &vec;
107 struct iovec vec; local
118 vec.iov_base = &ch;
119 vec.iov_len = 1;
120 msg.msg_iov = &vec;

Completed in 75 milliseconds

1 2 3 4 5 6