Home
last modified time | relevance | path

Searched refs:X (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/f-stack/freebsd/contrib/openzfs/module/icp/algs/skein/
H A Dskein_block.c134 X##p0 += X##p1; X##p1 = RotL_64(X##p1, ROT##_0); X##p1 ^= X##p0; \ in Skein_256_Process_Block()
135 X##p2 += X##p3; X##p3 = RotL_64(X##p3, ROT##_1); X##p3 ^= X##p2; \ in Skein_256_Process_Block()
350 X##p0 += X##p1; X##p1 = RotL_64(X##p1, ROT##_0); X##p1 ^= X##p0;\ in Skein_512_Process_Block()
351 X##p2 += X##p3; X##p3 = RotL_64(X##p3, ROT##_1); X##p3 ^= X##p2;\ in Skein_512_Process_Block()
352 X##p4 += X##p5; X##p5 = RotL_64(X##p5, ROT##_2); X##p5 ^= X##p4;\ in Skein_512_Process_Block()
353 X##p6 += X##p7; X##p7 = RotL_64(X##p7, ROT##_3); X##p7 ^= X##p6; in Skein_512_Process_Block()
608 X##p0 += X##p1; X##p1 = RotL_64(X##p1, ROT##_0); X##p1 ^= X##p0;\ in Skein1024_Process_Block()
609 X##p2 += X##p3; X##p3 = RotL_64(X##p3, ROT##_1); X##p3 ^= X##p2;\ in Skein1024_Process_Block()
610 X##p4 += X##p5; X##p5 = RotL_64(X##p5, ROT##_2); X##p5 ^= X##p4;\ in Skein1024_Process_Block()
611 X##p6 += X##p7; X##p7 = RotL_64(X##p7, ROT##_3); X##p7 ^= X##p6;\ in Skein1024_Process_Block()
[all …]
H A Dskein.c226 bcopy(ctx->X, X, sizeof (X)); in Skein_256_Final()
243 bcopy(X, ctx->X, sizeof (X)); in Skein_256_Final()
462 bcopy(ctx->X, X, sizeof (X)); in Skein_512_Final()
479 bcopy(X, ctx->X, sizeof (X)); in Skein_512_Final()
695 bcopy(ctx->X, X, sizeof (X)); in Skein1024_Final()
712 bcopy(X, ctx->X, sizeof (X)); in Skein1024_Final()
803 bcopy(ctx->X, X, sizeof (X)); in Skein_256_Output()
820 bcopy(X, ctx->X, sizeof (X)); in Skein_256_Output()
843 bcopy(ctx->X, X, sizeof (X)); in Skein_512_Output()
860 bcopy(X, ctx->X, sizeof (X)); in Skein_512_Output()
[all …]
/f-stack/freebsd/crypto/skein/
H A Dskein_block.c121 X##p0 += X##p1; X##p1 = RotL_64(X##p1,ROT##_0); X##p1 ^= X##p0; \ in Skein_256_Process_Block()
122 X##p2 += X##p3; X##p3 = RotL_64(X##p3,ROT##_1); X##p3 ^= X##p2; \ in Skein_256_Process_Block()
315 X##p0 += X##p1; X##p1 = RotL_64(X##p1,ROT##_0); X##p1 ^= X##p0; \ in Skein_512_Process_Block()
316 X##p2 += X##p3; X##p3 = RotL_64(X##p3,ROT##_1); X##p3 ^= X##p2; \ in Skein_512_Process_Block()
317 X##p4 += X##p5; X##p5 = RotL_64(X##p5,ROT##_2); X##p5 ^= X##p4; \ in Skein_512_Process_Block()
318 X##p6 += X##p7; X##p7 = RotL_64(X##p7,ROT##_3); X##p7 ^= X##p6; \ in Skein_512_Process_Block()
543 X##p0 += X##p1; X##p1 = RotL_64(X##p1,ROT##_0); X##p1 ^= X##p0; \ in Skein1024_Process_Block()
544 X##p2 += X##p3; X##p3 = RotL_64(X##p3,ROT##_1); X##p3 ^= X##p2; \ in Skein1024_Process_Block()
545 X##p4 += X##p5; X##p5 = RotL_64(X##p5,ROT##_2); X##p5 ^= X##p4; \ in Skein1024_Process_Block()
546 X##p6 += X##p7; X##p7 = RotL_64(X##p7,ROT##_3); X##p7 ^= X##p6; \ in Skein1024_Process_Block()
[all …]
H A Dskein.c115 ctx->X[i] = Skein_Swap64(ctx->X[i]); in Skein_256_InitExt()
208 memcpy(X,ctx->X,sizeof(X)); /* keep a local copy of counter mode "key" */ in Skein_256_Final()
219 memcpy(ctx->X,X,sizeof(X)); /* restore the counter mode key for next time */ in Skein_256_Final()
313 ctx->X[i] = Skein_Swap64(ctx->X[i]); in Skein_512_InitExt()
406 memcpy(X,ctx->X,sizeof(X)); /* keep a local copy of counter mode "key" */ in Skein_512_Final()
417 memcpy(ctx->X,X,sizeof(X)); /* restore the counter mode key for next time */ in Skein_512_Final()
603 memcpy(X,ctx->X,sizeof(X)); /* keep a local copy of counter mode "key" */ in Skein1024_Final()
614 memcpy(ctx->X,X,sizeof(X)); /* restore the counter mode key for next time */ in Skein1024_Final()
692 memcpy(X,ctx->X,sizeof(X)); /* keep a local copy of counter mode "key" */ in Skein_256_Output()
721 memcpy(X,ctx->X,sizeof(X)); /* keep a local copy of counter mode "key" */ in Skein_512_Output()
[all …]
H A Dskein_debug.c25 printf(" %08X.%08X ",(uint_32t)(X[j] >> 32),(uint_32t)X[j]); in Show64_step()
31 #define Show64(cnt,X) Show64_step(cnt,X,1) argument
35 size_t xptr = (size_t) X; in Show64_flag()
39 X = (const u64b_t *) (xptr & ~1); in Show64_flag()
41 Show64_step(cnt,X,step); in Show64_flag()
117 Show64(bits/64,X); in Skein_Show_Round()
155 Show64(bits/64,X); in Skein_Show_Round()
165 u64b_t X[SKEIN_MAX_STATE_WORDS]; in Skein_Show_R_Ptr() local
168 X[i] = X_ptr[i][0]; in Skein_Show_R_Ptr()
169 Skein_Show_Round(bits,h,r,X); in Skein_Show_R_Ptr()
[all …]
/f-stack/freebsd/sys/
H A Dracct.h103 #define RACCT_IS_IN_MILLIONS(X) \ argument
104 ((X) != RACCT_UNDEFINED && (racct_types[(X)] & RACCT_IN_MILLIONS) != 0)
111 #define RACCT_IS_RECLAIMABLE(X) (racct_types[X] & RACCT_RECLAIMABLE) argument
116 #define RACCT_IS_INHERITABLE(X) (racct_types[X] & RACCT_INHERITABLE) argument
123 #define RACCT_IS_DENIABLE(X) (racct_types[X] & RACCT_DENIABLE) argument
130 #define RACCT_IS_SLOPPY(X) (racct_types[X] & RACCT_SLOPPY) argument
138 #define RACCT_IS_DECAYING(X) (racct_types[X] & RACCT_DECAYING) argument
143 #define RACCT_CAN_DROP(X) (RACCT_IS_RECLAIMABLE(X) | RACCT_IS_DECAYING(X)) argument
/f-stack/freebsd/net/
H A Dbpf_filter.c305 if (X > buflen || pc->k > buflen - X || in bpf_filter()
422 A += X; in bpf_filter()
426 A -= X; in bpf_filter()
430 A *= X; in bpf_filter()
436 A /= X; in bpf_filter()
442 A %= X; in bpf_filter()
446 A &= X; in bpf_filter()
450 A |= X; in bpf_filter()
454 A ^= X; in bpf_filter()
510 X = A; in bpf_filter()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
H A Dpwhash_scryptsalsa208sha256_nosse.c116 escrypt_block_t X; in salsa20_8() local
117 uint32_t *x = X.w; in salsa20_8()
183 blkcpy_64((escrypt_block_t *) X, in blockmix_salsa8()
190 salsa20_8(X); in blockmix_salsa8()
198 salsa20_8(X); in blockmix_salsa8()
216 return (((uint64_t)(X[1]) << 32) + X[0]); in integerify()
230 uint32_t *X = XY; in smix() local
239 X[k] = LOAD32_LE(&B[4 * k]); in smix()
248 blockmix_salsa8(X, Y, Z, r); in smix()
255 blockmix_salsa8(Y, X, Z, r); in smix()
[all …]
/f-stack/freebsd/crypto/aesni/
H A Daesni_ghash.c369 gfmul(X, H, &X); in AES_GCM_encrypt()
377 X =_mm_xor_si128(X,tmp1); in AES_GCM_encrypt()
378 gfmul(X,H,&X); in AES_GCM_encrypt()
495 gfmul(X,H,&X); in AES_GCM_encrypt()
517 gfmul(X, H, &X); in AES_GCM_encrypt()
523 gfmul(X,H,&X); in AES_GCM_encrypt()
630 gfmul(X, H, &X); in AES_GCM_decrypt()
639 gfmul(X,H,&X); in AES_GCM_decrypt()
662 gfmul(X,H,&X); in AES_GCM_decrypt()
671 gfmul(X, H, &X); in AES_GCM_decrypt()
[all …]
/f-stack/freebsd/contrib/openzfs/config/
H A Dlib-link.m4203 if test "X$withval" = "X"; then
304 if test "X$found_dir" = "X"; then
310 if test "X$found_dir" != "X"; then
316 if test "X$found_dir" = "X"; then
369 if test "X$found_dir" != "X"; then
372 if test "X$found_so" != "X"; then
452 if test "X$found_a" != "X"; then
638 if test "X$rpathdirs" != "X"; then
664 if test "X$ltrpathdirs" != "X"; then
687 if test "X$x" = "X$element"; then
[all …]
H A Dlib-prefix.m431 if test "X$withval" = "Xno"; then
34 if test "X$withval" = "X"; then
52 if test "X$additional_includedir" != "X/usr/include"; then
56 if test "X$x" = "X-I$additional_includedir"; then
62 if test "X$additional_includedir" = "X/usr/local/include"; then
83 if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then
87 if test "X$x" = "X-L$additional_libdir"; then
93 if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then
118 if test "X$prefix" = "XNONE"; then
123 if test "X$exec_prefix" = "XNONE"; then
H A Dintlmacosx.m416 dnl Checks for special options needed on Mac OS X.
20 dnl Check for API introduced in Mac OS X 10.4.
34 …[Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation fra…
36 dnl Check for API introduced in Mac OS X 10.5.
49 …[Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework…
63 …[Define to 1 if you have the Mac OS X function CFLocaleCopyPreferredLanguages in the CoreFoundatio…
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h8 #define COMPILER_ASSERT(X) (void) sizeof(char[(X) ? 1 : -1]) argument
18 #define ROTL32(X, B) rotl32((X), (B)) argument
25 #define ROTL64(X, B) rotl64((X), (B)) argument
32 #define ROTR32(X, B) rotr32((X), (B)) argument
39 #define ROTR64(X, B) rotr64((X), (B)) argument
239 # define POISON(X, L) ct_poison((X), (L)) argument
240 # define UNPOISON(X, L) ct_unpoison((X), (L)) argument
242 # define POISON(X, L) (void) 0 argument
243 # define UNPOISON(X, L) (void) 0 argument
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dcmptest.h33 # define rand(X) arc4random(X) argument
113 #define sodium_malloc(X) mempool_alloc(X) argument
114 #define sodium_free(X) mempool_free(X) argument
115 #define sodium_allocarray(X, Y) mempool_allocarray((X), (Y)) argument
/f-stack/freebsd/arm64/nvidia/tegra210/
H A Dtegra210_clk_per.c265 #define X(n) ((5 * 32) + (n)) macro
292 #define TEGRA210_CLK_ETR X(3)
293 #define TEGRA210_CLK_CAM_MCLK X(4)
294 #define TEGRA210_CLK_CAM_MCLK2 X(5)
295 #define TEGRA210_CLK_MC_CAPA X(7)
296 #define TEGRA210_CLK_MC_CBPA X(8)
297 #define TEGRA210_CLK_MC_CPU X(9)
298 #define TEGRA210_CLK_MC_BBC X(10)
299 #define TEGRA210_CLK_EMC_DLL X(14)
304 #define TEGRA210_CLK_PLLG_REF X(29)
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/iio/potentiometer/
H A Dmcp4131.txt1 * Microchip MCP413X/414X/415X/416X/423X/424X/425X/426X Digital Potentiometer
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/
H A Ded25519_ref10.c175 fe25519_add(r->X, p->Y, p->X); in ge25519_add()
181 fe25519_add(t0, r->X, r->X); in ge25519_add()
253 fe25519_mul(h->X, h->X, v); in ge25519_frombytes()
257 fe25519_mul(h->X, h->X, v3); in ge25519_frombytes()
295 fe25519_mul(h->X, h->X, v); in ge25519_frombytes_negate_vartime()
299 fe25519_mul(h->X, h->X, v3); in ge25519_frombytes_negate_vartime()
314 fe25519_neg(h->X, h->X); in ge25519_frombytes_negate_vartime()
330 fe25519_add(r->X, p->Y, p->X); in ge25519_madd()
405 fe25519_sq(r->X, p->X); in ge25519_p2_dbl()
471 fe25519_copy(r->X, p->X); in ge25519_p3_to_p2()
[all …]
/f-stack/freebsd/amd64/include/
H A Dasmacros.h167 #define IDTVEC(name) ALIGN_TEXT; .globl __CONCAT(X,name); \
168 .type __CONCAT(X,name),@function; __CONCAT(X,name):
210 .globl X\name\()_pti
211 .type X\name\()_pti,@function
212 X\name\()_pti:
222 .globl X\vec_name\()_pti
223 .type X\vec_name\()_pti,@function
224 X\vec_name\()_pti:
233 .globl X\vec_name
234 .type X\vec_name,@function
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/pci/
H A Dfsl,pci.txt1 * Bus Enumeration by Freescale PCI-X Agent
3 Typically any Freescale PCI-X bridge hardware strapped into Agent mode
5 all mezzanines to be PCI-X Agents, but one per system may still
8 The property defined below will allow a PCI-X bridge to be used for bus
17 /* PCI-X bridge known to be PrPMC Monarch */
/f-stack/freebsd/i386/i386/
H A Datpic_vector.s50 .globl X\()\vec_name\()_pti, X\()\vec_name
52 X\()\vec_name\()_pti:
53 X\()\vec_name:
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
H A Dpwhash_scryptsalsa208sha256_sse.c234 __m128i * X = (__m128i *) V, *Y; in smix() local
252 blockmix_salsa8(X, Y, r); in smix()
256 X = (__m128i *) ((uintptr_t)(V) + (i + 1) * s); in smix()
257 blockmix_salsa8(Y, X, r); in smix()
263 blockmix_salsa8(X, Y, r); in smix()
267 X = (__m128i *) XY; in smix()
268 blockmix_salsa8(Y, X, r); in smix()
274 j = integerify(X, r) & (N - 1); in smix()
282 j = blockmix_salsa8_xor(X, V_j, Y, r) & (N - 1); in smix()
287 j = blockmix_salsa8_xor(Y, V_j, X, r) & (N - 1); in smix()
/f-stack/freebsd/contrib/ck/include/
H A Dck_cc.h47 #define CK_CC_DECONST_PTR(X) ((void *)(uintptr_t)(X)) argument
88 #define CK_CC_ALIGN(X) argument
104 #define CK_CC_TYPEOF(X, DEFAULT) (DEFAULT) argument
/f-stack/freebsd/contrib/zstd/lib/common/
H A Dcpu.h110 #define X(name, r, bit) \ macro
116 #define C(name, bit) X(name, f1c, bit)
147 #define D(name, bit) X(name, f1d, bit)
180 #define B(name, bit) X(name, f7b, bit)
206 #define C(name, bit) X(name, f7c, bit)
211 #undef X
/f-stack/freebsd/contrib/device-tree/Bindings/input/touchscreen/
H A Dcolibri-vf50-ts.txt6 - xp-gpios: FET gate driver for input of X+
7 - xm-gpios: FET gate driver for input of X-
13 - pinctrl-1: pinctrl node for X/Y and pressure measurement (ADC) state pinmux
15 - vf50-ts-min-pressure: pressure level at which to stop measuring X/Y values
/f-stack/freebsd/netgraph/
H A Dng_atmllc.c65 #define ATM_LLC_TYPE(X) (((X)->type[0] << 8) | ((X)->type[1])) argument
66 #define ATM_LLC_SETTYPE(X, V) do { \ argument
67 (X)->type[0] = ((V) >> 8) & 0xff; \
68 (X)->type[1] = ((V) & 0xff); \

12345678910>>...14