| /xnu-11215/libkern/zlib/ |
| H A D | inftrees.c | 62 unsigned short FAR *work) in inflate_table() argument 171 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table() 208 base = extra = work; /* dummy value--not used */ in inflate_table() 241 if (work[sym] + 1 < match) { in inflate_table() 243 this.val = work[sym]; in inflate_table() 245 else if (work[sym] >= match) { in inflate_table() 246 this.op = (unsigned char)(extra[work[sym] - match]); in inflate_table() 247 this.val = base[work[sym] - match]; in inflate_table() 278 len = lens[work[sym]]; in inflate_table()
|
| H A D | infback.c | 122 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables() 129 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables() 404 &(state->lenbits), state->work); in inflateBack() 470 &(state->lenbits), state->work); in inflateBack() 479 &(state->next), &(state->distbits), state->work); in inflateBack()
|
| H A D | inftrees.h | 82 unsigned FAR *bits, unsigned short FAR *work));
|
| H A D | inflate.h | 140 unsigned short work[288]; /* work area for code table building */ member
|
| H A D | README | 18 the top of Makefile. In short "make test; make install" should work for most 68 - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1 it works 74 - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with
|
| H A D | inflate.c | 251 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables() 258 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables() 904 &(state->lenbits), state->work); in inflate() 971 &(state->lenbits), state->work); in inflate() 980 &(state->next), &(state->distbits), state->work); in inflate()
|
| /xnu-11215/tools/tests/execperf/ |
| H A D | run.c | 16 void *work(void *); 36 ret = pthread_create(&threads[i], NULL, work, (void *)(intptr_t)count); in main() 61 work(void *arg) in work() function
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IODMAEventSource.cpp | 205 bool work, again; in checkForWork() local 208 work = !queue_empty(&dmaCommandsCompleted); in checkForWork() 209 if (work) { in checkForWork() 217 if (work) { in checkForWork()
|
| /xnu-11215/tests/ |
| H A D | select_stress.c | 33 thread_func work; member 65 T_ASSERT_TRUE(((a != NULL) && (a->work != NULL)), "thread setup error"); in thread_sync() 72 return (a->work)(&a->ep); in thread_sync() 262 th[i].work = do_stress_events; in test_select_stress()
|
| H A D | stackshot_idle_25570396.m | 152 T_QUIET; T_ASSERT_NOTNULL(thread_wait, "Initializing work queue semaphore"); 217 * stackshot. Where this is called, the blocking jobs have been cleared from the work queue, 218 * and the work queue has NUMENQUEUES tight-spinning jobs on it. Make sure that 259 T_ASSERT_POSIX_ZERO(ret, "Spinning up non-work-queue thread"); 271 T_ASSERT_POSIX_ZERO(ret, "Joining on non-work-queue thread");
|
| /xnu-11215/osfmk/conf/ |
| H A D | copyright.osf | 19 # distributes any derivative work based on or derived from the 21 # distribution of the derivative work, (2) clearly notify users 22 # that such derivative work is a modified version and not the
|
| /xnu-11215/doc/primitives/ |
| H A D | sched_cond.md | 79 …been issued, the consumer immediately acks the wakeup and returns to re-enter the work loop. Else, 84 …option of `sched_cond_*` involves adding an additional step (ack) to the consumers work loop. This 87 … be coalesced without potential loss of data. By ack-ing the wakeup *prior* to doing work, wakeups
|
| /xnu-11215/iokit/DriverKit/ |
| H A D | IODispatchQueue.iig | 116 * @brief Stop the queue from executing futher work. 117 …* @discussion Stops the queue from dequeuing work, and on completion of any block currently being… 119 * @param handler Block that will executed when the queue has completed any inflight work 120 * and will not execute further work. 128 …* @discussion Schedules work to be done on the queue without waiting for it to complete. The queu… 143 * @discussion Schedules work to be done on the queue without waiting for it to complete, and
|
| /xnu-11215/tools/tests/affinity/ |
| H A D | sets.c | 63 typedef struct work { struct 64 TAILQ_ENTRY(work) link; 74 TAILQ_HEAD(, work) queue;
|
| H A D | pool.c | 61 typedef struct work { struct 62 TAILQ_ENTRY(work) link; 75 TAILQ_HEAD(, work) queue;
|
| /xnu-11215/san/coverage/ |
| H A D | kcov-blacklist-arm64 | 6 # These use a local variable to work out which stack we're on, but can end up with
|
| /xnu-11215/doc/observability/ |
| H A D | mt_stackshot.md | 20 work based on perfcontrol's recommendation. (We need to do this because even if 37 do its work - each CPU has its own execution context and no context switching 43 In order to split up work between CPUs, each task is put into a workqueue for 46 "difficulty" (i.e. the number of threads they have). E cores will work on the 47 easier queue first, and P cores will work on the harder queue first. Once a CPU
|
| /xnu-11215/doc/debugging/ |
| H A D | macro_testing.md | 3 How to work with bundled unit test framework. 6 validate that the changes work in their environment before integration.
|
| /xnu-11215/san/memory/ |
| H A D | kasan-blacklist-arm64 | 12 # These use a local variable to work out which stack we're on, but can end up with
|
| /xnu-11215/osfmk/vm/ |
| H A D | lz4.h | 84 void * __restrict work __attribute__((unused)));
|
| /xnu-11215/doc/building/ |
| H A D | bound_checks.md | 133 root-cause. This **will** take precedence over any other work that you could 147 re-nominate feature work that must be backed out. Significant -fbounds-safety 150 sadness and reprised work.
|
| H A D | xnu_build_consolidation.md | 47 Prior to this work, these values were hardcoded for each supported target in `proc_reg.h`, and used… 66 The changes applied as part of this work focus mainly on:
|
| /xnu-11215/ |
| H A D | APPLE_LICENSE | 10 work which Apple Computer, Inc. ("Apple") makes publicly available and 12 work as "Original Code" and stating that it is subject to the terms of 40 1.5 "Larger Work" means a work which combines Covered Code or portions 53 work as originally made available by Apple under this License, 57 work; and (b) the object code compiled from such Source Code and 61 work that is suitable for making modifications to it, including all
|
| /xnu-11215/bsd/dev/dtrace/ |
| H A D | fasttrap.c | 511 uint32_t work = 0; in fasttrap_pid_cleanup_cb() local 517 work = os_atomic_xchg(&fasttrap_cleanup_work, 0, relaxed); in fasttrap_pid_cleanup_cb() 519 if (work & FASTTRAP_CLEANUP_PROVIDER) { in fasttrap_pid_cleanup_cb() 522 if (work & FASTTRAP_CLEANUP_TRACEPOINT) { in fasttrap_pid_cleanup_cb() 554 fasttrap_pid_cleanup(uint32_t work) in fasttrap_pid_cleanup() argument 557 os_atomic_or(&fasttrap_cleanup_work, work, relaxed); in fasttrap_pid_cleanup()
|
| /xnu-11215/doc/vm/ |
| H A D | memorystatus_kills.md | 45 …This generally indicates a programming error in the daemon (they're doing work without holding a t… 108 Many system services (especially dasd) check the pressure level before doing work, so it's not good…
|