Lines Matching refs:first

40  * first.
1062 * Read in contiguous digits until the first non-digit character.
3349 * dtrace_getupcstack() fills in the first uint64_t
4367 * of the specified character instead of the first.
4748 * If the first element selector key is
5229 * that we processed immediately before that is the first
5271 * looking for a basename, we'll just set the first
5289 * slash must be the first character. (That
6687 * We will first allocate some temporary space for the frame pointers.
8263 * provider after the first provider.
8303 dtrace_probe_t *probe, *first = NULL;
8403 if (first == NULL) {
8404 first = probe;
8407 probe->dtpr_nextmod = first;
8408 first = probe;
8419 for (probe = first; probe != NULL; probe = first) {
8420 first = probe->dtpr_nextmod;
10558 * We're the first ECB on this probe.
10592 * we always record it first.)
10627 * This is the first record in a tuple. Align
11834 * - The first (and presumably most common) is that there is no gap
11839 * - The second (less common than the first but still more common
12928 dtrace_actdesc_t *act, *first = NULL, *last = NULL, *next;
13027 first = act;
13045 ASSERT(first != NULL);
13046 return (first);
13049 for (act = first; act != NULL; act = next) {
13347 * relocations that are present. We do this after the first pass to
13520 * NCPUs, we're just going to allocate everything to the first
14166 * this is the first enabling to have an unprivileged call
14180 * probe (the data from this CPU will be processed first at user
14414 * ECBs: in the first, we disable just DTRACE_PRIV_KERNEL probes, and
15685 dtrace_probe_t template, *probe, *first, *next;
15705 for (probe = first = dtrace_hash_lookup(dtrace_bymod, &template);
15731 probe = first;
15733 for (first = NULL; probe != NULL; probe = next) {
15743 if (first == NULL) {
15744 first = probe;
15747 probe->dtpr_nextmod = first;
15748 first = probe;
15759 for (probe = first; probe != NULL; probe = first) {
15760 first = probe->dtpr_nextmod;
16161 * There is anonymous state. Destroy that first.