Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 6328) sorted by relevance

12345678910>>...254

/freebsd-9-stable/sys/dev/cp/
Dcpddk.c61 struct l181*a,void*l79,int w);void( *l171)(struct l181*a,unsigned char
62 *l99,int w);void( *l65)(struct l181*a,int l916);}e;typedef struct
72 cp_regio(e*a,int l194,int z,unsigned long r);void cp_register_transmit
73 (e*a,void( *l85)(e* ,void* ,int));void cp_register_receive(e*a,void( *
74 l85)(e* ,unsigned char* ,int));void cp_register_error(e*a,void( *l85)(
75 e* ,int));void cp_start_chan(e*a,int l208,int l191,l211*l49,unsigned
76 long l69);void cp_stop_chan(e*a);void cp_start_e1(e*a);void cp_stop_e1
77 (e*a);int cp_transmit_space(e*a);int cp_send_packet(e*a,unsigned char
80 ,int m);void cp_g703_timer(e*a);void cp_e1_timer(e*a);void cp_e3_timer
81 (e*a);void cp_led(s*b,int m);void cp_set_dtr(e*a,int m);void
[all …]
/freebsd-9-stable/gnu/usr.bin/grep/tests/
Dspencer2.tests1 0@a@a
4 0@a|b|c@abc
5 0@a(b)c@abc
6 1@a\(b\)c@abc
7 2@a(@EPAREN
8 2@a(@a(
9 0@a\(@a(
10 1@a\(@EPAREN
11 1@a\(b@EPAREN
12 2@a(b@EPAREN
[all …]
Dere.tests1 0@a@a
4 0@a|b|c@abc
5 0@a(b)c@abc
6 2@a(@EPAREN
7 0@a\(@a(
8 2@a(b@EPAREN
9 0@a)@a)@POSIX BOTCH
11 0@a()b@ab
13 1@a^b@a^b
14 1@a$b@a$b
[all …]
Dtests9 # expected to fail. If there is a fourth field, it is the substring that
10 # the RE is expected to match. If there is a fifth field, it is a comma-
12 # no match for that one. In both the fourth and fifth fields, a (sub)field
14 # a null string followed by the stuff after the @; this provides a way to
20 # b RE is a BRE, not an ERE
21 # & try it as both an ERE and a BRE
36 a & a a
39 a|b|c - abc a
42 a(b)c - abc abc
43 a\(b\)c b abc abc
[all …]
Dbre.tests1 0@a\(b\)c@abc
2 0@a(@a(
3 2@a\(@EPAREN
4 2@a\(b@EPAREN
5 0@a(b@a(b
6 0@a)@a)
7 2@a\)@EPAREN
9 0@a\(\)b@ab
10 0@a^b@a^b@TO CORRECT
11 0@a$b@a$b
[all …]
/freebsd-9-stable/gnu/usr.bin/rcs/
Drcstest58 RCSfile=RCS${SLASH}a.c
59 RCS_alt=RCS${SLASH}a.d
60 lockfile=RCS${SLASH}a._
73 rm -f a.* $RCSfile $RCS_alt $lockfile &&
74 echo 1.1 >a.11 &&
75 echo 1.1.1.1 >a.3x1 &&
76 echo 1.2 >a.12 || { echo "#initialization failed"; exit 2; }
86 rcs -i -L -ta.11 $q a.c &&
92 rlog a.c >/dev/null || { echo "#rlog failed on empty RCS file"; exit 1; }
95 cp a.11 a.c &&
[all …]
/freebsd-9-stable/sys/powerpc/include/
Dpio.h43 __outb(volatile u_int8_t *a, u_int8_t v) in __outb() argument
45 *a = v; in __outb()
50 __outw(volatile u_int16_t *a, u_int16_t v) in __outw() argument
52 *a = v; in __outw()
57 __outl(volatile u_int32_t *a, u_int32_t v) in __outl() argument
59 *a = v; in __outl()
64 __outll(volatile u_int64_t *a, u_int64_t v) in __outll() argument
66 *a = v; in __outll()
71 __outwrb(volatile u_int16_t *a, u_int16_t v) in __outwrb() argument
73 __asm__ volatile("sthbrx %0, 0, %1" :: "r"(v), "r"(a)); in __outwrb()
[all …]
/freebsd-9-stable/lib/libc/regex/grot/
Dtests10 # expected to fail. If there is a fourth field, it is the substring that
11 # the RE is expected to match. If there is a fifth field, it is a comma-
13 # no match for that one. In both the fourth and fifth fields, a (sub)field
15 # a null string followed by the stuff after the @; this provides a way to
21 # b RE is a BRE, not an ERE
22 # & try it as both an ERE and a BRE
37 a & a a
40 a|b|c - abc a
43 a(b)c - abc abc
44 a\(b\)c b abc abc
[all …]
/freebsd-9-stable/contrib/libarchive/libarchive/
Darchive_write_disk.c262 _archive_write_disk_lazy_stat(struct archive_write_disk *a) in _archive_write_disk_lazy_stat() argument
264 if (a->pst != NULL) { in _archive_write_disk_lazy_stat()
269 if (a->fd >= 0 && fstat(a->fd, &a->st) == 0) { in _archive_write_disk_lazy_stat()
270 a->pst = &a->st; in _archive_write_disk_lazy_stat()
278 if (lstat(a->name, &a->st) == 0) { in _archive_write_disk_lazy_stat()
279 a->pst = &a->st; in _archive_write_disk_lazy_stat()
282 archive_set_error(&a->archive, errno, "Couldn't stat file"); in _archive_write_disk_lazy_stat()
307 struct archive_write_disk *a = (struct archive_write_disk *)_a; in archive_write_disk_set_options() local
309 a->flags = flags; in archive_write_disk_set_options()
328 struct archive_write_disk *a = (struct archive_write_disk *)_a; in _archive_write_header() local
[all …]
Darchive_write.c90 struct archive_write *a; in archive_write_new() local
93 a = (struct archive_write *)malloc(sizeof(*a)); in archive_write_new()
94 if (a == NULL) in archive_write_new()
96 memset(a, 0, sizeof(*a)); in archive_write_new()
97 a->archive.magic = ARCHIVE_WRITE_MAGIC; in archive_write_new()
98 a->archive.state = ARCHIVE_STATE_NEW; in archive_write_new()
99 a->archive.vtable = archive_write_vtable(); in archive_write_new()
105 a->bytes_per_block = 10240; in archive_write_new()
106 a->bytes_in_last_block = -1; /* Default */ in archive_write_new()
109 a->null_length = 1024; in archive_write_new()
[all …]
/freebsd-9-stable/contrib/libarchive/libarchive/test/
Dtest_read_pax_truncated.c31 struct archive *a; in DEFINE_TEST() local
39 assert((a = archive_write_new()) != NULL); in DEFINE_TEST()
40 assertA(0 == archive_write_set_format_pax(a)); in DEFINE_TEST()
41 assertA(0 == archive_write_set_compression_none(a)); in DEFINE_TEST()
42 assertEqualIntA(a, ARCHIVE_OK, in DEFINE_TEST()
43 archive_write_open_memory(a, buff, buff_size, &used)); in DEFINE_TEST()
57 assertA(0 == archive_write_header(a, ae)); in DEFINE_TEST()
60 == archive_write_data(a, filedata, filedata_size)); in DEFINE_TEST()
63 assertA(0 == archive_write_close(a)); in DEFINE_TEST()
65 archive_write_finish(a); in DEFINE_TEST()
[all …]
Dtest_write_compress_xz.c39 struct archive* a; in DEFINE_TEST() local
56 assert((a = archive_write_new()) != NULL); in DEFINE_TEST()
57 assertA(0 == archive_write_set_format_ustar(a)); in DEFINE_TEST()
58 r = archive_write_set_compression_xz(a); in DEFINE_TEST()
61 assertEqualInt(ARCHIVE_OK, archive_write_finish(a)); in DEFINE_TEST()
64 assertEqualIntA(a, ARCHIVE_OK, in DEFINE_TEST()
65 archive_write_set_bytes_per_block(a, 10)); in DEFINE_TEST()
66 assertEqualInt(ARCHIVE_COMPRESSION_XZ, archive_compression(a)); in DEFINE_TEST()
67 assertEqualString("xz", archive_compression_name(a)); in DEFINE_TEST()
68 assertA(0 == archive_write_open_memory(a, buff, buffsize, &used1)); in DEFINE_TEST()
[all …]
Dtest_write_compress_lzma.c38 struct archive* a; in DEFINE_TEST() local
55 assert((a = archive_write_new()) != NULL); in DEFINE_TEST()
56 assertA(0 == archive_write_set_format_ustar(a)); in DEFINE_TEST()
57 r = archive_write_set_compression_lzma(a); in DEFINE_TEST()
60 assertEqualInt(ARCHIVE_OK, archive_write_finish(a)); in DEFINE_TEST()
63 assertEqualIntA(a, ARCHIVE_OK, in DEFINE_TEST()
64 archive_write_set_bytes_per_block(a, 10)); in DEFINE_TEST()
65 assertEqualInt(ARCHIVE_COMPRESSION_LZMA, archive_compression(a)); in DEFINE_TEST()
66 assertEqualString("lzma", archive_compression_name(a)); in DEFINE_TEST()
67 assertA(0 == archive_write_open_memory(a, buff, buffsize, &used1)); in DEFINE_TEST()
[all …]
Dtest_write_compress_gzip.c39 struct archive* a; in DEFINE_TEST() local
56 assert((a = archive_write_new()) != NULL); in DEFINE_TEST()
57 assertA(0 == archive_write_set_format_ustar(a)); in DEFINE_TEST()
58 r = archive_write_set_compression_gzip(a); in DEFINE_TEST()
61 assertEqualInt(ARCHIVE_OK, archive_write_finish(a)); in DEFINE_TEST()
64 assertEqualIntA(a, ARCHIVE_OK, in DEFINE_TEST()
65 archive_write_set_bytes_per_block(a, 10)); in DEFINE_TEST()
66 assertEqualInt(ARCHIVE_COMPRESSION_GZIP, archive_compression(a)); in DEFINE_TEST()
67 assertEqualString("gzip", archive_compression_name(a)); in DEFINE_TEST()
68 assertA(0 == archive_write_open_memory(a, buff, buffsize, &used1)); in DEFINE_TEST()
[all …]
Dtest_write_compress_bzip2.c39 struct archive* a; in DEFINE_TEST() local
56 assert((a = archive_write_new()) != NULL); in DEFINE_TEST()
57 assertA(0 == archive_write_set_format_ustar(a)); in DEFINE_TEST()
58 r = archive_write_set_compression_bzip2(a); in DEFINE_TEST()
61 assertEqualInt(ARCHIVE_OK, archive_write_finish(a)); in DEFINE_TEST()
64 assertEqualIntA(a, ARCHIVE_OK, in DEFINE_TEST()
65 archive_write_set_bytes_per_block(a, 10)); in DEFINE_TEST()
66 assertEqualInt(ARCHIVE_COMPRESSION_BZIP2, archive_compression(a)); in DEFINE_TEST()
67 assertEqualString("bzip2", archive_compression_name(a)); in DEFINE_TEST()
68 assertA(0 == archive_write_open_memory(a, buff, buffsize, &used1)); in DEFINE_TEST()
[all …]
Dtest_write_format_ar.c41 struct archive* a; in DEFINE_TEST()
47 assert((a = archive_write_new()) != NULL); in DEFINE_TEST()
48 assertA(0 == archive_write_set_format_ar_svr4(a)); in DEFINE_TEST()
49 assertA(0 == archive_write_open_memory(a, buff, sizeof(buff), &used)); in DEFINE_TEST()
55 assertA(0 == archive_write_header(a, ae)); in DEFINE_TEST()
56 assertA(strlen(strtab) == (size_t)archive_write_data(a, strtab, strlen(strtab))); in DEFINE_TEST()
67 assertA(0 == archive_write_header(a, ae)); in DEFINE_TEST()
68 assertA(8 == archive_write_data(a, "87654321", 15)); in DEFINE_TEST()
75 assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae)); in DEFINE_TEST()
76 assertEqualIntA(a, 7, archive_write_data(a, "7777777", 7)); in DEFINE_TEST()
[all …]
/freebsd-9-stable/tools/test/testfloat/
Dsystfloat.c31 float32 syst_int32_to_float32( int32 a ) in syst_int32_to_float32() argument
35 *( (float *) &z ) = a; in syst_int32_to_float32()
40 float64 syst_int32_to_float64( int32 a ) in syst_int32_to_float64() argument
44 *( (double *) &z ) = a; in syst_int32_to_float64()
51 floatx80 syst_int32_to_floatx80( int32 a ) in syst_int32_to_floatx80() argument
55 *( (long double *) &z ) = a; in syst_int32_to_floatx80()
64 float128 syst_int32_to_float128( int32 a ) in syst_int32_to_float128() argument
68 *( (long double *) &z ) = a; in syst_int32_to_float128()
77 float32 syst_int64_to_float32( int64 a ) in syst_int64_to_float32() argument
81 *( (float *) &z ) = a; in syst_int64_to_float32()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Headers/
Dtbmintrin.h35 #define __bextri_u32(a, b) (__builtin_ia32_bextri_u32((a), (b))) argument
38 __blcfill_u32(unsigned int a) in __blcfill_u32() argument
40 return a & (a + 1); in __blcfill_u32()
44 __blci_u32(unsigned int a) in __blci_u32() argument
46 return a | ~(a + 1); in __blci_u32()
50 __blcic_u32(unsigned int a) in __blcic_u32() argument
52 return ~a & (a + 1); in __blcic_u32()
56 __blcmsk_u32(unsigned int a) in __blcmsk_u32() argument
58 return a ^ (a + 1); in __blcmsk_u32()
62 __blcs_u32(unsigned int a) in __blcs_u32() argument
[all …]
/freebsd-9-stable/crypto/openssl/crypto/bn/
Dbn_word.c63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word() argument
75 bn_check_top(a); in BN_mod_word()
77 for (i = a->top - 1; i >= 0; i--) { in BN_mod_word()
79 ret = ((ret << BN_BITS4) | ((a->d[i] >> BN_BITS4) & BN_MASK2l)) % w; in BN_mod_word()
80 ret = ((ret << BN_BITS4) | (a->d[i] & BN_MASK2l)) % w; in BN_mod_word()
82 ret = (BN_ULLONG) (((ret << (BN_ULLONG) BN_BITS2) | a->d[i]) % in BN_mod_word()
89 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word() argument
94 bn_check_top(a); in BN_div_word()
100 if (a->top == 0) in BN_div_word()
106 if (!BN_lshift(a, a, j)) in BN_div_word()
[all …]
/freebsd-9-stable/share/mk/
Dbsd.libnames.mk13 LIBALIAS?= ${DESTDIR}${LIBDIR}/libalias.a
14 LIBARCHIVE?= ${DESTDIR}${LIBDIR}/libarchive.a
15 LIBASN1?= ${DESTDIR}${LIBDIR}/libasn1.a
16 LIBATM?= ${DESTDIR}${LIBDIR}/libatm.a
17 LIBAUDITD?= ${DESTDIR}${LIBDIR}/libauditd.a
18 LIBAVL?= ${DESTDIR}${LIBDIR}/libavl.a
19 LIBBEGEMOT?= ${DESTDIR}${LIBDIR}/libbegemot.a
21 LIBBIND?= ${DESTDIR}${LIBDIR}/libbind.a
22 LIBBIND9?= ${DESTDIR}${LIBDIR}/libbind9.a
24 LIBBLUETOOTH?= ${DESTDIR}${LIBDIR}/libbluetooth.a
[all …]
/freebsd-9-stable/contrib/ntp/sntp/libopts/
Dintprops.h166 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument
168 ? (a) < (min) - (b) \
169 : (max) - (b) < (a))
173 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument
175 ? (max) + (b) < (a) \
176 : (a) < (min) + (b))
180 #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) \ argument
182 ? (a) < - (max) \
183 : 0 < (a))
189 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ argument
[all …]
/freebsd-9-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/
Dtst.dynsize.d.out2 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-9-stable/tools/regression/bin/sh/builtins/
Dcase2.08 testmatch 'a' 'a'
9 testnomatch 'a' 'b'
10 testnomatch 'a' 'A'
11 testmatch '*' 'a'
13 testmatch '*a' 'a'
14 testnomatch '*a' 'b'
15 testnomatch '*a*' 'b'
16 testmatch '*a*b*' 'ab'
17 testmatch '*a*b*' 'qaqbq'
18 testmatch '*a*bb*' 'qaqbqbbq'
[all …]
/freebsd-9-stable/contrib/binutils/bfd/
Dlibxcoff.h124 #define bfd_xcoff_magic_number(a) ((xcoff_backend (a)->_xcoff_magic_number)) argument
125 #define bfd_xcoff_architecture(a) ((xcoff_backend (a)->_xcoff_architecture)) argument
126 #define bfd_xcoff_machine(a) ((xcoff_backend (a)->_xcoff_machine)) argument
128 #define bfd_xcoff_swap_ldhdr_in(a, b, c) \ argument
129 ((xcoff_backend (a)->_xcoff_swap_ldhdr_in) ((a), (b), (c)))
131 #define bfd_xcoff_swap_ldhdr_out(a, b, c) \ argument
132 ((xcoff_backend (a)->_xcoff_swap_ldhdr_out) ((a), (b), (c)))
134 #define bfd_xcoff_swap_ldsym_in(a, b, c) \ argument
135 ((xcoff_backend (a)->_xcoff_swap_ldsym_in) ((a), (b), (c)))
137 #define bfd_xcoff_swap_ldsym_out(a, b, c) \ argument
[all …]
/freebsd-9-stable/crypto/openssl/util/
Dbat.sh17 $uc =~ s/^lib(.*)\.a/$1/;
18 $uc =~ tr/a-z/A-Z/;
54 @a=split(/\s+/,$libsrc);
55 foreach (@a)
63 local(@a,$_,$ret);
86 @a=split(/\s+/,$val);
87 grep(s/\.[och]$//,@a);
89 @a=grep(!/^e_.*_3d$/,@a) if $no_des;
90 @a=grep(!/^e_.*_d$/,@a) if $no_des;
91 @a=grep(!/^e_.*_i$/,@a) if $no_idea;
[all …]

12345678910>>...254