| /xnu-11215/tools/cocci/ |
| H A D | OSAtomic_rewrite.cocci | 83 @@ expression E, F; @@ 86 - OSAddAtomic(-F, E) 89 - OSAddAtomic8(-F, E) 92 - OSAddAtomic16(-F, E) 95 - OSAddAtomic32(-F, E) 104 - OSAddAtomic(F, E) 107 - OSAddAtomic8(F, E) 110 - OSAddAtomic16(F, E) 113 - OSAddAtomic32(F, E) 116 - OSAddAtomic64(F, E) [all …]
|
| H A D | hw_atomic_rewrite.cocci | 16 - hw_atomic_add(E, -F) + F 19 - hw_atomic_add(E, -F) 28 - hw_atomic_add(E, F) - F 31 - hw_atomic_add(E, F) 44 - hw_atomic_sub(E, -F) - F 47 - hw_atomic_sub(E, -F) 56 - hw_atomic_sub(E, F) + F 59 - hw_atomic_sub(E, F) 66 - hw_atomic_and(E, ~F) 69 - hw_atomic_and(E, F) [all …]
|
| H A D | os_atomic_normalize.cocci | 30 @@ expression E, F, m; @@ 57 - os_atomic_add(E, -(F), m) 58 + os_atomic_sub(E, F, m) 63 - os_atomic_add(E, -F, m) 64 + os_atomic_sub(E, F, m) 69 - os_atomic_sub(E, -(F), m) 70 + os_atomic_add(E, F, m) 75 - os_atomic_sub(E, -F, m) 76 + os_atomic_add(E, F, m) 81 - os_atomic_and(E, ~(F), m) [all …]
|
| H A D | zalloc-zero.cocci | 7 expression E, F, G; 20 - E = zalloc(F); 21 + E = zalloc_flags(F, Z_WAITOK | Z_ZERO); 33 - E = kalloc(F); 34 + E = kalloc_flags(F, Z_WAITOK | Z_ZERO); 45 - bzero(E, F); 50 - T V = zalloc(F); 51 + T V = zalloc_flags(F, Z_WAITOK | Z_ZERO); 64 - T V = kalloc(F); 65 + T V = kalloc_flags(F, Z_WAITOK | Z_ZERO); [all …]
|
| H A D | zalloc.iso | 7 expression E, F; 10 memset(E, 0, F) <=> bzero(E, F) <=> bzero((T)E, F) 21 expression E, F; 24 (T)zalloc_flags(E, F) <=> zalloc_flags(E, F) 35 expression E, F; 38 (T)kalloc_flags(E, F) <=> kalloc_flags(E, F) 42 expression E, F; 45 (T)kalloc_data(E, F) <=> kalloc_data(E, F) 49 expression E, F; 52 (T)kalloc_type(E, F) <=> kalloc_type(E, F)
|
| H A D | zalloc-nofail.cocci | 7 expression E, F; 15 E = zalloc_flags(F, \(Z_NOFAIL\|Z_NOFAIL | ...\)); 17 E = kalloc_type(F, \(Z_NOFAIL\|Z_NOFAIL | ...\)); 21 - E = zalloc(F); 22 + E = zalloc_flags(F, Z_WAITOK | Z_NOFAIL); 24 E = zalloc_flags(F, \(Z_WAITOK\| Z_WAITOK | ...\) 36 - E = kalloc(sizeof(F)); 37 + E = kalloc_flags(sizeof(F), Z_WAITOK | Z_NOFAIL); 55 T V = zalloc_flags(F, \(Z_NOFAIL\|Z_NOFAIL | ...\)); 61 - T V = kalloc(sizeof(F)); [all …]
|
| H A D | zalloc-data.cocci | 7 expression D, E, F, G; 12 - kheap_alloc(KHEAP_DATA_BUFFERS, E, F) 13 + kalloc_data(E, F) 15 - (T)kheap_alloc(KHEAP_DATA_BUFFERS, E, F) 16 + (T)kalloc_data(E, F) 18 - kheap_alloc_tag(KHEAP_DATA_BUFFERS, E, F, G) 19 + kalloc_data_tag(E, F, G) 21 - kheap_free(KHEAP_DATA_BUFFERS, E, F) 22 + kfree_data(E, F)
|
| H A D | c11_atomic_builtin_rewrite.cocci | 98 expression E, F; 133 , F, 139 expression E, F, G; 158 - &F, G, m, memory_order_relaxed 159 + F, G, &F, new_m
|
| /xnu-11215/bsd/dev/dtrace/scripts/ |
| H A D | io.d | 200 fi_name = (F == NULL) ? "<none>" : 201 F->fg_ops->fo_type == DTYPE_VNODE ? 202 …((struct vnode *)F->fg_data)->v_name == NULL ? "<unknown (NULL v_name)>" : ((struct vnode *)F->fg_… 210 fi_dirname = (F == NULL) ? "<none>" : 216 fi_pathname = (F == NULL) ? "<none>" : 224 ((struct vnode *)F->fg_data)->v_name))); 226 fi_offset = (F == NULL) ? 0 : 227 F->fg_offset; 229 fi_fs = (F == NULL) ? "<none>" : 233 fi_mount = (F == NULL) ? "<none>" : [all …]
|
| H A D | Makefile | 52 @$(LOG_INSTALL) $(@F) 57 @$(LOG_INSTALL) $(@F) 65 @$(LOG_INSTALL) $(@F)
|
| /xnu-11215/bsd/net/ |
| H A D | strict_type_cnv_private.h | 120 #define __STC_TY_TY_CNV_F(F, T) __stc_convert_##F##_to_##T argument 121 #define __STC_CTY_TY_CNV_F(F, T) __stc_convert_const_##F##_to_##T argument 122 #define __STC_CTY_CTY_CNV_F(F, T) __stc_convert_const_##F##_to_const_##T argument 123 #define __STC_TY_ID_CNV_F(F) __stc_convert_##F##_identity argument 124 #define __STC_CTY_ID_CNV_F(F) __stc_convert_const_##F##_identity argument 125 #define __STC_CTY_CID_CNV_F(F) __stc_convert_##F##_const_identity argument
|
| /xnu-11215/libkern/ |
| H A D | mkext.c | 84 #define F 18 /* upper limit for match_length */ macro 98 u_int8_t text_buf[N + F - 1]; 112 u_int8_t text_buf[N + F - 1]; in decompress_lzss() 122 for (i = 0; i < N - F; i++) { in decompress_lzss() 125 r = N - F; in decompress_lzss() 194 for (i = 0; i < N - F; i++) { in init_state() 242 for (i = 1; i < F; i++) { in insert_node() 249 if ((sp->match_length = i) >= F) { in insert_node()
|
| /xnu-11215/makedefs/ |
| H A D | MakeInc.kernel | 137 @$(LOG_STRIP) "$(@F)" 142 @$(LOG_CTFMERGE) "$(@F)" 160 @$(LOG_CTFMERGE) "$(@F)" 174 @$(LOG_DSYMUTIL) "$(@F)" 184 @$(LOG_LIBTOOL) "$(@F)" 192 @$(LOG_LTO) "$(@F)" 219 @$(LOG_LD) "$(@F)" 233 @$(LOG_LD) "$(@F)" 246 @$(LOG_LIBTOOL) "$(@F)" 402 @$(LOG_INSTALL) "$(@F)" [all …]
|
| H A D | MakeInc.san | 43 …@$$(LOG_INSTALLVARIANT) "$$(Color0)symbolset $$(ColorF)$$(@F)$$(Color0) ($$(ColorLF)$$(CURRENT_KER…
|
| /xnu-11215/bsd/miscfs/devfs/ |
| H A D | reproto.sh | 41 if(open(F, \$file) == 0) { 46 while(<F>) { 64 close F;
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | ruff.toml | 1 # Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default. 2 select = ["E", "F"] 6 fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "C…
|
| /xnu-11215/bsd/sys/ |
| H A D | constrained_ctypes.h | 547 #define __CCT_DEFER(F, ...) F(__VA_ARGS__) argument
|
| /xnu-11215/doc/primitives/ |
| H A D | sched_cond.md | 67 sched_cond_ack(&my_cond); // (F) 76 …t already been issued an un-acked wakeup. Conversely, the consumer acks the wakeup (F) once awake, 78 …ing that it is inactive and checking for any wakeups that have been issued since the last ack (F).
|
| /xnu-11215/bsd/netinet/ |
| H A D | ip_dummynet.c | 444 qp->F = q->F; in cp_queue_to_32_user() 466 qp->F = q->F; in cp_queue_to_64_user() 938 q->S = q->F; /* update start time */ in ready_event_wfq() 941 heap_insert(&(p->idle_heap), q->F, q); in ready_event_wfq() 952 heap_insert(sch, q->F, q); in ready_event_wfq() 969 heap_insert(sch, q->F, q); in ready_event_wfq() 987 q->F = 0; in ready_event_wfq() 988 q->S = q->F + 1; in ready_event_wfq() 1204 if (q->head != NULL || q->S != q->F + 1) { in expire_queues() 1717 q->S = MAX64(q->F, pipe->V ); in dummynet_io() [all …]
|
| H A D | ip_dummynet.h | 292 dn_key S, F; /* start time, finish time */ member 457 dn_key S, F; /* start time, finish time */ member 582 dn_key S, F; /* start time, finish time */ member
|
| /xnu-11215/iokit/DriverKit/ |
| H A D | IOReportTypes.h | 166 #define IOREPORT_MAKEID(A, B, C, D, E, F, G, H) \ argument 168 | __IOR_lshiftchr(D, 4) | __IOR_lshiftchr(E, 3) | __IOR_lshiftchr(F, 2) \
|
| /xnu-11215/iokit/IOKit/ |
| H A D | IOReportTypes.h | 166 #define IOREPORT_MAKEID(A, B, C, D, E, F, G, H) \ argument 168 | __IOR_lshiftchr(D, 4) | __IOR_lshiftchr(E, 3) | __IOR_lshiftchr(F, 2) \
|
| /xnu-11215/doc/observability/ |
| H A D | recount.md | 35 | `proc_threadcounts` | thread | thread ID | F | ✓ | ✓ | ✓ | ✓ … 38 | `coalition_info` | coalition | coalition ID | F | ✓ | ✓ | ✓ | ✓² … 45 - Under Tests, "F" is functional and "P" is performance. 60 - `-F <name>` finds the task matching the provided name instead of using a task pointer.
|
| /xnu-11215/tools/tests/perf_index/ |
| H A D | md5.c | 17 #define F(x, y, z) (z ^ (x & (y ^ z))) macro 25 a = (a + F(b,c,d) + M + t); a = CC_ROLc(a, s) + b;
|
| /xnu-11215/bsd/dev/i386/ |
| H A D | dis_tables.c | 153 F, /* for 287 instructions */ enumerator 2110 /* [0,0] */ TNS("fadd",FF), TNS("fmul",FF), TNS("fcom",F), TNS("fcomp",F), 2113 /* [1,0] */ TNS("fld",F), TNS("fxch",F), TNS("fnop",NORM), TNS("fstp",F), 2122 /* [4,0] */ TNS("fadd",FF), TNS("fmul",FF), TNS("fcom",F), TNS("fcomp",F), 2125 /* [5,0] */ TNS("ffree",F), TNS("fxch",F), TNS("fst",F), TNS("fstp",F), 2126 /* [5,4] */ TNS("fucom",F), TNS("fucomp",F), INVALID, INVALID, 2128 /* [6,0] */ TNS("faddp",FF), TNS("fmulp",FF), TNS("fcomp",F), TNS("fcompp",NORM), 2131 /* [7,0] */ TNS("ffreep",F), TNS("fxch",F), TNS("fstp",F), TNS("fstp",F), 2160 /* [04] */ INVALID, TNS("fucomi",F), TNS("fcomi",F), INVALID, 4784 case F: in dtrace_disx86()
|