Searched refs:bits (Results 1 - 25 of 903) sorted by relevance

1234567891011>>

/src/tests/usr.bin/xlint/lint1/
H A Dmsg_166.c34 struct bit_set bits; local in function:example
38 bits.minus_1_to_0 = -2;
39 bits.minus_1_to_0 = -1;
40 bits.minus_1_to_0 = 0;
42 bits.minus_1_to_0 = 1;
44 bits.minus_1_to_0 = 2;
47 bits.minus_8_to_7 = -9;
48 bits.minus_8_to_7 = -8;
49 bits.minus_8_to_7 = 7;
51 bits
[all...]
H A Dmsg_145.c8 struct bits { struct
16 struct bits local_bits;
25 struct bits local_bits;
H A Dmsg_102.c14 unsigned bits; member in union:unrelated::__anon3dd30c04010a
36 return u1->bits == u2->bits;
39 * The struct does not have a member named 'bits'. There's another
44 /* expect+2: error: invalid use of member 'bits' [102] */
45 /* expect+1: error: invalid use of member 'bits' [102] */
46 return b1->bits == b2->bits;
H A Dexpr.c17 struct bit_fields bits = { 0 }; local in function:expr_cond_cvt
20 return bits.u32 < ul ? bits.u32 : ul;
H A Dgcc_bit_field_types.c59 unsigned bits:3; member in struct:type_of_bit_field::__anona01ee84d0108
85 reveal_type(_Generic(s.bits,
108 reveal_type(s.bits);
/src/lib/libc/gdtoa/test/
H A DxQtest.c34 union { long double d; unsigned int bits[4]; } u, w; member in union:main::__anon6fb546e9010a
37 w.bits[0] = w.bits[3] = 0;
41 if (w.bits[0] && w.bits[3])
H A Dxtest.c86 union { long double d; UShort bits[5]; } u, v[2]; member in union:main::__anond7e054f8010a
105 sscanf(s+1, "%hx %hx %hx %hx %hx", &u.bits[_0],
106 &u.bits[_1], &u.bits[_2], &u.bits[_3],
107 &u.bits[_4]);
109 printf(" --> f = #%x %x %x %x %x\n", u.bits[_0],
110 u.bits[_1], u.bits[_2], u.bits[_
[all...]
H A DQtest.c85 union { long double d; ULong bits[4]; } u, v[2], w; member in union:main::__anon1dc11391010a
87 w.bits[0] = w.bits[3] = 0;
91 Ltest = sizeof(long double) == 16 && w.bits[0] && w.bits[3];
109 /* sscanf(s+1, "%lx %lx %lx %lx", &u.bits[_0], */
110 /* &u.bits[_1], &u.bits[_2], &u.bits[_3]); */
111 u.bits[_
[all...]
H A DxLtest.c84 union { long double d; ULong bits[3]; } u, v[2]; member in union:main::__anoneed21724010a
103 /* sscanf(s+1, "%lx %lx %lx", &u.bits[_0], */
104 /* &u.bits[_1], &u.bits[_2]); */
105 u.bits[_0] = (ULong)strtoul(s1 = s+1, &se, 16);
107 u.bits[_1] = (ULong)strtoul(s1=se, &se, 16);
109 u.bits[_2] = (ULong)strtoul(s1=se, &se, 16);
112 printf(" --> f = #%lx %lx %lx\n", U u.bits[_0],
113 U u.bits[_1], U u.bits[_
[all...]
/src/sys/external/bsd/drm2/include/linux/
H A Dhash.h39 hash_long(unsigned long value, unsigned int bits) argument
44 return ((value * factor) >> ((CHAR_BIT * sizeof(value)) - bits));
48 hash_32(uint32_t value, unsigned int bits) argument
50 return (value * 0x61c88647) >> (32 - bits);
54 hash_64(uint64_t value, unsigned int bits) argument
56 return (value * 0x61c8864680b583ebull) >> (64 - bits);
/src/lib/libc/gdtoa/
H A Dstrtordd.c38 ULtodd(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k;
40 ULtodd(ULong *L, ULong *bits, Long expt, int k)
52 L[_1] = (bits[1] >> 21 | bits[2] << 11) & (ULong)0xffffffffL;
53 L[_0] = (bits[2] >> 21) | (bits[3] << 11 & 0xfffff)
56 if (bits[1] &= 0x1fffff) {
57 i = hi0bits(bits[1]) - 11;
65 bits[
189 ULong bits[4]; local in function:strtordd
[all...]
H A Dstrtopdd.c48 ULong bits[4]; local in function:strtopdd
62 rv = strtodg(s, sp, fpi, &expt, bits);
73 u->L[_1] = (bits[1] >> 21 | bits[2] << 11) & 0xffffffffL;
74 u->L[_0] = (bits[2] >> 21) | ((bits[3] << 11) & 0xfffff)
77 if (bits[1] &= 0x1fffff) {
78 i = hi0bits(bits[1]) - 11;
86 bits[1] = bits[
[all...]
H A Dg_Qfmt.c63 ULong bits[4], *L, sign; local in function:g_Qfmt
78 bits[3] = L[_0] & 0xffff;
79 bits[2] = L[_1];
80 bits[1] = L[_2];
81 bits[0] = L[_3];
86 if (bits[0] | bits[1] | bits[2] | bits[3])
97 bits[
[all...]
H A DstrtorQ.c56 ULtoQ(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k;
58 ULtoQ(ULong *L, ULong *bits, Long expt, int k)
69 L[_3] = bits[0];
70 L[_2] = bits[1];
71 L[_1] = bits[2];
72 L[_0] = (bits[3] & ~0x10000) | ((expt + 0x3fff + 112) << 16);
76 L[_3] = bits[0];
77 L[_2] = bits[1];
78 L[_1] = bits[
107 ULong bits[4]; local in function:strtorQ
[all...]
H A DstrtopQ.c58 ULong bits[4]; local in function:strtopQ
68 k = strtodg(s, sp, fpi, &expt, bits, loc);
79 L[_3] = bits[0];
80 L[_2] = bits[1];
81 L[_1] = bits[2];
82 L[_0] = (bits[3] & ~0x10000) | ((expt + 0x3fff + 112) << 16);
86 L[_3] = bits[0];
87 L[_2] = bits[1];
88 L[_1] = bits[2];
89 L[_0] = bits[
[all...]
H A Dstrtord.c38 ULtod(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k;
40 ULtod(ULong *L, ULong *bits, Long expt, int k)
50 L[_1] = bits[0];
51 L[_0] = bits[1];
56 L[_1] = bits[0];
57 L[_0] = (bits[1] & ~0x100000) | ((expt + 0x3ff + 52) << 20);
81 ULong bits[2]; local in function:strtord
91 k = strtodg(s, sp, fpi, &expt, bits, loc);
94 ULtod((/* LINTED */(U*)d)->L, bits, exp
[all...]
/src/sys/crypto/camellia/
H A Dcamellia-api.c37 camellia_set_key(camellia_ctx *ctx, const u_char *key, int bits) argument
40 Camellia_Ekeygen(bits, key, ctx->subkey);
41 ctx->bits = bits;
48 Camellia_DecryptBlock(ctx->bits, src, ctx->subkey, dst);
55 Camellia_EncryptBlock(ctx->bits, src, ctx->subkey, dst);
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/amlogic/
H A Dmeson-g12b-a311d.dtsi15 opp-hz = /bits/ 64 <100000000>;
20 opp-hz = /bits/ 64 <250000000>;
25 opp-hz = /bits/ 64 <500000000>;
30 opp-hz = /bits/ 64 <667000000>;
35 opp-hz = /bits/ 64 <1000000000>;
40 opp-hz = /bits/ 64 <1200000000>;
45 opp-hz = /bits/ 64 <1398000000>;
50 opp-hz = /bits/ 64 <1512000000>;
55 opp-hz = /bits/ 64 <1608000000>;
60 opp-hz = /bits/ 6
[all...]
H A Dmeson-g12b-s922x.dtsi15 opp-hz = /bits/ 64 <100000000>;
20 opp-hz = /bits/ 64 <250000000>;
25 opp-hz = /bits/ 64 <500000000>;
30 opp-hz = /bits/ 64 <667000000>;
35 opp-hz = /bits/ 64 <1000000000>;
40 opp-hz = /bits/ 64 <1200000000>;
45 opp-hz = /bits/ 64 <1398000000>;
50 opp-hz = /bits/ 64 <1512000000>;
55 opp-hz = /bits/ 64 <1608000000>;
60 opp-hz = /bits/ 6
[all...]
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Drk3229.dtsi18 opp-hz = /bits/ 64 <408000000>;
24 opp-hz = /bits/ 64 <600000000>;
28 opp-hz = /bits/ 64 <816000000>;
32 opp-hz = /bits/ 64 <1008000000>;
36 opp-hz = /bits/ 64 <1200000000>;
40 opp-hz = /bits/ 64 <1296000000>;
44 opp-hz = /bits/ 64 <1392000000>;
48 opp-hz = /bits/ 64 <1464000000>;
H A Dimx6qdl-skov-cpu-revc.dtsi20 ti,x-plate-ohms = /bits/ 16 <850>;
21 ti,y-plate-ohms = /bits/ 16 <295>;
22 ti,pressure-min = /bits/ 16 <2>;
23 ti,pressure-max = /bits/ 16 <1500>;
24 ti,vref-mv = /bits/ 16 <3300>;
25 ti,settle-delay-usec = /bits/ 16 <15>;
26 ti,vref-delay-usecs = /bits/ 16 <0>;
27 ti,penirq-recheck-delay-usecs = /bits/ 16 <100>;
28 ti,debounce-max = /bits/ 16 <100>;
29 ti,debounce-tol = /bits/ 1
[all...]
H A Dtegra124-peripherals-opp.dtsi9 opp-hz = /bits/ 64 <12750000>;
15 opp-hz = /bits/ 64 <12750000>;
21 opp-hz = /bits/ 64 <12750000>;
27 opp-hz = /bits/ 64 <12750000>;
33 opp-hz = /bits/ 64 <20400000>;
39 opp-hz = /bits/ 64 <20400000>;
45 opp-hz = /bits/ 64 <20400000>;
51 opp-hz = /bits/ 64 <20400000>;
57 opp-hz = /bits/ 64 <40800000>;
63 opp-hz = /bits/ 6
[all...]
H A Dtegra20-peripherals-opp.dtsi9 opp-hz = /bits/ 64 <36000000>;
15 opp-hz = /bits/ 64 <47500000>;
21 opp-hz = /bits/ 64 <50000000>;
27 opp-hz = /bits/ 64 <54000000>;
33 opp-hz = /bits/ 64 <57000000>;
39 opp-hz = /bits/ 64 <100000000>;
45 opp-hz = /bits/ 64 <108000000>;
51 opp-hz = /bits/ 64 <126666000>;
57 opp-hz = /bits/ 64 <150000000>;
63 opp-hz = /bits/ 6
[all...]
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/
H A Drk3399-op1-opp.dtsi12 opp-hz = /bits/ 64 <408000000>;
17 opp-hz = /bits/ 64 <600000000>;
21 opp-hz = /bits/ 64 <816000000>;
25 opp-hz = /bits/ 64 <1008000000>;
29 opp-hz = /bits/ 64 <1200000000>;
33 opp-hz = /bits/ 64 <1416000000>;
37 opp-hz = /bits/ 64 <1512000000>;
47 opp-hz = /bits/ 64 <408000000>;
52 opp-hz = /bits/ 64 <600000000>;
56 opp-hz = /bits/ 6
[all...]
H A Drk3399-opp.dtsi12 opp-hz = /bits/ 64 <408000000>;
17 opp-hz = /bits/ 64 <600000000>;
21 opp-hz = /bits/ 64 <816000000>;
25 opp-hz = /bits/ 64 <1008000000>;
29 opp-hz = /bits/ 64 <1200000000>;
33 opp-hz = /bits/ 64 <1416000000>;
43 opp-hz = /bits/ 64 <408000000>;
48 opp-hz = /bits/ 64 <600000000>;
52 opp-hz = /bits/ 64 <816000000>;
56 opp-hz = /bits/ 6
[all...]

Completed in 19 milliseconds

1234567891011>>