Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 25 of 427) sorted by relevance

12345678910>>...18

/freebsd-11-stable/contrib/libpcap/
HDgencode.c918 merge(struct block *b0, struct block *b1) in merge() argument
927 *p = b1; in merge()
988 gen_and(struct block *b0, struct block *b1) in gen_and() argument
990 backpatch(b0, b1->head); in gen_and()
992 b1->sense = !b1->sense; in gen_and()
993 merge(b1, b0); in gen_and()
994 b1->sense = !b1->sense; in gen_and()
995 b1->head = b0->head; in gen_and()
999 gen_or(struct block *b0, struct block *b1) in gen_or() argument
1002 backpatch(b0, b1->head); in gen_or()
[all …]
/freebsd-11-stable/contrib/gdtoa/
HDstrtoIg.c41 Bigint *b, *b1; local
54 b1 = Balloc(b->k);
55 Bcopy(b1, b);
63 b1 = increment(b1);
66 b1->x[0] = 0;
67 b1->x[nw1] = 1L << nb11;
76 if (b1->wds > nw
77 || (nb1 && b1->x[nw1] & 1L << nb1)) {
80 rshift(b1, 1);
83 if (b1->x[nw1] & 1L << nb11) {
[all …]
HDmisc.c175 Bigint *b1; local
203 b1 = Balloc(b->k+1);
204 Bcopy(b1, b);
206 b = b1;
384 Bigint *b1, *p5, *p51; local
409 b1 = mult(b, p5);
411 b = b1;
442 Bigint *b1; local
450 b1 = Balloc(k1);
451 x1 = b1->x;
[all …]
/freebsd-11-stable/sys/cddl/boot/zfs/
HDfletcher.c32 uint64_t a0, b0, a1, b1; in fletcher_2_native() local
34 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native()
38 b1 += a1; in fletcher_2_native()
41 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_native()
50 uint64_t a0, b0, a1, b1; in fletcher_2_byteswap() local
52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap()
56 b1 += a1; in fletcher_2_byteswap()
59 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_byteswap()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDConvertUTF.cpp425 UTF8 b1, b2, b3; in findMaximalSubpartOfIllFormedUTF8Sequence() local
446 b1 = *source; in findMaximalSubpartOfIllFormedUTF8Sequence()
448 if (b1 >= 0xC2 && b1 <= 0xDF) { in findMaximalSubpartOfIllFormedUTF8Sequence()
462 if (b1 == 0xE0) { in findMaximalSubpartOfIllFormedUTF8Sequence()
465 if (b1 >= 0xE1 && b1 <= 0xEC) { in findMaximalSubpartOfIllFormedUTF8Sequence()
468 if (b1 == 0xED) { in findMaximalSubpartOfIllFormedUTF8Sequence()
471 if (b1 >= 0xEE && b1 <= 0xEF) { in findMaximalSubpartOfIllFormedUTF8Sequence()
474 if (b1 == 0xF0) { in findMaximalSubpartOfIllFormedUTF8Sequence()
484 if (b1 >= 0xF1 && b1 <= 0xF3) { in findMaximalSubpartOfIllFormedUTF8Sequence()
494 if (b1 == 0xF4) { in findMaximalSubpartOfIllFormedUTF8Sequence()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
HDARMInstrMVE.td341 def MVE_v16u8 : MVEVectorVTInfo<v16i8, v8i16, v16i1, 0b00, "u", 0b1>;
342 def MVE_v8u16 : MVEVectorVTInfo<v8i16, v4i32, v8i1, 0b01, "u", 0b1>;
343 def MVE_v4u32 : MVEVectorVTInfo<v4i32, v2i64, v4i1, 0b10, "u", 0b1>;
344 def MVE_v2u64 : MVEVectorVTInfo<v2i64, ?, v4i1, 0b11, "u", 0b1>;
353 def MVE_v8p16 : MVEVectorVTInfo<v8i16, v4i32, v8i1, 0b11, "p", 0b1>;
414 let Inst{8} = 0b1;
528 "$RdaLo, $RdaHi, $sat, $Rm", op5, 0b1, pattern> {
534 def MVE_ASRLr : MVE_ScalarShiftDRegReg<"asrl", 0b1, [(set tGPREven:$RdaLo, tGPROdd:$RdaHi,
550 def MVE_SQRSHRL : MVE_ScalarShiftDRegRegWithSat<"sqrshrl", 0b1>;
551 def MVE_SQSHLL : MVE_ScalarShiftDRegImm<"sqshll", 0b11, 0b1>;
[all …]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/zfs/
HDzfs_fletcher.c152 uint64_t a0, b0, a1, b1; in fletcher_2_incremental_native() local
157 b1 = zcp->zc_word[3]; in fletcher_2_incremental_native()
163 b1 += a1; in fletcher_2_incremental_native()
166 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_incremental_native()
186 uint64_t a0, b0, a1, b1; in fletcher_2_incremental_byteswap() local
191 b1 = zcp->zc_word[3]; in fletcher_2_incremental_byteswap()
197 b1 += a1; in fletcher_2_incremental_byteswap()
200 ZIO_SET_CHECKSUM(zcp, a0, a1, b0, b1); in fletcher_2_incremental_byteswap()
/freebsd-11-stable/lib/libc/softfloat/bits32/
HDsoftfloat-macros267 value formed by concatenating `b0' and `b1'. Addition is modulo 2^64, so
274 bits32 a0, bits32 a1, bits32 b0, bits32 b1, bits32 *z0Ptr, bits32 *z1Ptr )
278 z1 = a1 + b1;
287 96-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
299 bits32 b1,
311 z1 = a1 + b1;
325 Subtracts the 64-bit value formed by concatenating `b0' and `b1' from the
334 bits32 a0, bits32 a1, bits32 b0, bits32 b1, bits32 *z0Ptr, bits32 *z1Ptr )
337 *z1Ptr = a1 - b1;
338 *z0Ptr = a0 - b0 - ( a1 < b1 );
[all …]
/freebsd-11-stable/sys/dev/usb/
HDusb_endian.h98 #define USETW2(w,b1,b0) do { \ argument
100 (w)[1] = (uint8_t)(b1); \
103 #define USETW4(w,b3,b2,b1,b0) do { \ argument
105 (w)[1] = (uint8_t)(b1); \
110 #define USETW8(w,b7,b6,b5,b4,b3,b2,b1,b0) do { \ argument
112 (w)[1] = (uint8_t)(b1); \
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/unicode/
HDu8_textprep.c145 #define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \ argument
146 (u) = ((((uint32_t)(b1) & 0x0F) << 12) | \
463 uint16_t b1 = 0; in do_case_conv() local
485 b1 = u8s[0] = s[0]; in do_case_conv()
504 b1 = u8_common_b1_tbl[uv][b1]; in do_case_conv()
505 if (b1 == U8_TBL_ELEMENT_NOT_DEF) in do_case_conv()
508 b2 = u8_case_common_b2_tbl[uv][b1][b2]; in do_case_conv()
693 uint16_t b1 = 0; in combining_class() local
709 b1 = s[0]; in combining_class()
715 b1 = u8_common_b1_tbl[uv][b1]; in combining_class()
[all …]
/freebsd-11-stable/sys/tools/sound/
HDfeeder_eq_mkfilter.awk127 w0, A, alpha, a0, a1, a2, b0, b1, b2)
135 b1 = -2.0 * cos(w0);
142 b1 = -2.0*A*((A-1.0)+((A+1.0)*cos(w0)) );
148 b0 = b1 = b2 = a0 = a1 = a2 = 0.0;
151 b1 /= a0;
160 coeffs["treble", gain, 4] = feedeq_fx_floor(b1);
169 b1 = -2.0 * cos(w0);
176 b1 = 2.0*A*((A-1.0)-((A+1.0)*cos(w0)) );
182 b0 = b1 = b2 = a0 = a1 = a2 = 0.0;
185 b1 /= a0;
[all …]
/freebsd-11-stable/lib/libc/softfloat/bits64/
HDsoftfloat-macros342 value formed by concatenating `b0' and `b1'. Addition is modulo 2^128, so
349 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
353 z1 = a1 + b1;
362 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
374 bits64 b1,
386 z1 = a1 + b1;
400 Subtracts the 128-bit value formed by concatenating `b0' and `b1' from the
409 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
412 *z1Ptr = a1 - b1;
413 *z0Ptr = a0 - b0 - ( a1 < b1 );
[all …]
/freebsd-11-stable/sys/gnu/dts/mips/
HDDIR-300-B1.dts64 label = "dir-300-b1:amber:status";
69 label = "dir-300-b1:green:status";
74 label = "dir-300-b1:amber:wan";
79 label = "dir-300-b1:green:wan";
84 label = "dir-300-b1:blue:wps";
HDDIR-600-B1.dts64 label = "dir-600-b1:amber:status";
69 label = "dir-600-b1:green:status";
74 label = "dir-600-b1:amber:wan";
79 label = "dir-600-b1:green:wan";
84 label = "dir-600-b1:blue:wps";
/freebsd-11-stable/sys/libkern/
HDbcmp.c45 bcmp(b1, b2, length) in bcmp() argument
46 const void *b1, *b2; in bcmp()
61 ustring p1 = b1, p2 = b2;
138 p1 = b1;
/freebsd-11-stable/sys/dev/uart/
HDuart_cpu_fdt.c61 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
64 if (b1->bst != b2->bst) in uart_cpu_eqres()
66 if (pmap_kextract(b1->bsh) == 0) in uart_cpu_eqres()
70 return ((pmap_kextract(b1->bsh) == pmap_kextract(b2->bsh)) ? 1 : 0); in uart_cpu_eqres()
/freebsd-11-stable/crypto/openssl/crypto/bio/
HDbss_bio.c687 struct bio_bio_st *b1, *b2; in bio_make_pair() local
692 b1 = bio1->ptr; in bio_make_pair()
695 if (b1->peer != NULL || b2->peer != NULL) { in bio_make_pair()
700 if (b1->buf == NULL) { in bio_make_pair()
701 b1->buf = OPENSSL_malloc(b1->size); in bio_make_pair()
702 if (b1->buf == NULL) { in bio_make_pair()
706 b1->len = 0; in bio_make_pair()
707 b1->offset = 0; in bio_make_pair()
720 b1->peer = bio2; in bio_make_pair()
721 b1->closed = 0; in bio_make_pair()
[all …]
/freebsd-11-stable/bin/test/
HDtest.c601 struct stat b1, b2; in newerf() local
603 if (stat(f1, &b1) != 0 || stat(f2, &b2) != 0) in newerf()
606 if (b1.st_mtim.tv_sec > b2.st_mtim.tv_sec) in newerf()
608 if (b1.st_mtim.tv_sec < b2.st_mtim.tv_sec) in newerf()
611 return (b1.st_mtim.tv_nsec > b2.st_mtim.tv_nsec); in newerf()
623 struct stat b1, b2; in equalf() local
625 return (stat (f1, &b1) == 0 && in equalf()
627 b1.st_dev == b2.st_dev && in equalf()
628 b1.st_ino == b2.st_ino); in equalf()
/freebsd-11-stable/sys/mips/adm5120/
HDuart_cpu_adm5120.c58 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
61 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0); in uart_cpu_eqres()
/freebsd-11-stable/sys/arm/xscale/i8134x/
HDuart_cpu_i81342.c46 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
48 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0); in uart_cpu_eqres()
/freebsd-11-stable/sys/mips/rmi/
HDuart_cpu_mips_xlr.c59 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
61 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0); in uart_cpu_eqres()
/freebsd-11-stable/sys/mips/alchemy/
HDuart_cpu_alchemy.c54 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
57 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0); in uart_cpu_eqres()
/freebsd-11-stable/contrib/nvi/cl/
HDcl_read.c315 CHAR_T b1[1024]; in cl_resize() local
317 a.bp = b1; in cl_resize()
323 a.len = SPRINTF(b1, sizeof(b1), L("lines=%lu"), (u_long)lines); in cl_resize()
326 a.len = SPRINTF(b1, sizeof(b1), L("columns=%lu"), (u_long)columns); in cl_resize()
/freebsd-11-stable/sys/mips/atheros/
HDuart_cpu_ar933x.c51 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
53 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0); in uart_cpu_eqres()
/freebsd-11-stable/sys/mips/malta/
HDuart_cpu_maltausart.c56 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) in uart_cpu_eqres() argument
58 return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0); in uart_cpu_eqres()

12345678910>>...18