Home
last modified time | relevance | path

Searched +full:1 +full:c0 (Results 1 – 25 of 777) sorted by relevance

12345678910>>...32

/freebsd/contrib/libdivsufsort/lib/
H A Ddivsufsort.c47 saint_t c0, c1; in sort_typeBstar() local
60 for(i = n - 1, m = n, c0 = T[n - 1]; 0 <= i;) { in sort_typeBstar()
62 do { ++BUCKET_A(c1 = c0); } while((0 <= --i) && ((c0 = T[i]) >= c1)); in sort_typeBstar()
65 ++BUCKET_BSTAR(c0, c1); in sort_typeBstar()
68 for(--i, c1 = c0; (0 <= i) && ((c0 = T[i]) <= c1); --i, c1 = c0) { in sort_typeBstar()
69 ++BUCKET_B(c0, c1); in sort_typeBstar()
81 for(c0 = 0, i = 0, j = 0; c0 < ALPHABET_SIZE; ++c0) { in sort_typeBstar()
82 t = i + BUCKET_A(c0); in sort_typeBstar()
83 BUCKET_A(c0) = i + j; /* start point */ in sort_typeBstar()
84 i = t + BUCKET_B(c0, c0); in sort_typeBstar()
[all …]
/freebsd/sys/arm/include/
H A Dsysreg.h9 * 1. Redistributions of source code must retain the above copyright
43 #define CP14_DBGDIDR(rr) p14, 0, rr, c0, c0, 0 /* Debug ID Register */
44 #define CP14_DBGDSCRext_V6(rr) p14, 0, rr, c0, c1, 0 /* Debug Status and Ctrl Register v6 */
45 #define CP14_DBGDSCRext_V7(rr) p14, 0, rr, c0, c2, 2 /* Debug Status and Ctrl Register v7 */
46 #define CP14_DBGVCR(rr) p14, 0, rr, c0, c7, 0 /* Vector Catch Register */
47 #define CP14_DBGOSLAR(rr) p14, 0, rr, c1, c0, 4 /* OS Lock Access Register */
55 * CP15 C0 registers
57 #define CP15_MIDR(rr) p15, 0, rr, c0, c0, 0 /* Main ID Register */
58 #define CP15_CTR(rr) p15, 0, rr, c0, c0, 1 /* Cache Type Register */
59 #define CP15_TCMTR(rr) p15, 0, rr, c0, c0, 2 /* TCM Type Register */
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dblamka-round-avx2.h7 #define rotr32(x) _mm256_shuffle_epi32(x, _MM_SHUFFLE(2, 3, 0, 1))
8 …uffle_epi8(x, _mm256_setr_epi8(3, 4, 5, 6, 7, 0, 1, 2, 11, 12, 13, 14, 15, 8, 9, 10, 3, 4, 5, 6, 7…
9 …le_epi8(x, _mm256_setr_epi8(2, 3, 4, 5, 6, 7, 0, 1, 10, 11, 12, 13, 14, 15, 8, 9, 2, 3, 4, 5, 6, 7…
12 #define G1_AVX2(A0, A1, B0, B1, C0, C1, D0, D1) \ argument
20 ml = _mm256_mul_epu32(C0, D0); \
22 C0 = _mm256_add_epi64(C0, _mm256_add_epi64(D0, ml)); \
24 B0 = _mm256_xor_si256(B0, C0); \
41 #define G2_AVX2(A0, A1, B0, B1, C0, C1, D0, D1) \ argument
49 ml = _mm256_mul_epu32(C0, D0); \
51 C0 = _mm256_add_epi64(C0, _mm256_add_epi64(D0, ml)); \
[all …]
H A Dblamka-round-avx512f.h17 #define G1_AVX512F(A0, B0, C0, D0, A1, B1, C1, D1) \ argument
28 C0 = muladd(C0, D0); \
31 B0 = _mm512_xor_si512(B0, C0); \
38 #define G2_AVX512F(A0, B0, C0, D0, A1, B1, C1, D1) \ argument
49 C0 = muladd(C0, D0); \
52 B0 = _mm512_xor_si512(B0, C0); \
59 #define DIAGONALIZE(A0, B0, C0, D0, A1, B1, C1, D1) \ argument
61 B0 = _mm512_permutex_epi64(B0, _MM_SHUFFLE(0, 3, 2, 1)); \
62 B1 = _mm512_permutex_epi64(B1, _MM_SHUFFLE(0, 3, 2, 1)); \
64 C0 = _mm512_permutex_epi64(C0, _MM_SHUFFLE(1, 0, 3, 2)); \
[all …]
H A Dblamka-round-ssse3.h8 (_mm_setr_epi8(2, 3, 4, 5, 6, 7, 0, 1, 10, 11, 12, 13, 14, 15, 8, 9))
10 (_mm_setr_epi8(3, 4, 5, 6, 7, 0, 1, 2, 11, 12, 13, 14, 15, 8, 9, 10))
13 ? _mm_shuffle_epi32((x), _MM_SHUFFLE(2, 3, 0, 1)) \
31 #define G1(A0, B0, C0, D0, A1, B1, C1, D1) \ argument
42 C0 = fBlaMka(C0, D0); \
45 B0 = _mm_xor_si128(B0, C0); \
52 #define G2(A0, B0, C0, D0, A1, B1, C1, D1) \ argument
63 C0 = fBlaMka(C0, D0); \
66 B0 = _mm_xor_si128(B0, C0); \
73 #define DIAGONALIZE(A0, B0, C0, D0, A1, B1, C1, D1) \ argument
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_asm.c29 mul_add(rp[1], ap[1], w, c1); in bn_mul_add_words()
58 mul(rp[1], ap[1], w, c1); in bn_mul_words()
83 sqr(r[0], r[1], a[0]); in bn_sqr_words()
84 sqr(r[2], r[3], a[1]); in bn_sqr_words()
93 sqr(r[0], r[1], a[0]); in bn_sqr_words()
119 mul_add(rp[1], ap[1], bl, bh, c); in bn_mul_add_words()
151 mul(rp[1], ap[1], bl, bh, carry); in bn_mul_words()
176 sqr64(r[0], r[1], a[0]); in bn_sqr_words()
177 sqr64(r[2], r[3], a[1]); in bn_sqr_words()
186 sqr64(r[0], r[1], a[0]); in bn_sqr_words()
[all …]
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dco-586.pl9 $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
28 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
30 # pos == -1 if eax and edx are pre-loaded, 0 to load from next
31 # words, and 1 if load return value
40 &add($c0,"eax");
46 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # load next b
49 # is pos > 1, it means it is the last loop
50 &mov(&DWP($i*4,"eax","",0),$c0) if $pos > 0; # save r[];
51 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next a
56 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
[all …]
/freebsd/usr.bin/mkimg/tests/
H A Dimg-1x1-512-ebr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-63x255-512-ebr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
21 000002d0 20 22 31 22 0a 64 64 62 2e 67 65 6f 6d 65 74 72 | "1".ddb.geometr|
33 00000630 c0 00 00 00 d0 00 00 00 e0 00 00 00 f0 00 00 00 |................|
37 00000670 c0 01 00 00 d0 01 00 00 e0 01 00 00 f0 01 00 00 |................|
41 000006b0 c0 02 00 00 d0 02 00 00 e0 02 00 00 f0 02 00 00 |................|
42 000006c0 00 03 00 00 10 03 00 00 20 03 00 00 30 03 00 00 |........ ...0...|
45 000006f0 c0 03 00 00 d0 03 00 00 e0 03 00 00 f0 03 00 00 |................|
49 00000730 c0 04 00 00 d0 04 00 00 e0 04 00 00 f0 04 00 00 |................|
53 00000770 c0 05 00 00 d0 05 00 00 e0 05 00 00 f0 05 00 00 |................|
[all …]
H A Dimg-1x1-4096-ebr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-1x1-4096-mbr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-1x1-512-mbr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-63x255-4096-ebr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
21 000002d0 20 22 31 22 0a 64 64 62 2e 67 65 6f 6d 65 74 72 | "1".ddb.geometr|
33 00000630 c0 00 00 00 d0 00 00 00 e0 00 00 00 f0 00 00 00 |................|
37 00000670 c0 01 00 00 d0 01 00 00 e0 01 00 00 f0 01 00 00 |................|
41 000006b0 c0 02 00 00 d0 02 00 00 e0 02 00 00 f0 02 00 00 |................|
42 000006c0 00 03 00 00 10 03 00 00 20 03 00 00 30 03 00 00 |........ ...0...|
45 000006f0 c0 03 00 00 d0 03 00 00 e0 03 00 00 f0 03 00 00 |................|
49 00000730 c0 04 00 00 d0 04 00 00 e0 04 00 00 f0 04 00 00 |................|
53 00000770 c0 05 00 00 d0 05 00 00 e0 05 00 00 f0 05 00 00 |................|
[all …]
H A Dimg-1x1-512-bsd.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-1x1-4096-bsd.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-63x255-4096-bsd.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
21 000002d0 20 22 31 22 0a 64 64 62 2e 67 65 6f 6d 65 74 72 | "1".ddb.geometr|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
52 00000760 a0 05 00 00 b0 05 00 00 c0 05 00 00 d0 05 00 00 |................|
[all …]
H A Dimg-63x255-512-bsd.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
21 000002d0 20 22 31 22 0a 64 64 62 2e 67 65 6f 6d 65 74 72 | "1".ddb.geometr|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
52 00000760 a0 05 00 00 b0 05 00 00 c0 05 00 00 d0 05 00 00 |................|
[all …]
H A Dimg-1x1-4096-apm.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-1x1-512-apm.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
[all …]
H A Dimg-63x255-4096-apm.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
52 00000760 a0 05 00 00 b0 05 00 00 c0 05 00 00 d0 05 00 00 |................|
56 000007a0 a0 06 00 00 b0 06 00 00 c0 06 00 00 d0 06 00 00 |................|
[all …]
H A Dimg-63x255-512-apm.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
32 00000620 a0 00 00 00 b0 00 00 00 c0 00 00 00 d0 00 00 00 |................|
36 00000660 a0 01 00 00 b0 01 00 00 c0 01 00 00 d0 01 00 00 |................|
40 000006a0 a0 02 00 00 b0 02 00 00 c0 02 00 00 d0 02 00 00 |................|
42 000006c0 20 03 00 00 30 03 00 00 40 03 00 00 50 03 00 00 | ...0...@...P...|
44 000006e0 a0 03 00 00 b0 03 00 00 c0 03 00 00 d0 03 00 00 |................|
48 00000720 a0 04 00 00 b0 04 00 00 c0 04 00 00 d0 04 00 00 |................|
52 00000760 a0 05 00 00 b0 05 00 00 c0 05 00 00 d0 05 00 00 |................|
56 000007a0 a0 06 00 00 b0 06 00 00 c0 06 00 00 d0 06 00 00 |................|
[all …]
H A Dimg-63x255-512-mbr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
21 000002d0 20 22 31 22 0a 64 64 62 2e 67 65 6f 6d 65 74 72 | "1".ddb.geometr|
33 00000630 c0 00 00 00 d0 00 00 00 e0 00 00 00 f0 00 00 00 |................|
37 00000670 c0 01 00 00 d0 01 00 00 e0 01 00 00 f0 01 00 00 |................|
41 000006b0 c0 02 00 00 d0 02 00 00 e0 02 00 00 f0 02 00 00 |................|
42 000006c0 00 03 00 00 10 03 00 00 20 03 00 00 30 03 00 00 |........ ...0...|
45 000006f0 c0 03 00 00 d0 03 00 00 e0 03 00 00 f0 03 00 00 |................|
49 00000730 c0 04 00 00 d0 04 00 00 e0 04 00 00 f0 04 00 00 |................|
53 00000770 c0 05 00 00 d0 05 00 00 e0 05 00 00 f0 05 00 00 |................|
[all …]
H A Dimg-1x1-512-gpt.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
22 000002e0 6d 65 74 72 79 2e 68 65 61 64 73 20 3d 20 22 31 |metry.heads = "1|
24 00000300 65 63 74 6f 72 73 20 3d 20 22 31 22 0a 00 00 00 |ectors = "1"....|
32 00000620 90 00 00 00 a0 00 00 00 b0 00 00 00 c0 00 00 00 |................|
36 00000660 90 01 00 00 a0 01 00 00 b0 01 00 00 c0 01 00 00 |................|
40 000006a0 90 02 00 00 a0 02 00 00 b0 02 00 00 c0 02 00 00 |................|
42 000006c0 10 03 00 00 20 03 00 00 30 03 00 00 40 03 00 00 |.... ...0...@...|
44 000006e0 90 03 00 00 a0 03 00 00 b0 03 00 00 c0 03 00 00 |................|
48 00000720 90 04 00 00 a0 04 00 00 b0 04 00 00 c0 04 00 00 |................|
[all …]
H A Dimg-63x255-4096-mbr.vmdk.hex9 00000210 72 46 69 6c 65 0a 76 65 72 73 69 6f 6e 3d 31 0a |rFile.version=1.|
20 000002c0 65 74 72 79 2e 63 79 6c 69 6e 64 65 72 73 20 3d |etry.cylinders =|
21 000002d0 20 22 31 22 0a 64 64 62 2e 67 65 6f 6d 65 74 72 | "1".ddb.geometr|
33 00000630 c0 00 00 00 d0 00 00 00 e0 00 00 00 f0 00 00 00 |................|
37 00000670 c0 01 00 00 d0 01 00 00 e0 01 00 00 f0 01 00 00 |................|
41 000006b0 c0 02 00 00 d0 02 00 00 e0 02 00 00 f0 02 00 00 |................|
42 000006c0 00 03 00 00 10 03 00 00 20 03 00 00 30 03 00 00 |........ ...0...|
45 000006f0 c0 03 00 00 d0 03 00 00 e0 03 00 00 f0 03 00 00 |................|
49 00000730 c0 04 00 00 d0 04 00 00 e0 04 00 00 f0 04 00 00 |................|
53 00000770 c0 05 00 00 d0 05 00 00 e0 05 00 00 f0 05 00 00 |................|
[all …]
/freebsd/contrib/file/tests/
H A Dutf16xmlsvg.testfile2 <!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
9 …<path class="st0" d="M2372.4,727.1l-15.1-26.6h-12.6v26.6h-5.6V666h17c11,0,19.2,5.5,19.2,16.6c0,10.…
10 …H2372.4 M2355.1,670.9h-10.5v24.8h10.7c8.3,0,14.1-4.3,14.1-13.1C2369.5,674.8,2362.9,670.9,2355.1,67…
11 …<path class="st0" d="M2308.6,697.7c0,25,20.5,45.4,45.5,45.4c24.8,0,45.3-20.4,45.3-45.4c0-25-20.5-4…
12 …C2329.1,652.4,2308.6,672.7,2308.6,697.7 M2312.6,697.7c0-22.9,18.5-41.5,41.6-41.5c22.6,0,41.3,18.6,…
13 c0,22.9-18.7,41.5-41.3,41.5C2331.1,739.2,2312.6,720.6,2312.6,697.7"/>
14 …<path class="st0" d="M255.7,469.2c0-188.4,153.3-342.1,342.4-342.1c102.7,0,195.2,46.5,258,118l-219.…
15 …c-14.1,14.7-152.8,153.2-170.8,170.2c-18,16.9-31.2,20.7-54.8,20.7L255.7,469.2 M406.1,567.2c23.6,0,3…
17 …c-23.8,0-45.5,12.3-58.4,24.9c-13.4,12.9-155.3,154.4-168.9,168.6c0,0-24.3,31-72.3,31l-159.9,0c2.2,2…
18 …L406.1,567.2z M479.6,666.5c23.6,0,36.7-3.6,54.7-20.7c20.9-19.8,154.3-156,170.6-173.5c13.9-14.9,44.…
[all …]

12345678910>>...32