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

1 2 3 4

  /src/lib/libc/sys/
Lint_sbrk.c 12 sbrk(intptr_t incr)
  /src/common/dist/zlib/contrib/infback9/
inftree9.c 44 unsigned incr; /* for incrementing code, index */ local in function:inflate_table9
222 incr = 1U << (len - drop);
225 fill -= incr;
230 incr = 1U << (len - 1);
231 while (huff & incr)
232 incr >>= 1;
233 if (incr != 0) {
234 huff &= incr - 1;
235 huff += incr;
304 incr = 1U << (len - 1)
    [all...]
  /src/lib/libc/gen/
nice.c 56 nice(int incr)
64 if (setpriority(PRIO_PROCESS, 0, prio + incr) == -1) {
initdir.c 60 int incr; local in function:_initdir
69 incr = pagesz;
71 incr = DIRBLKSIZ;
112 space += incr;
113 len += incr;
244 dirp->dd_len = incr;
  /src/usr.bin/seq/
seq.c 108 double incr = 0.0; local in function:main
160 "usage: %s [-w] [-f format] [-s string] [-t string] [first [incr]] last\n",
176 incr = e_atof(argv[1]);
181 if (incr == 0.0)
186 if (incr == 0.0)
187 incr = (first < last) ? 1.0 : -1.0;
189 if (incr <= 0.0 && first < last)
192 if (incr >= 0.0 && first > last)
212 fmt = generate_format(first, incr, last, equalize, pad, fmt);
215 if (incr > 0)
    [all...]
  /src/common/dist/zlib/
inftrees.c 46 unsigned incr; /* for incrementing code, index */ local in function:inflate_table
228 incr = 1U << (len - drop);
232 fill -= incr;
237 incr = 1U << (len - 1);
238 while (huff & incr)
239 incr >>= 1;
240 if (incr != 0) {
241 huff &= incr - 1;
242 huff += incr;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_vm_cpu.c 82 * @incr: increase next addr by incr bytes
89 uint64_t addr, unsigned count, uint32_t incr,
97 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags, p->direct);
105 addr += incr;
amdgpu_vm_sdma.c 169 * @incr: increase next addr by incr bytes
178 uint32_t incr, uint64_t flags)
183 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags, p->direct);
186 count, incr);
189 count, incr, flags);
201 * @incr: increase next addr by incr bytes
209 uint64_t addr, unsigned count, uint32_t incr,
243 count, incr, flags)
    [all...]
amdgpu_vm.h 173 uint32_t incr);
178 uint32_t incr, uint64_t flags);
240 unsigned count, uint32_t incr, uint64_t flags);
366 #define amdgpu_vm_write_pte(adev, ib, pe, value, count, incr) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pe), (value), (count), (incr)))
367 #define amdgpu_vm_set_pte_pde(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->set_pte_pde((ib), (pe), (addr), (count), (incr), (flags)))
  /src/usr.bin/m4/lib/
ohash_lookup_interval.c 26 unsigned int i, incr; local in function:ohash_lookup_interval
34 incr = ((hv % (h->size-2)) & ~1) + 1;
58 i += incr;
ohash_lookup_memory.c 25 unsigned int i, incr; local in function:ohash_lookup_memory
33 incr = ((hv % (h->size-2)) & ~1) + 1;
54 i += incr;
ohash_do.c 29 unsigned int i, incr; local in function:ohash_resize
50 incr = ((h->t[j].hv % (ns - 2)) & ~1) + 1;
52 i += incr;
  /src/usr.bin/renice/
renice.c 67 int prio, errs = 0, incr = 0; local in function:main
74 incr = 1;
117 errs += donice(which, who, prio, incr);
145 donice(int which, id_t who, int prio, int incr)
155 if (incr)
176 (void)fprintf(stderr, "Usage: %s [<priority> | -n <incr>] ",
  /src/usr.sbin/bootp/common/
getif.c 53 int len, m, incr; local in function:getif
104 incr = sizeof(*ifrq);
106 incr = ifrq->ifr_addr.sa_len + IFNAMSIZ;
109 p += incr;
110 len -= incr;
  /src/share/examples/refuse/fanoutfs/
defs.h 67 #define ALLOC(type, v, size, c, init, incr, where, action) do { \
73 _newsize = size + incr; \
79 /* (void) memset(&v[size], 0x0, sizeof(type) * incr); \*/
  /src/share/examples/refuse/id3fs/
defs.h 67 #define ALLOC(type, v, size, c, init, incr, where, action) do { \
73 _newsize = size + incr; \
79 /* (void) memset(&v[size], 0x0, sizeof(type) * incr); \*/
  /src/share/examples/refuse/virtdir/
defs.h 67 #define ALLOC(type, v, size, c, init, incr, where, action) do { \
73 _newsize = size + incr; \
79 /* (void) memset(&v[size], 0x0, sizeof(type) * incr); \*/
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_trace.h 87 uint32_t incr, uint32_t flags),
88 TP_ARGS(pe, addr, count, incr, flags),
93 __field(u32, incr)
101 __entry->incr = incr;
104 TP_printk("pe=%010Lx, addr=%010Lx, incr=%u, flags=%08x, count=%u",
105 __entry->pe, __entry->addr, __entry->incr,
radeon_si_dma.c 105 * @incr: increase next addr by incr bytes
114 uint32_t incr, uint32_t flags)
136 addr += incr;
152 * @incr: increase next addr by incr bytes
161 uint32_t incr, uint32_t flags)
184 ib->ptr[ib->length_dw++] = incr; /* increment size */
187 addr += (ndw / 2) * incr;
radeon_ni_dma.c 353 * @incr: increase next addr by incr bytes
362 uint32_t incr, uint32_t flags)
385 addr += incr;
401 * @incr: increase next addr by incr bytes
410 uint32_t incr, uint32_t flags)
433 ib->ptr[ib->length_dw++] = incr; /* increment size */
437 addr += (ndw / 2) * incr;
  /src/sys/external/bsd/drm2/include/
radeon_trace.h 96 unsigned count __unused, uint32_t incr __unused, uint32_t flags __unused)
  /src/sys/netinet/
tcp_congctl.c 596 u_int incr = tp->t_segsz; local in function:tcp_reno_newack
613 incr = 0;
625 tp->snd_nxt != tp->snd_max) ? incr : incr * 2;
626 incr = uimin(acked, abc_lim);
638 incr = incr * incr / cw;
642 tp->snd_cwnd = uimin(cw + incr, TCP_MAXWIN << tp->snd_scale);
  /src/games/hunt/huntd/
makemaze.c 57 static const int incr[NDIR][2] = {
108 ip = &incr[*dp++][0];
  /src/sys/kern/
kern_rwlock.c 285 uintptr_t owner, incr, need_wait, set_wait, curthread, next; local in function:rw_vector_enter
317 incr = RW_READ_INCR;
323 incr = curthread | RW_WRITE_LOCKED;
338 next = rw_cas(rw, owner, (owner + incr) &
552 uintptr_t curthread, owner, incr, need_wait, next; local in function:rw_vector_tryenter
561 incr = RW_READ_INCR;
565 incr = curthread | RW_WRITE_LOCKED;
572 next = rw_cas(rw, owner, owner + incr);
  /src/usr.bin/m4/TEST/
string.m4 45 define(str,`ifelse($2,",,data $1(incr($3))/`LET'substr($2,0,1)/
46 `str($1,substr($2,1),incr($3))')')

Completed in 181 milliseconds

1 2 3 4