/src/sys/external/bsd/drm2/include/linux/ |
interval_tree.h | 48 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) [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/ |
image.h | 10 bool last; member in struct:nvbios_image
|
npde.h | 8 bool last; member in struct:nvbios_npdeT
|
/src/usr.bin/last/ |
Makefile | 4 PROG= last
|
/src/lib/libc/string/ |
wcstok.c | 54 wchar_t ** __restrict last) 62 _DIAGASSERT(last != NULL); 64 if (s == NULL && (s = *last) == NULL) 78 *last = NULL; 96 *last = s;
|
/src/sys/lib/libkern/ |
rngtest.c | 174 endrun(rngtest_t *const rc, const int last, int run) 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 = 0; last <= 1; ++last) [all...] |
/src/tests/lib/libc/gen/ |
t_randomid.c | 41 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_hash.c | 71 #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/games/dab/ |
box.h | 58 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/arch/hpc/stand/libsa/ |
strtok.cpp | 46 static char *last; local in function:strtok 48 if (s == NULL && (s = last) == NULL) 62 last = NULL; 80 last = s;
|
/src/sys/sys/ |
stdarg.h | 49 #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/ |
nouveau_nvkm_subdev_bios_image.c | 59 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/ |
drvstats.c | 51 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.wxfer[i] > INT64_MA [all...] |
/src/sys/arch/arm/arm32/ |
arm11_pmc.c | 119 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;
|
cortex_pmc.c | 86 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/ |
raw_usrreq.c | 72 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/ |
mips3_clock.c | 64 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/ |
lst.c | 104 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 != NULL [all...] |
/src/games/hack/ |
hack.o_init.c | 92 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 < end && objects[last].oc_olet == let [all...] |
/src/sys/arch/arm/xscale/ |
becc_timer.c | 220 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/ |
qdisc_priq.c | 55 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/ |
gzjoin.c | 272 /* 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 && clr [all...] |
gun.c | 47 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 >> 1; /* remaining 7 bits * 385 int ret, first, last; local in function:gunpipe [all...] |
/src/sbin/gpt/ |
resizedisk.c | 88 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/ |
execle.S | 44 pushl (%ap)[%r0] # Push last arg (envp)
|