HomeSort by: relevance | last modified time | path
    Searched refs:X1 (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_trampoline_AArch64.S 21 STP X1, X2, [SP, #-16]!
29 /* Load the address of _ZN6__xray19XRayPatchedFunctionE into X1 */
30 LDR X1, =_ZN6__xray19XRayPatchedFunctionE
32 LDR X2, [X1]
37 X1=0 means that we are tracing an entry event */
38 MOV X1, #0
39 /* Call the handler with 2 parameters in W0 and X1 */
50 LDP X1, X2, [SP], #16
68 STP X1, X2, [SP, #-16]!
73 /* Load the address of _ZN6__xray19XRayPatchedFunctionE into X1 */
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
pwhash_scryptsalsa208sha256_sse.c 67 ARX(X1, X0, X3, 7) \
68 ARX(X2, X1, X0, 9) \
69 ARX(X3, X2, X1, 13) \
73 X1 = _mm_shuffle_epi32(X1, 0x93); \
78 ARX(X3, X0, X1, 7) \
80 ARX(X1, X2, X3, 13) \
81 ARX(X0, X1, X2, 18) \
84 X1 = _mm_shuffle_epi32(X1, 0x39);
    [all...]
  /src/sys/dev/wscons/
mra.c 46 const int *x1, int x1s, const int *x2, int x2s,
59 #define X1(i) AA(x1, x1s, i)
70 X1a += X1(i);
74 X1X1s += X1(i) * X1(i);
76 X1X2s += X1(i) * X2(i);
78 X1Ys += X1(i) * Y(i);
  /src/sys/dev/pci/
emuxki.c 79 #define X1(x) ((sc->sc_type & EMUXKI_AUDIGY) ? EMU_A_##x : EMU_##x)
506 emuxki_write(sc, 0, X1(DBG), X1(DBG_SINGLE_STEP));
732 emuxki_write(sc, 0, X1(DBG), X1(DBG_SINGLE_STEP));
742 X1(DSP_CST(0)),
743 X1(DSP_FX(0)),
744 X1(DSP_CST(1)));
747 X1(DSP_CST(0)),
748 X1(DSP_FX(1))
    [all...]
  /src/sys/arch/ia64/unwind/
decode.c 272 uwd->X1.r = ((buf[1] & 0x80) == 0x80);
273 uwd->X1.a = ((buf[1] & 0x40) == 0x40);
274 uwd->X1.b = ((buf[1] & 0x20) == 0x20);
275 uwd->X1.reg = (buf[1] & 0x1f);
278 buf = unwind_decode_ule128(buf, &uwd->X1.t);
279 buf = unwind_decode_ule128(buf, &uwd->X1.offset);
decode.h 183 struct unwind_desc_X1 X1;
193 X1, X2, X3, X4
stackframe.c 219 strc[rec_cnt].type = X1;
593 case X1:
843 case X1:
1080 case X1:
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.h 66 const char *X1, const char *X2);
FuzzerDriver.cpp 234 const char *X1, const char *X2) {
237 if (FlagValue(S.c_str(), X1) || FlagValue(S.c_str(), X2))
  /src/sys/arch/sparc/fpu/
fpu.c 92 #define X1(x) x
99 X1(FSR_NX),
106 X1(FPE_FLTRES),
113 X1(FPE_FLTINEX_TRAP),
338 rs1 = (rs1 & ~mask) | ((rs1 & mask & 0x1) << 5);
340 rs2 = (rs2 & ~mask) | ((rs2 & mask & 0x1) << 5);
342 rd = (rd & ~mask) | ((rd & mask & 0x1) << 5);
596 rd = (rd & ~mask) | ((rd & mask & 0x1) << 5);
  /src/tests/bin/expr/
t_expr.sh 233 test_expr X1/2/3 : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| . : '\(.\)' '1/2'
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_aead/aes256gcm/aesni/
aead_aes256gcm_aesni.c 62 __m128i X0, X1, X2, X3;
72 X1 = _mm_shuffle_epi32(_mm_aeskeygenassist_si128(X2, (S)), 0xff); \
76 X0 = _mm_xor_si128(_mm_xor_si128(X0, X3), X1); \
81 X1 = _mm_shuffle_epi32(_mm_aeskeygenassist_si128(X0, (S)), 0xaa); \
85 X2 = _mm_xor_si128(_mm_xor_si128(X2, X3), X1); \
333 __m128i X1 = X1_; \
349 /* 4 high H*X (x1*h1) */ \
357 x1*h0+x0*h1 =(x1+x0)*(h1+h0)-x1*h1-x0*h0
    [all...]
  /src/sbin/nvmectl/
bignum.c 2097 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
2114 if (mp_init_size(&x1, a->used - B) != MP_OKAY) {
2118 goto X1;
2135 x1.used = a->used - B;
2155 tmpx = x1.dp;
2167 * upper words x1/y1 must have a known number of digits
2177 if (signed_multiply(&x1, &y1, &x1y1) != MP_OKAY) {
2178 goto X1Y1; /* x1y1 = x1*y1 */
2180 /* now calc x1+x0 and y1+y0 */
2181 if (basic_add(&x1, &x0, &t1) != MP_OKAY)
2942 mp_int x0, x1, t1, t2, x0x0, x1x1; local
    [all...]

Completed in 25 milliseconds