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

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/syspkg/sets/base/base-locale-it/
Makefile 3 PKGBASE=base-locale-it
  /src/tests/lib/libc/sys/
t_getitimer.c 64 struct itimerval it; local in function:ATF_TC_BODY
71 (void)memset(&it, 0, sizeof(struct itimerval));
73 ATF_REQUIRE(getitimer(ITIMER_REAL, &it) == 0);
75 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0)
78 ATF_REQUIRE(getitimer(ITIMER_VIRTUAL, &it) == 0);
80 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0)
83 ATF_REQUIRE(getitimer(ITIMER_PROF, &it) == 0);
85 if (it.it_value.tv_sec != 0 || it.it_value.tv_usec != 0
102 struct itimerval it; local in function:ATF_TC_BODY
122 struct itimerval it; local in function:ATF_TC_BODY
156 struct itimerval it, ot; local in function:ATF_TC_BODY
176 struct itimerval it, ot; local in function:ATF_TC_BODY
213 const struct itimerval it[] = { local in function:ATF_TC_BODY
    [all...]
t_sigtimedwait.c 80 struct itimerval it; local in function:ATF_TC_BODY
84 memset(&it, 0, sizeof it);
85 it.it_value.tv_sec = 5;
86 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, NULL) == 0);
  /src/tests/usr.bin/indent/
