Searched refs:b2 (Results 1 - 25 of 108) sorted by relevance

12345

/freebsd-13-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_memmem.c61 char b2[] = "0123456789"; variable
81 expect(memmem(b2, lb2, p0, lp0) == NULL);
84 expect(memmem(b2, lb2, p0, lp0) == b2);
90 expect(memmem(b2, lb2, p1, lp1) == b2);
91 expect(memmem(b2, lb2, p2, lp2) == (b2 + 4));
92 expect(memmem(b2, lb2, p3, lp3) == (b2
[all...]
H A Dt_memcpy.c61 runTest(unsigned char *b1, unsigned char *b2) argument
72 b2[n] = (unsigned char)random();
74 memcpy(b1 + i, b2 + j, m);
76 MD5Update(mc, b2, sizeof(testBlock_t));
/freebsd-13-stable/sys/libkern/
H A Dtimingsafe_bcmp.c24 timingsafe_bcmp(const void *b1, const void *b2, size_t n) argument
26 const unsigned char *p1 = b1, *p2 = b2;
H A Dbcmp.c47 (bcmp)(const void *b1, const void *b2, size_t length) argument
61 ustring p1 = b1, p2 = b2;
139 p2 = b2;
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dtimingsafe_bcmp.c24 timingsafe_bcmp(const void *b1, const void *b2, size_t n) argument
26 const unsigned char *p1 = b1, *p2 = b2;
/freebsd-13-stable/lib/libc/string/
H A Dbcmp.c44 bcmp(const void *b1, const void *b2, size_t length) argument
51 p2 = (char *)b2;
H A Dtimingsafe_bcmp.c26 __timingsafe_bcmp(const void *b1, const void *b2, size_t n) argument
28 const unsigned char *p1 = b1, *p2 = b2;
H A Dtimingsafe_memcmp.c27 __timingsafe_memcmp(const void *b1, const void *b2, size_t len) argument
29 const unsigned char *p1 = b1, *p2 = b2;
/freebsd-13-stable/crypto/openssl/crypto/idea/
H A Di_skey.c86 long n1, n2, q, r, b1, b2, t; local
89 b2 = 0;
93 b2 = 1;
100 if (b2 < 0)
101 b2 = 0x10001 + b2;
105 t = b2;
106 b2 = b1 - q * b2;
111 return (IDEA_INT)b2;
[all...]
/freebsd-13-stable/sys/sys/
H A Djoystick.h42 int b2; member in struct:joystick
/freebsd-13-stable/sys/contrib/openzfs/module/zcommon/
H A Dzfs_fletcher_superscalar.c78 uint64_t a2, b2, c2, d2; local
85 b2 = ctx->superscalar[1].v[1];
93 b2 += a2;
95 c2 += b2;
105 ctx->superscalar[1].v[1] = b2;
117 uint64_t a2, b2, c2, d2; local
124 b2 = ctx->superscalar[1].v[1];
132 b2 += a2;
134 c2 += b2;
144 ctx->superscalar[1].v[1] = b2;
[all...]
H A Dzfs_fletcher_superscalar4.c92 uint64_t a2, b2, c2, d2; local
101 b2 = ctx->superscalar[1].v[1];
119 b2 += a2;
123 c2 += b2;
137 ctx->superscalar[1].v[1] = b2;
157 uint64_t a2, b2, c2, d2; local
166 b2 = ctx->superscalar[1].v[1];
184 b2 += a2;
188 c2 += b2;
202 ctx->superscalar[1].v[1] = b2;
[all...]
/freebsd-13-stable/sys/dev/uart/
H A Duart_cpu_fdt.c63 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
66 if (b1->bst != b2->bst)
70 if (pmap_kextract(b2->bsh) == 0)
72 return ((pmap_kextract(b1->bsh) == pmap_kextract(b2->bsh)) ? 1 : 0);
H A Duart_cpu_x86.c48 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
51 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
/freebsd-13-stable/sys/mips/nlm/
H A Duart_cpu_xlp.c72 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
74 return (b1->bsh == b2->bsh && b1->bst == b2->bst);
/freebsd-13-stable/sys/mips/atheros/ar531x/
H A Duart_cpu_ar5315.c49 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
51 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
/freebsd-13-stable/sys/mips/atheros/
H A Duart_cpu_ar71xx.c51 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
53 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
H A Duart_cpu_ar933x.c53 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
55 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
/freebsd-13-stable/sys/mips/malta/
H A Duart_cpu_maltausart.c58 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) argument
60 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
/freebsd-13-stable/sys/dev/usb/
H A Dusb_endian.h105 #define USETW4(w,b3,b2,b1,b0) do { \
108 (w)[2] = (uint8_t)(b2); \
112 #define USETW8(w,b7,b6,b5,b4,b3,b2,b1,b0) do { \
115 (w)[2] = (uint8_t)(b2); \
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DPostOrderCFGView.cpp43 const CFGBlock *b2) const {
45 PostOrderCFGView::BlockOrderTy::const_iterator b2It = POV.BlockOrder.find(b2);
/freebsd-13-stable/contrib/bearssl/src/symcipher/
H A Dchacha20_sse2.c199 __m128i b0, b1, b2, b3; local
203 b2 = _mm_loadu_si128((const void *)(buf + 32));
207 b2 = _mm_xor_si128(b2, s2);
211 _mm_storeu_si128((void *)(buf + 32), b2);
/freebsd-13-stable/contrib/nvi/common/
H A Doptions.c307 CHAR_T b2[1024]; local
309 a.bp = b2;
318 if ((CHAR_T*)str != b2) /* GCC puts strings in text-space. */ \
319 (void)MEMCPY(b2, str, a.len+1); \
344 (void)SPRINTF(b2, SIZE(b2),
346 OI(O_CDPATH, b2);
356 (void)SPRINTF(b2, SIZE(b2),
358 OI(O_TMPDIR, b2);
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/unicode/
H A Du8_textprep.c142 #define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \
144 (((uint32_t)(b2) & 0x3F) << 6) | \
462 uint16_t b2 = 0; local
479 b2 = u8s[0] = s[0];
484 b2 = u8s[1] = s[1];
506 b2 = u8_case_common_b2_tbl[uv][b1][b2];
507 if (b2 == U8_TBL_ELEMENT_NOT_DEF)
511 b3_tbl = u8_toupper_b3_tbl[uv][b2][b3].tbl_id;
522 b3_base = u8_toupper_b3_tbl[uv][b2][b
692 uint16_t b2 = 0; local
746 uint16_t b2 = 0; local
968 uint16_t b2 = 0; local
[all...]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
H A Du0.h7 __m128i b0, b1, b2, b3, b4, b5, b6, b7; variable
34 b2 = a2;
36 b2 = _mm_srli_epi32(b2, 19);
39 diag1 = _mm_xor_si128(diag1, b2);
106 b2 = a2;
108 b2 = _mm_srli_epi32(b2, 19);
111 diag1 = _mm_xor_si128(diag1, b2);

Completed in 210 milliseconds

12345