HomeSort by: relevance | last modified time | path
    Searched defs:b2 (Results 1 - 25 of 53) sorted by relevancy

1 2 3

  /src/common/lib/libc/string/
bcmp.c 92 const uintptr_t *b1, *b2; local in function:bcmp
95 b2 = s2;
98 if ((((uintptr_t)b1 | (uintptr_t)b2) & (sizeof(uintptr_t) - 1)) == 0)
102 if (*b1++ != *b2++)
109 c2 = (const unsigned char *)b2;
memcmp.c 92 const uintptr_t *b1, *b2; local in function:memcmp
95 b2 = s2;
98 if ((((uintptr_t)b1 | (uintptr_t)b2) & (sizeof(uintptr_t) - 1)) == 0)
102 if (*b1 != *b2)
105 b2++;
111 c2 = (const unsigned char *)b2;
  /src/sys/sys/
joystick.h 13 int b2; member in struct:joystick
  /src/usr.bin/locate/bigram/
locate.bigram.c 68 u_char b1, b2; /* needed for final sorting */ member in struct:bigram
90 return it2->b2 - it2->b2;
105 bigrams[i].b2 = i % 256;
136 if (bg->b2 != '\0')
137 fputc(bg->b2, stdout);
  /src/usr.bin/make/unit-tests/
varname-dot-make-mode.mk 34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT
35 a1 a2 a3 b1 b2 b3 c1 c2 c3: target
  /src/sys/arch/sun3/dev/
if_ie_sebuf.c 257 uint8_t *b2 = dst; local in function:wmemcpy
266 *b2++ = *b1++;
275 bstore = (uint32_t)b2 & 1;
279 b2[1] = *sp & 0xff;
280 b2[0] = *sp >> 8;
282 *((uint16_t *)b2) = *sp;
284 b2 += 2;
289 *b2 = *b1e;
if_ie_vme.c 261 uint8_t *b2 = dst; local in function:wmemcpy
270 *b2++ = *b1++;
279 bstore = (uint32_t)b2 & 1;
283 b2[1] = *sp & 0xff;
284 b2[0] = *sp >> 8;
286 *((uint16_t *)b2) = *sp;
288 b2 += 2;
293 *b2 = *b1e;
  /src/tests/usr.bin/xlint/lint1/
msg_102.c 29 static struct bit_fields_and_bits *b1, *b2; variable in typeref:struct:bit_fields_and_bits **
46 return b1->bits == b2->bits;
  /src/sys/arch/x68k/dev/
xel.c 114 u_int32_t b1, b2; local in function:xel_probe
129 b2 = sram[1];
135 if (b1 == sram[0] && b2 == sram[1]) {
145 sram[1] = b2;
153 sram[1] = b2;
158 sram[1] = b2;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/xmm6int/
u0.h 7 __m128i b0, b1, b2, b3, b4, b5, b6, b7; variable in typeref:typename:__m128i
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);
u1.h 7 __m128i b0, b1, b2, b3, b4, b5, b6, b7; variable in typeref:typename:__m128i
35 b2 = a2;
37 b2 = _mm_srli_epi32(b2, 19);
40 diag1 = _mm_xor_si128(diag1, b2);
107 b2 = a2;
109 b2 = _mm_srli_epi32(b2, 19);
112 diag1 = _mm_xor_si128(diag1, b2);
  /src/tests/fs/vfs/
t_io.c 51 char *b2, *b3; local in function:holywrite
65 REQUIRE_LIBC(b2 = malloc(2 * getpagesize()), NULL);
68 RL(rump_sys_pread(fd, b2, therange, 0));
73 ATF_REQUIRE_EQ(memcmp(b2, b3, therange), 0);
  /src/sys/arch/macppc/dev/
videopll.c 105 int b0 = 0, b1 = 0, b2 = 0, freq_b = 0; local in function:videopll_set_freq
125 b2 = p2;
133 DPRINTF("param: %d %d %d -> %d\n", b0, b1, b2, freq_b);
144 cmdbuf[1] = b2;
ams.c 653 u_char b2[10]; local in function:init_trackpad
664 memcpy(b2, buffer, 10);
665 b2[7] = 0x0d;
666 adb_op_sync((Ptr)b2, NULL, (Ptr)0, cmd);
672 b2[7] = 0x03;
673 adb_op_sync((Ptr)b2, NULL, (Ptr)0, cmd);
  /src/common/lib/libprop/
prop_bool.c 107 prop_bool_t b2 = v2; local in function:_prop_bool_equals
110 prop_object_is_bool(b2)))
117 if (b1 == b2)
212 prop_bool_equals(prop_bool_t b1, prop_bool_t b2)
214 if (!prop_object_is_bool(b1) || !prop_object_is_bool(b2))
217 return (prop_object_equals(b1, b2));
  /src/sys/crypto/aes/arch/arm/
