| /freebsd-12-stable/secure/lib/libcrypto/aarch64/ |
| D | ghashv8-armx.S | 12 movi v19.16b,#0xe1 14 ext v3.16b,v17.16b,v17.16b,#8 17 ext v16.16b,v18.16b,v19.16b,#8 //t0=0xc2....01 20 and v18.16b,v18.16b,v16.16b 22 ext v18.16b,v18.16b,v18.16b,#8 23 and v16.16b,v16.16b,v17.16b 24 orr v3.16b,v3.16b,v18.16b //H<<<=1 25 eor v20.16b,v3.16b,v16.16b //twisted H 29 ext v16.16b,v20.16b,v20.16b,#8 //Karatsuba pre-processing 31 eor v16.16b,v16.16b,v20.16b [all …]
|
| D | aesv8-armx.S | 22 b.eq .Lenc_key_abort 24 b.eq .Lenc_key_abort 27 b.lt .Lenc_key_abort 29 b.gt .Lenc_key_abort 31 b.ne .Lenc_key_abort 36 eor v0.16b,v0.16b,v0.16b 37 ld1 {v3.16b},[x0],#16 41 b.lt .Loop128 42 b.eq .L192 43 b .L256 [all …]
|
| D | vpaes-armv8.S | 105 movi v17.16b, #0x0f 135 and v1.16b, v7.16b, v17.16b // vpand %xmm9, %xmm0, %xmm1 136 ushr v0.16b, v7.16b, #4 // vpsrlb $4, %xmm0, %xmm0 137 tbl v1.16b, {v20.16b}, v1.16b // vpshufb %xmm1, %xmm2, %xmm1 139 tbl v2.16b, {v21.16b}, v0.16b // vpshufb %xmm0, %xmm3, %xmm2 140 eor v0.16b, v1.16b, v16.16b // vpxor %xmm5, %xmm1, %xmm0 141 eor v0.16b, v0.16b, v2.16b // vpxor %xmm2, %xmm0, %xmm0 142 b .Lenc_entry 148 tbl v4.16b, {v25.16b}, v2.16b // vpshufb %xmm2, %xmm13, %xmm4 # 4 = sb1u 150 tbl v0.16b, {v24.16b}, v3.16b // vpshufb %xmm3, %xmm12, %xmm0 # 0 = sb1t [all …]
|
| D | chacha-armv8.S | 31 b.lo .Lshort 39 b.ne ChaCha20_neon 204 b.lo .Ltail 245 b.hi .Loop_outer 329 b.hs .L512_or_more_neon 358 mov v0.16b,v24.16b 361 mov v4.16b,v24.16b 364 mov v16.16b,v24.16b 366 mov v1.16b,v25.16b 368 mov v5.16b,v25.16b [all …]
|
| /freebsd-12-stable/sys/dev/sound/pcm/ |
| D | buffer.c | 48 struct snd_dbuf *b; in sndbuf_create() local 50 b = malloc(sizeof(*b), M_DEVBUF, M_WAITOK | M_ZERO); in sndbuf_create() 51 snprintf(b->name, SNDBUF_NAMELEN, "%s:%s", drv, desc); in sndbuf_create() 52 b->dev = dev; in sndbuf_create() 53 b->channel = channel; in sndbuf_create() 55 return b; in sndbuf_create() 59 sndbuf_destroy(struct snd_dbuf *b) in sndbuf_destroy() argument 61 sndbuf_free(b); in sndbuf_destroy() 62 free(b, M_DEVBUF); in sndbuf_destroy() 74 struct snd_dbuf *b = (struct snd_dbuf *)arg; in sndbuf_setmap() local [all …]
|
| D | buffer.h | 31 #define SND_DMA(b) (sndbuf_getflags((b)) & SNDBUF_F_DMA) argument 32 #define SNDBUF_LOCKASSERT(b) argument 67 void sndbuf_destroy(struct snd_dbuf *b); 69 void sndbuf_dump(struct snd_dbuf *b, char *s, u_int32_t what); 71 int sndbuf_alloc(struct snd_dbuf *b, bus_dma_tag_t dmatag, int dmaflags, unsigned int size); 72 int sndbuf_setup(struct snd_dbuf *b, void *buf, unsigned int size); 73 void sndbuf_free(struct snd_dbuf *b); 74 int sndbuf_resize(struct snd_dbuf *b, unsigned int blkcnt, unsigned int blksz); 75 int sndbuf_remalloc(struct snd_dbuf *b, unsigned int blkcnt, unsigned int blksz); 76 void sndbuf_reset(struct snd_dbuf *b); [all …]
|
| /freebsd-12-stable/sys/dev/cx/ |
| D | cxreg.h | 41 #define R(b,r) ((b) | (((r)<<6 & 0x3c00) | ((r) & 0xf))) argument 52 #define GFRCR(b) R(b,0x82) /* global firmware revision code register */ argument 53 #define CAR(b) R(b,0xec) /* channel access register */ argument 58 #define CMR(b) R(b,0x18) /* channel mode register */ argument 59 #define COR1(b) R(b,0x13) /* channel option register 1 */ argument 60 #define COR2(b) R(b,0x14) /* channel option register 2 */ argument 61 #define COR3(b) R(b,0x15) /* channel option register 3 */ argument 62 #define COR4(b) R(b,0x16) /* channel option register 4 */ argument 63 #define COR5(b) R(b,0x17) /* channel option register 5 */ argument 64 #define COR6(b) R(b,0x1b) /* channel option register 6 */ argument [all …]
|
| D | csigma.c | 118 int v, b; in cx_download() local 123 for (b=0; b<7; b+=2, i+=2) { in cx_download() 127 if (v >> b & 1) cr2 |= BCR2_TMS; in cx_download() 128 if (v >> b & 2) cr2 |= BCR2_TDI; in cx_download() 344 int cx_probe_irq (cx_board_t *b, int irq) in cx_probe_irq() argument 349 rev = inb (BSR(b->port)); in cx_probe_irq() 350 port = ((rev & BSR_VAR_MASK) != CRONYX_400) ? CS0(b->port) : CS1(b->port); in cx_probe_irq() 358 outb (BCR0(b->port), BCR0_NORESET | irqmask[irq]); in cx_probe_irq() 374 outb (BCR0(b->port), 0); in cx_probe_irq() 396 void cx_init (cx_board_t *b, int num, port_t port, int irq, int dma) in cx_init() argument [all …]
|
| /freebsd-12-stable/contrib/ntp/libntp/lib/isc/ |
| D | buffer.c | 31 isc__buffer_init(isc_buffer_t *b, const void *base, unsigned int length) { in isc__buffer_init() argument 37 REQUIRE(b != NULL); in isc__buffer_init() 39 ISC__BUFFER_INIT(b, base, length); in isc__buffer_init() 43 isc__buffer_initnull(isc_buffer_t *b) { in isc__buffer_initnull() argument 49 ISC__BUFFER_INIT(b, NULL, 0); in isc__buffer_initnull() 53 isc_buffer_reinit(isc_buffer_t *b, void *base, unsigned int length) { in isc_buffer_reinit() argument 63 REQUIRE(b->length <= length); in isc_buffer_reinit() 66 (void)memmove(base, b->base, b->length); in isc_buffer_reinit() 67 b->base = base; in isc_buffer_reinit() 68 b->length = length; in isc_buffer_reinit() [all …]
|
| D | sha1.c | 131 static void do_R01(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, 133 static void do_R2(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, 135 static void do_R3(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, 137 static void do_R4(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, 147 do_R01(isc_uint32_t *a, isc_uint32_t *b, isc_uint32_t *c, isc_uint32_t *d, in do_R01() argument 150 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); in do_R01() 151 nR0(c,d,e,a,b, 3); nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); in do_R01() 152 nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); nR0(c,d,e,a,b, 8); in do_R01() 153 nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01() 154 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); in do_R01() [all …]
|
| /freebsd-12-stable/contrib/cortex-strings/src/aarch64/ |
| D | strchr.S | 93 dup vrepchr.16b, chrin 98 b.eq .Lloop 104 ld1 {vdata1.16b, vdata2.16b}, [src], #32 106 cmeq vhas_nul1.16b, vdata1.16b, #0 107 cmeq vhas_chr1.16b, vdata1.16b, vrepchr.16b 108 cmeq vhas_nul2.16b, vdata2.16b, #0 109 cmeq vhas_chr2.16b, vdata2.16b, vrepchr.16b 110 and vhas_nul1.16b, vhas_nul1.16b, vrepmask_0.16b 111 and vhas_nul2.16b, vhas_nul2.16b, vrepmask_0.16b 112 and vhas_chr1.16b, vhas_chr1.16b, vrepmask_c.16b [all …]
|
| D | strchrnul.S | 82 dup vrepchr.16b, chrin 86 b.eq .Lloop 92 ld1 {vdata1.16b, vdata2.16b}, [src], #32 94 cmeq vhas_nul1.16b, vdata1.16b, #0 95 cmeq vhas_chr1.16b, vdata1.16b, vrepchr.16b 96 cmeq vhas_nul2.16b, vdata2.16b, #0 97 cmeq vhas_chr2.16b, vdata2.16b, vrepchr.16b 98 orr vhas_chr1.16b, vhas_chr1.16b, vhas_nul1.16b 99 orr vhas_chr2.16b, vhas_chr2.16b, vhas_nul2.16b 100 and vhas_chr1.16b, vhas_chr1.16b, vrepmask.16b [all …]
|
| /freebsd-12-stable/contrib/ntp/sntp/libopts/ |
| D | intprops.h | 106 #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485) argument 160 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument 161 ((b) < 0 \ 162 ? (a) < (min) - (b) \ 163 : (max) - (b) < (a)) 167 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument 168 ((b) < 0 \ 169 ? (max) + (b) < (a) \ 170 : (a) < (min) + (b)) 183 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ argument [all …]
|
| /freebsd-12-stable/contrib/bearssl/src/ec/ |
| D | ec_c25519_m15.c | 173 mul20(uint32_t *d, const uint32_t *a, const uint32_t *b) in mul20() argument 259 memcpy(v, b, 20 * sizeof *b); in mul20() 260 ZADD(v, 4, b, 0, b, 1); in mul20() 261 ZADD(v, 5, b, 2, b, 3); in mul20() 262 ZADD(v, 6, b, 0, b, 2); in mul20() 263 ZADD(v, 7, b, 1, b, 3); in mul20() 407 mul20(uint32_t *d, const uint32_t *a, const uint32_t *b) in mul20() argument 411 t[ 0] = MUL15(a[ 0], b[ 0]); in mul20() 412 t[ 1] = MUL15(a[ 0], b[ 1]) in mul20() 413 + MUL15(a[ 1], b[ 0]); in mul20() [all …]
|
| D | ec_p256_m15.c | 128 mul20(uint32_t *d, const uint32_t *a, const uint32_t *b) in mul20() argument 214 memcpy(v, b, 20 * sizeof *b); in mul20() 215 ZADD(v, 4, b, 0, b, 1); in mul20() 216 ZADD(v, 5, b, 2, b, 3); in mul20() 217 ZADD(v, 6, b, 0, b, 2); in mul20() 218 ZADD(v, 7, b, 1, b, 3); in mul20() 362 mul20(uint32_t *d, const uint32_t *a, const uint32_t *b) in mul20() argument 366 t[ 0] = MUL15(a[ 0], b[ 0]); in mul20() 367 t[ 1] = MUL15(a[ 0], b[ 1]) in mul20() 368 + MUL15(a[ 1], b[ 0]); in mul20() [all …]
|
| /freebsd-12-stable/contrib/bsnmp/lib/ |
| D | asn1.c | 59 asn_get_header(struct asn_buf *b, u_char *type, asn_len_t *len) in asn_get_header() argument 63 if (b->asn_len == 0) { in asn_get_header() 64 asn_error(b, "no identifier for header"); in asn_get_header() 67 *type = *b->asn_cptr; in asn_get_header() 69 asn_error(b, "types > 0x30 not supported (%u)", in asn_get_header() 73 b->asn_cptr++; in asn_get_header() 74 b->asn_len--; in asn_get_header() 75 if (b->asn_len == 0) { in asn_get_header() 76 asn_error(b, "no length field"); in asn_get_header() 79 if (*b->asn_cptr & 0x80) { in asn_get_header() [all …]
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/ |
| D | tst.dynsize.d.out | 2 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 13 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 24 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 35 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 46 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 57 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 68 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 79 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 90 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 101 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef [all …]
|
| /freebsd-12-stable/lib/libc/regex/grot/ |
| D | tests | 21 # b RE is a BRE, not an ERE 40 a|b|c - abc a 43 a(b)c - abc abc 44 a\(b\)c b abc abc 46 a( b a( a( 49 a\(b bC EPAREN 50 a(b C EPAREN 51 a(b b a(b a(b 56 a) b a) a) 59 a()b - ab ab [all …]
|
| /freebsd-12-stable/crypto/openssh/ |
| D | bitmap.c | 54 bitmap_free(struct bitmap *b) in bitmap_free() argument 56 if (b != NULL && b->d != NULL) { in bitmap_free() 57 bitmap_zero(b); in bitmap_free() 58 free(b->d); in bitmap_free() 59 b->d = NULL; in bitmap_free() 61 free(b); in bitmap_free() 65 bitmap_zero(struct bitmap *b) in bitmap_zero() argument 67 memset(b->d, 0, b->len * BITMAP_BYTES); in bitmap_zero() 68 b->top = 0; in bitmap_zero() 72 bitmap_test_bit(struct bitmap *b, u_int n) in bitmap_test_bit() argument [all …]
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | animation | 15 >12 string mvhd \b movie (fast start) 16 >12 string mdra \b URL 17 >12 string cmov \b movie (fast start, compressed header) 18 >12 string rmra \b multiple URLs 39 >8 string XAVC \b, MPEG v4 system, Sony XAVC Codec 40 >>96 string x \b, Audio "%.4s" 42 >>140 string x \b, Video "%.4s" 45 >8 string 3g2 \b, MPEG v4 system, 3GPP2 47 >>11 byte 4 \b v4 (H.263/AMR GSM 6.10) 48 >>11 byte 5 \b v5 (H.263/AMR GSM 6.10) [all …]
|
| /freebsd-12-stable/crypto/openssl/include/openssl/ |
| D | bio.h | 178 void BIO_set_flags(BIO *b, int flags); 179 int BIO_test_flags(const BIO *b, int flags); 180 void BIO_clear_flags(BIO *b, int flags); 182 # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument 183 # define BIO_set_retry_special(b) \ argument 184 BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY)) 185 # define BIO_set_retry_read(b) \ argument 186 BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY)) 187 # define BIO_set_retry_write(b) \ argument 188 BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY)) [all …]
|
| /freebsd-12-stable/crypto/openssl/crypto/bio/ |
| D | bio_lib.c | 31 static long bio_call_callback(BIO *b, int oper, const char *argp, size_t len, in bio_call_callback() argument 37 if (b->callback_ex != NULL) in bio_call_callback() 38 return b->callback_ex(b, oper, argp, len, argi, argl, inret, processed); in bio_call_callback() 61 ret = b->callback(b, oper, argp, argi, argl, inret); in bio_call_callback() 190 void BIO_clear_flags(BIO *b, int flags) in BIO_clear_flags() argument 192 b->flags &= ~flags; in BIO_clear_flags() 195 int BIO_test_flags(const BIO *b, int flags) in BIO_test_flags() argument 197 return (b->flags & flags); in BIO_test_flags() 200 void BIO_set_flags(BIO *b, int flags) in BIO_set_flags() argument 202 b->flags |= flags; in BIO_set_flags() [all …]
|
| /freebsd-12-stable/contrib/netbsd-tests/lib/libc/regex/data/ |
| D | subexp.in | 2 a(b)(c)d - abcd abcd b,c 3 a(((b)))c - abc abc b,b,b 4 a(b|(c))d - abd abd b,- 5 a(b*|c|e)d - abbd abbd bb 6 a(b*|c|e)d - acd acd c 7 a(b*|c|e)d - ad ad @d 8 a(b?)c - abc abc b 9 a(b?)c - ac ac @c 10 a(b+)c - abc abc b 11 a(b+)c - abbbc abbbc bbb [all …]
|
| /freebsd-12-stable/gnu/usr.bin/grep/tests/ |
| D | tests | 20 # b RE is a BRE, not an ERE 39 a|b|c - abc a 42 a(b)c - abc abc 43 a\(b\)c b abc abc 45 a( b a( a( 48 a\(b bC EPAREN 49 a(b C EPAREN 50 a(b b a(b a(b 55 a) b a) a) 58 a()b - ab ab [all …]
|
| /freebsd-12-stable/sys/libkern/ |
| D | jenkins_hash.c | 91 #define mix(a,b,c) \ argument 93 a -= c; a ^= rot(c, 4); c += b; \ 94 b -= a; b ^= rot(a, 6); a += c; \ 95 c -= b; c ^= rot(b, 8); b += a; \ 96 a -= c; a ^= rot(c,16); c += b; \ 97 b -= a; b ^= rot(a,19); a += c; \ 98 c -= b; c ^= rot(b, 4); b += a; \ 126 #define final(a,b,c) \ argument 128 c ^= b; c -= rot(b,14); \ 130 b ^= a; b -= rot(a,25); \ [all …]
|