Home
last modified time | relevance | path

Searched refs:S (Results 1 – 18 of 18) sorted by relevance

/xnu-8020.121.3/osfmk/corecrypto/
H A Dccsha256_ltc_compress.c64 #define S(x, n) CC_RORc(x, n) macro
66 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
67 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
68 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3))
69 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10))
85 uint32_t S[8]; in ccsha256_ltc_compress() local
102 S[0] = s[0]; in ccsha256_ltc_compress()
103 S[1] = s[1]; in ccsha256_ltc_compress()
104 S[2] = s[2]; in ccsha256_ltc_compress()
105 S[3] = s[3]; in ccsha256_ltc_compress()
[all …]
/xnu-8020.121.3/EXTERNAL_HEADERS/corecrypto/
H A Dcc.h156 #define CC_SWAP(S,T) do { \ argument
157 volatile __typeof__(S) _cc_swap_tmp = S; S = T; T = _cc_swap_tmp; \
162 #define CC_MAX(S, T) ({__typeof__(S) _cc_max_s = S; __typeof__(T) _cc_max_t = T; _cc_max_s > _cc_ma… argument
165 #define CC_MAX_EVAL(S, T) ((S) > (T) ? (S) : (T)) argument
168 #define CC_MIN(S, T) ({__typeof__(S) _cc_min_s = S; __typeof__(T) _cc_min_t = T; _cc_min_s <= _cc_m… argument
H A Dcc_priv.h74 #define CC_MEMCPY(D,S,L) cc_memcpy((D),(S),(L)) argument
75 #define CC_MEMMOVE(D,S,L) cc_memmove((D),(S),(L)) argument
/xnu-8020.121.3/EXTERNAL_HEADERS/
H A Dptrcheck.h109 #define __unsafe_forge_bidi_indexable(T, P, S) \ argument
110 ((T __bidi_indexable)__builtin_unsafe_forge_bidi_indexable((P), (S)))
152 #define __unsafe_forge_bidi_indexable(T, P, S) ((T)(P)) argument
/xnu-8020.121.3/config/
H A DMasterVersion9 # In particular, the string is formatted as: J[.N[.R[S[L]]]], where:
13 # S represents the kernel build stage (one of "d", "a", "b", or "r")
/xnu-8020.121.3/bsd/netinet/
H A Dip_dummynet.c437 qp->S = q->S; in cp_queue_to_32_user()
459 qp->S = q->S; in cp_queue_to_64_user()
932 q->S = q->F; /* update start time */ in ready_event_wfq()
943 if (DN_KEY_LEQ(q->S, p->V)) { in ready_event_wfq()
944 heap_insert(neh, q->S, q); in ready_event_wfq()
982 q->S = q->F + 1; in ready_event_wfq()
1086 q->S = q->F + 1; /* mark timestamp as invalid */ in dummynet()
1198 if (q->head != NULL || q->S != q->F + 1) { in expire_queues()
1244 q->S = q->F + 1; /* hack - mark timestamp as invalid */ in create_queue()
1333 if (pipe_expire && q->head == NULL && q->S == q->F + 1) { in find_queue()
[all …]
H A Dip_dummynet.h292 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-8020.121.3/bsd/dev/arm/
H A Dfasttrap_isa.c787 int S = (tp->ftt_instr1 >> 10) & 1, local
791 (S << 20) | (J2 << 19) | (J1 << 18) |
833 int S = (tp->ftt_instr1 >> 10) & 1, local
836 int I1 = (J1 != S) ? 0 : 1, I2 = (J2 != S) ? 0 : 1;
838 (S << 24) | (I1 << 23) | (I2 << 22) |
H A Ddisassembler.c942 int op = BITS(instr1, 5, 0xF), S = BITS(instr1, 4, 0x1); in thumb32_dataproc_regshift() local
946 if (S == 1) { in thumb32_dataproc_regshift()
1157 int op = BITS(instr1, 5, 0xF), S = BITS(instr1, 4, 0x1); in thumb32_dataproc_mod_immed() local
1168 if (S && THUMB32_RD(instr1, instr2) == REG_PC) { in thumb32_dataproc_mod_immed()
/xnu-8020.121.3/bsd/nfs/
H A Dnfsnode.h531 #define NFS_FLOCK_LENGTH(S, E) (((E) == UINT64_MAX) ? 0 : ((E) - (S) + 1)) argument
532 #define NFS_LOCK_LENGTH(S, E) (((E) == UINT64_MAX) ? UINT64_MAX : ((E) - (S) + 1)) argument
H A Dxdr_subs.h506 #define xb_add_string(E, XB, S, LEN) \ argument
510 (E) = xb_add_bytes((XB), (const char*)(S), (LEN), 0); \
/xnu-8020.121.3/makedefs/
H A DMakeInc.def1000 INSTALL_FLAGS = -c -S -m 0444
1001 DATA_INSTALL_FLAGS = -c -S -m 0644
1002 DATA_INSTALL_FLAGS_RO = -c -S -m 0444
1003 EXEC_INSTALL_FLAGS = -c -S -m 0755
1092 STRIP_FLAGS_RELEASE = -S -x
1093 STRIP_FLAGS_DEVELOPMENT = -S
1095 STRIP_FLAGS_DEBUG = -S
1096 STRIP_FLAGS_PROFILE = -S -x
H A DMakeInc.top339 # we try to throttle behavior into more managable S "stripes" of N/S
341 # in each stripe. That ensures that only S kernel builds are occurring
767 @-cat cscope.files | etags -l auto -S - 2> /dev/null
/xnu-8020.121.3/tools/tests/execperf/
H A DMakefile37 $(OBJROOT)/exit-asm.o: exit-asm.S | OBJROOT
/xnu-8020.121.3/osfmk/conf/
H A Dcopyright.osf41 # copyright law and all other applicable laws of the U.S. including, but
/xnu-8020.121.3/
H A DAPPLE_LICENSE198 APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE
293 Software or Computer Software Documentation). Accordingly, all U.S.
/xnu-8020.121.3/bsd/sys/
H A Dcdefs.h997 #define __unsafe_forge_bidi_indexable(T, P, S) ((T)(P)) argument
/xnu-8020.121.3/tests/
H A DMakefile867 static_binary: ../tools/tests/execperf/exit-asm.S