aes_neon_subr.c 123 uint8x16x2_t b2; local in function:aes_neon_cbc_dec
127 b2.val[1] = cv;
128 b2.val[0] = cv = loadblock(in + nbytes - 32);
129 b2 = aes_neon_dec2(dec, b2, nrounds);
130 storeblock(out + nbytes - 16, cv ^ b2.val[1]);
132 b = b2.val[0];
136 storeblock(out + nbytes, cv ^ b2.val[0]);
224 uint8x16x2_t b2; local in function:aes_neon_xts_enc
227 b2.val[0] = t ^ loadblock(in)
261 uint8x16x2_t b2; local in function:aes_neon_xts_dec
307 uint8x16x2_t b2; local in function:aes_neon_ccm_enc1
342 uint8x16x2_t b2; local in function:aes_neon_ccm_dec1
    [all...]
  /src/tests/lib/libc/string/
t_memmem.c 62 char b2[] = "0123456789"; variable in typeref:typename:char[]
81 expect(memmem(b2, lb2, p0, lp0) == b2);
86 expect(memmem(b2, lb2, p1, lp1) == b2);
87 expect(memmem(b2, lb2, p2, lp2) == (b2 + 4));
88 expect(memmem(b2, lb2, p3, lp3) == (b2 + 7));
90 expect(memmem(b2, lb2, p5, lp5) == b2)
    [all...]
  /src/sys/arch/amiga/dev/
if_le.c 420 volatile u_short *b2 = (u_short *)((u_char *)sc->sc_mem + boff); local in function:ariadne_copytodesc_word
423 *b2++ = ariadne_swapreg(*b1++);
430 u_short *b2 = to; local in function:ariadne_copyfromdesc_word
433 *b2++ = ariadne_swapreg(*b1++);
444 volatile u_short *b2; local in function:ariadne_copytobuf_word
451 b2 = (volatile u_short *)(a2 + 1);
453 b2[-1] = (b2[-1] & 0xff00) | *a1;
458 b2 = (volatile u_short *)a2;
463 *b2++ = *b1++
476 u_short *b2; local in function:ariadne_copyfrombuf_word
    [all...]
  /src/lib/libpam/modules/pam_ksu/
pam_ksu.c 174 char b1[1024], b2[1024]; local in function:log_krb5
186 snprintf(b2, sizeof(b2), "%s", errtxt);
189 snprintf(b2, sizeof(b2), "unknown %d", (int)err);
191 PAM_LOG("%s (%s)", b1, b2);
  /src/dist/pf/sbin/pfctl/
pfctl_table.c 130 struct pfr_buffer b, b2; local in function:pfctl_table
142 bzero(&b2, sizeof(b2));
262 b2.pfrb_type = PFRB_ADDRS;
279 if (pfr_buf_add(&b2,
285 RVTEST(pfr_del_addrs(&table, b2.pfrb_caddr, b2.pfrb_size,
287 xprintf(opts, "%d/%d addresses expired", ndel, b2.pfrb_size);
289 PFRB_FOREACH(a, &b2)
317 b2.pfrb_type = PFRB_ADDRS
    [all...]
  /src/sys/crypto/aes/
aes_bear.c 718 uint32_t b0, b1, b2, b3; local in function:aesbear_ccm_dec1
759 b2 = le32dec(in + 4*2) ^ q[2*2];
765 q[2*2 + 1] ^= b2;
771 le32enc(out + 4*2, b2);
  /src/sys/dev/raidframe/
rf_nwayxor.c 109 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor2
130 b2 = b[2];
139 a2 ^= b2;
145 b2 = c[2];
149 a2 ^= b2;
172 b2 = _b[2]; \
179 a2 ^= b2; b2 = _n[2]; \
187 a2 ^= b2; _dst[2] = a2; \
199 unsigned long a0, a1, a2, a3, b0, b1, b2, b3 local in function:rf_nWayXor3
227 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor4
257 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor5
289 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor6
323 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor7
359 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor8
398 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; local in function:rf_nWayXor9
    [all...]
  /src/sys/kern/
bufq_priocscan.c 62 buf_cmp(const struct buf *b1, const struct buf *b2, int sortby)
65 if (buf_inorder(b2, b1, sortby)) {
66 return 1; /* b1 > b2 */
68 if (buf_inorder(b1, b2, sortby)) {
69 return -1; /* b1 < b2 */
80 const struct buf * const b2 = n2; local in function:cscan_tree_compare_nodes
82 const int diff = buf_cmp(b1, b2, sortby);
95 if (b1 > b2) {
98 if (b1 < b2) {
115 const struct buf *b2 = &tmp local in function:cscan_tree_compare_key
    [all...]
  /src/usr.sbin/repquota/
repquota.c 287 char b0[2][20], b1[20], b2[20], b3[20]; local in function:printquotas
372 intprt(b2, width+1, q[objtype].qv_softlimit,
  /src/lib/libc/gdtoa/
dtoa.c 120 int bbits, b2, b5, be, dig, i, ieps, ilim0, local in function:dtoa
274 b2 = 0;
278 b2 = -j;
287 b2 -= k;
502 m2 = b2;
515 b2 += i;
523 b2 -= i;
574 b2 += Log2P;
596 b2 += i;
602 b2 += i
    [all...]

Completed in 20 milliseconds

1 2 3