lsym_for.c 53 #define foreach(list, it) for (it = list.first; it != NULL; it = it->next)
65 /* $ No space after 'foreach' since it looks like a function name. */
66 foreach(list, it)
67 println(it->data);
69 /* $ No space after 'foreach' since it looks like a function name. */
70 foreach(list, it) {
    [all...]
  /src/usr.bin/xlint/lint1/
cksnprintb.c 51 quoted_iterator it; member in struct:__anon8d91d2610108
60 len(quoted_iterator it)
62 return (int)(it.end - it.start);
72 start(quoted_iterator it, const buffer *buf)
74 return buf->data + it.start;
78 val(quoted_iterator it)
80 return it.value;
84 check_hex_escape(const buffer *buf, quoted_iterator it)
86 if (it.hex_digits > 1)
141 quoted_iterator it = ck->it; local in function:parse_description
162 quoted_iterator *it = &ck->it; local in function:check_conversion
    [all...]
lex.c 58 /* Current position (it's also updated when an included file is parsed) */
77 * example, if the keyword '_Generic' were not defined, it would be interpreted
432 * and return it as an unsigned char or as EOF.
729 quoted_next(const buffer *lit, quoted_iterator *it)
733 *it = (quoted_iterator){ .start = it->end };
737 bool in_the_middle = it->start > 0;
739 it->start = s[0] == 'L' ? 2 : 1;
740 it->end = it->start
873 quoted_iterator it = { .end = 0 }, prev = it; local in function:check_quoted
951 quoted_iterator it = { .end = 0 }; local in function:lex_character_constant
991 quoted_iterator it = { .end = 0 }; local in function:lex_wide_character_constant
1400 quoted_iterator it = { .end = 0 }; local in function:lex_wide_string
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/
comparesf2.S 53 // effect this at all, but it *does* make sure that the C flag is clear for
59 it ne
66 it pl
79 it lo
86 it hi
90 // 0 if a >= b. All that remains to be done is to set it to 1 if a > b.
93 it ne
117 it ne
119 it pl
121 it l
    [all...]
  /src/sys/kern/
kern_time.c 137 * Don't allow the time to be set forward so far it
142 * past the cutoff, it will take a very long time
231 * comparatively less often than timers firing, and so it's better
235 struct itimer *it; local in function:settime1
237 LIST_FOREACH(it, &itimer_realtime_changed_notify, it_rtchgq) {
238 KASSERT(it->it_ops->ito_realtime_changed != NULL);
239 if (timespecisset(&it->it_time.it_value)) {
240 (*it->it_ops->ito_realtime_changed)(it);
529 * fake up a timezone struct and return it if demanded
852 struct itimer * const it = arg; local in function:itimer_callout
1037 struct itimer *it; local in function:ptimer_free
1315 struct itimer *it, *itn; local in function:sys_timer_delete
1390 struct itimer *it; local in function:dotimer_settime
1482 struct itimer *it; local in function:dotimer_gettime
1516 struct itimer *it; local in function:sys_timer_getoverrun
1566 struct itimer *it; local in function:dogetitimer
1630 struct itimer *it; local in function:dosetitimer
1747 struct itimer *it; local in function:ptimer_tick
1779 struct itimer *it; local in function:ptimer_intr
    [all...]
subr_time_arith.c 107 * fit in an unsigned long. Compute the total and convert it to
116 * case, but it is slightly slower and assumes that hz is integral.
140 * and callers need to check for it.
189 * fix it to have at least minimal value (i.e. if it is less
190 * than the resolution of the clock, round it up.). We don't
223 * True if tsp + usp can be computed without overflow, i.e., if it
250 * Break it into two mutually exclusive and exhaustive cases:
319 * timespecadd, so to avoid overflow it is not enough
322 * It is safe to compute the difference TIME_MIN -
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_win_dll_thunk.cc 78 for (DllThunkCB *it = &__start_dll_thunk; it < &__stop_dll_thunk; ++it) local in function:__dll_thunk_init
79 if (*it)
80 (*it)();
sanitizer_win_weak_interception.cc 9 // This module should be included in the sanitizer when it is implemented as a
72 for (InterceptCB *it = &__start_weak_list; it < &__stop_weak_list; ++it) local in function:weak_intercept_init
73 if (*it)
74 (*it)();
  /src/tests/lib/libpthread/
t_sleep.c 73 struct itimerval it; local in function:ATF_TC_BODY
91 timerclear(&it.it_interval);
92 timerclear(&it.it_value);
93 it.it_value.tv_sec = 1;
94 setitimer(ITIMER_REAL, &it, NULL);
  /src/usr.bin/make/unit-tests/
varname-dot-newline.exp 1 make: varname-dot-newline.mk:28: Cannot overwrite ".newline" as it is read-only
3 make: varname-dot-newline.mk:30: Cannot append to ".newline" as it is read-only
5 make: varname-dot-newline.mk:32: Cannot delete ".newline" as it is read-only
var-readonly.exp 1 Global: ignoring delete 'N' as it is read-only
opt-chdir.mk 14 # In this test, it is the root directory since almost any other directory
20 # Note: just because the whole point of /nonexistent is that it should
21 # not exist - doesn't mean it doesn't.
cond-func-commands.mk 7 # At this point, the target 'target' does not exist yet, therefore it cannot
8 # have commands. Sounds obvious, but good to know that it is really so.
15 # Now the target exists, but it still has no commands.
  /src/lib/libc/gen/
alarm.c 55 struct itimerval it, oitv; local in function:__weak_alias
56 struct itimerval *itp = &it;
  /src/sys/arch/x86/x86/
bus_space.c 79 * will indicate that it's safe to use malloc() to dynamically allocate
161 bus_space_tag_t it; local in function:bus_space_map
166 else for (it = t; it != NULL; it = it->bst_super) {
167 if ((it->bst_present & BUS_SPACE_OVERRIDE_MAP) == 0)
169 return (*it->bst_ov->ov_space_map)(it->bst_ctx, t, bpa, size,
190 bus_space_tag_t it; local in function:bus_space_reservation_map
256 bus_space_tag_t it; local in function:bus_space_reserve
305 bus_space_tag_t it; local in function:bus_space_reserve_subregion
359 bus_space_tag_t it; local in function:bus_space_release
396 bus_space_tag_t it; local in function:bus_space_alloc
585 bus_space_tag_t it; local in function:bus_space_reservation_unmap
607 bus_space_tag_t it; local in function:bus_space_unmap
627 bus_space_tag_t it; local in function:bus_space_free
    [all...]
bus_dma.c 418 * First attempt failed; bounce it.
619 * First attempt failed; bounce it.
844 * never reorders loads from wp/wt/wb or uc memory, but it
1000 * to wp/wt/wb or uc memory, but it may reorder two stores
1379 bus_dma_tag_t it; local in function:bus_dmamap_sync
1386 else for (it = t; it != NULL; it = it->bdt_super) {
1387 if ((it->bdt_present & BUS_DMAMAP_OVERRIDE_SYNC) == 0
1402 bus_dma_tag_t it; local in function:bus_dmamap_create
1420 bus_dma_tag_t it; local in function:bus_dmamap_destroy
1438 bus_dma_tag_t it; local in function:bus_dmamap_load
1459 bus_dma_tag_t it; local in function:bus_dmamap_load_mbuf
1480 bus_dma_tag_t it; local in function:bus_dmamap_load_uio
1502 bus_dma_tag_t it; local in function:bus_dmamap_load_raw
1522 bus_dma_tag_t it; local in function:bus_dmamap_unload
1541 bus_dma_tag_t it; local in function:bus_dmamem_alloc
1559 bus_dma_tag_t it; local in function:bus_dmamem_free
1577 bus_dma_tag_t it; local in function:bus_dmamem_map
1594 bus_dma_tag_t it; local in function:bus_dmamem_unmap
1612 bus_dma_tag_t it; local in function:bus_dmamem_mmap
1630 bus_dma_tag_t it; local in function:bus_dmatag_subregion
1647 bus_dma_tag_t it; local in function:bus_dmatag_destroy
    [all...]
  /src/usr.sbin/sysinst/arch/hpcsh/
msg.md.en 42 {If you booted from an external device, you may now remove it.
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_scheduler.h 18 #define priolist_for_each_request(it, plist, idx) \
20 list_for_each_entry(it, &(plist)->requests[idx], sched.link)
22 #define priolist_for_each_request_consume(it, n, plist, idx) \
26 list_for_each_entry_safe(it, n, \
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
nouveau_nvkm_subdev_mmu_vmm.c 105 nvkm_vmm_trace(struct nvkm_vmm_iter *it, char *buf)
108 for (lvl = it->max; lvl >= 0; lvl--) {
109 if (lvl >= it->lvl)
110 buf += sprintf(buf, "%05x:", it->pte[lvl]);
127 nvkm_vmm_flush_mark(struct nvkm_vmm_iter *it)
129 it->flush = min(it->flush, it->max - it->lvl);
133 nvkm_vmm_flush(struct nvkm_vmm_iter *it)
515 struct nvkm_vmm_iter it; local in function:nvkm_vmm_iter
    [all...]
  /src/sys/dev/ieee1394/
fwdev.c 103 struct fw_xferq *it; member in struct:fw_drv1
207 if (d->it != NULL) {
208 struct fw_xferq *it = d->it; local in function:fw_close
210 if ((it->flag & FWXFERQ_OPEN) == 0)
212 if (it->flag & FWXFERQ_RUNNING) {
213 it->flag &= ~FWXFERQ_RUNNING;
214 fc->itx_disable(fc, it->dmach);
217 fwdev_freebuf(it);
218 it->flag &
313 struct fw_xferq *it; local in function:fw_write
390 struct fw_xferq *ir, *it; local in function:fw_ioctl
    [all...]
  /src/sys/netinet/
sctp_timer.c 187 * change before we fail it.
371 * before we can mark it ..
396 * be the bounds and don't worry about it. This
460 * If it is less than DATAGRAM_ACKED it MUST
475 * seconds past our min.. forget it we will
489 /* ok it was sent after our boundary time. */
503 /* Is it expired? */
507 /* Yes so drop it */
782 * the association. This may fail it if SACKs are not comin
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 38 for (typename BV::Iterator it(bv); it.hasNext();) { local in function:CheckBV
39 uptr idx = it.next();
71 for (set<uptr>::iterator it = s.begin(); it != s.end(); ++it) { local in function:Print
72 fprintf(stderr, "%lu ", *it);
95 for (uptr it = 0; it < 1000; it++) local in function:TestBitVector
114 for (uptr it = 0; it < 30; it++) { local in function:TestBitVector
    [all...]

Completed in 58 milliseconds

1 2 3 4 5 6 7 8 91011>>