Searched refs:last (Results 1 - 25 of 479) sorted by relevance

1234567891011>>

/src/sys/external/bsd/drm2/include/linux/
H A Dinterval_tree.h48 unsigned long last; /* inclusive */ member in struct:interval_tree_node
61 if (na->last < nb->last)
63 if (na->last > nb->last)
114 unsigned long last)
121 if (last < node->start)
123 KASSERT(node->start <= last);
124 KASSERT(node->last >= start);
136 struct interval_tree_node *node, unsigned long start, unsigned long last)
113 interval_tree_iter_first(struct rb_root_cached * root,unsigned long start,unsigned long last) argument
135 interval_tree_iter_next(struct rb_root_cached * root,struct interval_tree_node * node,unsigned long start,unsigned long last) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
H A Dimage.h10 bool last; member in struct:nvbios_image
H A Dnpde.h8 bool last; member in struct:nvbios_npdeT
/src/usr.bin/last/
H A DMakefile4 PROG= last
/src/lib/libc/string/
H A Dwcstok.c54 wchar_t ** __restrict last)
62 _DIAGASSERT(last != NULL);
64 if (s == NULL && (s = *last) == NULL)
78 *last = NULL;
96 *last = s;
53 wcstok(wchar_t * __restrict s,const wchar_t * __restrict delim,wchar_t ** __restrict last) argument
/src/sys/lib/libkern/
H A Drngtest.c174 endrun(rngtest_t *const rc, const int last, int run) argument
178 "Run of %d %ds found\n", rc->rt_name, run, last);
183 ++rc->rt_runs[last][run];
193 int last; local in function:rngtest
227 last = (rc->rt_b[0] >> 7) & 1;
232 if (((c >> i) & 1) != last) {
233 endrun(rc, last, run);
235 last = (c >> i) & 1;
240 endrun(rc, last, run);
243 for (last
[all...]
/src/tests/lib/libc/gen/
H A Dt_randomid.c41 uint32_t last[65536]; variable in typeref:typename:uint32_t[65536]
56 memset(last, 0, sizeof(last));
64 if (last[id] > 0) {
65 diff = n - last[id];
69 printf("id %5d: last call at %9"PRIu32
73 id, last[id], n, diff, lowest);
83 last[id] = n;
/src/tests/lib/libc/hash/
H A Dh_hash.c71 #define CHOMP(buf, len, last) \
76 last = 1; \
84 int len, outlen, last; local in function:regress
87 last = 0;
90 CHOMP(buf, len, last);
96 while (!last &&
99 CHOMP(buf, len, last);
109 while (!last &&
112 CHOMP(buf, len, last);
/src/sys/arch/hpc/stand/libsa/
H A Dstrtok.cpp46 static char *last; local in function:strtok
48 if (s == NULL && (s = last) == NULL)
62 last = NULL;
80 last = s;
/src/games/dab/
H A Dbox.h58 last = 4, enumerator in enum:BOX::EDGE
79 static const POINT edges[BOX::last];
81 static const POINT corners[BOX::last];
83 static const int syms[BOX::last];
/src/sys/sys/
H A Dstdarg.h49 #define __builtin_va_start(ap, last) __builtin_stdarg_start((ap), (last))
57 #define va_start(ap, last) __builtin_va_start((ap), (last))
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
H A Dnouveau_nvkm_subdev_bios_image.c59 image->last = pcir.last;
65 image->last = npde.last;
67 image->last = true;
81 if (image->last || !nvbios_imagen(bios, image)) {
/src/usr.bin/vmstat/
H A Ddrvstats.c51 struct _drive cur, last; variable in typeref:struct:_drive
70 * Take the delta between the present values and the last recorded
71 * values, storing the present values in the 'last' structure, and
82 cur.fld -= last.fld; \
83 last.fld = tmp; \
89 timersub(&tmp_timer, &(last.x), &(cur.x)); \
90 timerclear(&(last.x)); \
91 timerset(&tmp_timer, &(last.x)); \
106 || cur.rxfer[i] - last.rxfer[i] > INT64_MAX
107 || cur.wxfer[i] - last
[all...]
/src/sys/arch/arm/arm32/
H A Darm11_pmc.c119 uint32_t last; local in function:delay
126 last = arm11_pmc_ccnt_read();
139 delta += (last + (counts_per_wrap - cur));
141 delta += (cur - last);
143 last = cur;
H A Dcortex_pmc.c86 uint32_t last; local in function:delay
96 last = armreg_pmccntr_read();
112 delta += (cur + (counts_per_wrap - last));
114 delta += (cur - last);
116 last = cur;
/src/sys/net/
H A Draw_usrreq.c72 struct socket *last; local in function:raw_input
74 last = NULL;
96 if (last != NULL) {
100 sbappendaddr(&last->so_rcv, src, n, NULL) == 0)
103 soroverflow(last);
105 sorwakeup(last);
107 last = rp->rcb_socket;
109 if (last != NULL) {
110 if (sbappendaddr(&last->so_rcv, src, m, NULL) == 0) {
112 soroverflow(last);
[all...]
/src/sys/arch/mips/mips/
H A Dmips3_clock.c64 uint32_t cur, last, delta, usecs; local in function:mips3_delay
66 last = mips3_cp0_count_read();
87 delta += (cur - last);
89 last = cur;
/src/usr.bin/make/
H A Dlst.c104 list->last = ln;
119 ln = LstNodeNew(list->last, NULL, datum);
121 if (list->last == NULL) {
123 list->last = ln;
125 list->last->next = ln;
126 list->last = ln;
146 if (list->last == ln)
147 list->last = ln->prev;
198 src->first->prev = dst->last;
199 if (dst->last !
[all...]
/src/games/hack/
H A Dhack.o_init.c92 int i, j, first, last, sum, end; local in function:init_objects
103 last = first + 1;
104 while (last < end && objects[last].oc_olet == let
105 && objects[last].oc_name != NULL)
106 last++;
116 for (j = first; j < last; j++)
119 for (j = first; j < last; j++)
120 objects[j].oc_prob = (100 + j - first) / (last - first);
128 while (last < en
[all...]
/src/sys/arch/arm/xscale/
H A Dbecc_timer.c220 uint32_t cur, last, delta, usecs; local in function:delay
226 last = BECC_CSR_READ(BECC_TCVRA);
233 if (last < cur)
234 delta += (last + (counts_per_hz - cur));
236 delta += (last - cur);
238 last = cur;
/src/usr.sbin/altq/altqstat/
H A Dqdisc_priq.c55 struct priq_classstats *sp, *lp, *new, *last, *tmp; local in function:priq_stat_loop
65 last = &stats2[0];
69 last[i].class_handle = PRIQ_NULLCLASS_HANDLE;
84 lp = &last[i];
113 tmp = last;
114 last = new;
/src/common/dist/zlib/examples/
H A Dgzjoin.c272 /* Copy the compressed data from name, zeroing the last block bit of the last
274 boundary. If clr is false, then the last block becomes the last block of
283 int pos; /* where the "last block" bit is in byte */
284 int last; /* true if processing the last block */ local in function:gzcopy
309 /* inflate and copy compressed data, clear last-block bit if requested */
313 last = start[0] & 1;
314 if (last
[all...]
H A Dgun.c47 encountered in an input file, it is the last stream in that file.
156 last = have ? (have--, (int)(*next++)) : -1)
203 int last; /* last byte read by NEXT(), or -1 if EOF */ local in function:lunpipe
212 unsigned end; /* last valid entry in prefix/suffix tables */
215 unsigned final; /* last character written for previous code */
227 if (last == -1)
251 final = prev = (unsigned)last; /* low 8 bits of code */
254 if (last & 1) { /* code must be < 256 */
258 rem = (unsigned)last >>
385 int ret, first, last; local in function:gunpipe
[all...]
/src/sbin/gpt/
H A Dresizedisk.c88 off_t last, oldloc, newloc, lastdata, gpt_size; local in function:resizedisk
91 last = gpt->mediasz / gpt->secsz - 1;
95 if (sector > last) {
98 (uintmax_t)last);
137 if (sector == 0 && last == oldloc) {
159 if (last - gpt_size <= lastdata) {
166 if (sector > 0 && sector < oldloc && last >= oldloc)
168 if (sector == 0 && last > oldloc)
169 newloc = last;
182 newloc = last;
[all...]
/src/lib/libc/arch/vax/sys/
H A Dexecle.S44 pushl (%ap)[%r0] # Push last arg (envp)

Completed in 23 milliseconds

1234567891011>>