Home
last modified time | relevance | path

Searched full:as (Results 1 – 25 of 19522) sorted by relevance

12345678910>>...781

/freebsd-src/contrib/bc/tests/bc/errors/
H A D01.txt229 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=ase-=se-=as-=ase-=se-=as-=se-=a(1)
232as=ase-=se-=as-=asj-=se-=as-=se-=axse!=e-=ase-=i-=se-=ase-=se-=se-=ase-=se-=as-=e-=as=ase-=se-=as-…
233 scscales=ase-=se-=as-=ase-=se-=as-=se-=a(1)
237 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=ase-=se-=as-=ase-=se-=as-=se-=a(1)
241 a==se-=as+=ase-=se8=as-=se-=a(1)
245 …=se-=ase-=i-=se-=xse!=e-=ase-=i-=se-=ase-=se-=se-=ase-=se-=as-=e-=as=ase-=se-=as-=ase-=se-=as-=se-…
252 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=as-=ase-=se-=se4=ase-=se-=as-=e-=as=ae-=a(1)
255 …=se-=ase-=i-=se-=xse!=e-=ase-=i-=se-=ase-=se-=se-=ase-=se-=as-=e-=as=ase-=se-=as-=ase-=se-=as-=se-…
259 a=i-=se-=ase-=se-=ase-=i-=s-=se-=xse!=e-=as=ase = 20
261 a=i-=se-=ase-=se-=ase-=s-=e-=as=ase-=se-=as-=ase-=se-=as-=se-=a(1)
[all …]
/freebsd-src/crypto/openssl/ssl/
H A Dssl_asn1.c109 SSL_SESSION_ASN1 as; in i2d_SSL_SESSION() local
134 memset(&as, 0, sizeof(as)); in i2d_SSL_SESSION()
136 as.version = SSL_SESSION_ASN1_VERSION; in i2d_SSL_SESSION()
137 as.ssl_version = in->ssl_version; in i2d_SSL_SESSION()
139 as.kex_group = in->kex_group; in i2d_SSL_SESSION()
148 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2); in i2d_SSL_SESSION()
153 ssl_session_oinit(&as.comp_id, &comp_id, &comp_id_data, 1); in i2d_SSL_SESSION()
157 ssl_session_oinit(&as.master_key, &master_key, in i2d_SSL_SESSION()
160 ssl_session_oinit(&as.session_id, &session_id, in i2d_SSL_SESSION()
163 ssl_session_oinit(&as.session_id_context, &sid_ctx, in i2d_SSL_SESSION()
[all …]
/freebsd-src/sys/contrib/openzfs/module/zfs/
H A Daggsum.c31 * buckets. The core counter contains a lock for the entire counter, as well
32 * as the current upper and lower bounds on the value of the counter. The
88 aggsum_init(aggsum_t *as, uint64_t value) in aggsum_init() argument
90 memset(as, 0, sizeof (*as)); in aggsum_init()
91 as->as_lower_bound = as->as_upper_bound = value; in aggsum_init()
92 mutex_init(&as->as_lock, NULL, MUTEX_DEFAULT, NULL); in aggsum_init()
97 as->as_bucketshift = highbit64(boot_ncpus / 6) / 2; in aggsum_init()
98 as->as_numbuckets = ((boot_ncpus - 1) >> as->as_bucketshift) + 1; in aggsum_init()
99 as->as_buckets = kmem_zalloc(as->as_numbuckets * in aggsum_init()
101 for (int i = 0; i < as->as_numbuckets; i++) { in aggsum_init()
[all …]
/freebsd-src/sys/kern/
H A Dinit_sysent.c11 #define AS(name) (sizeof(struct name) / sizeof(syscallarg_t)) macro
70 { .sy_narg = AS(exit_args), .sy_call = (sy_call_t *)sys_exit, .sy_auevent = AUE_EXIT, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 1 = exit */
72 { .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_READ, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 3 = read */
73 { .sy_narg = AS(write_args), .sy_call = (sy_call_t *)sys_write, .sy_auevent = AUE_WRITE, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 4 = write */
74 { .sy_narg = AS(open_args), .sy_call = (sy_call_t *)sys_open, .sy_auevent = AUE_OPEN_RWTC, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 5 = open */
75 { .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 6 = close */
76 { .sy_narg = AS(wait4_args), .sy_call = (sy_call_t *)sys_wait4, .sy_auevent = AUE_WAIT4, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 7 = wait4 */
77 { compat(AS(ocreat_args),creat), .sy_auevent = AUE_CREAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 8 = old creat */
78 { .sy_narg = AS(link_args), .sy_call = (sy_call_t *)sys_link, .sy_auevent = AUE_LINK, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 9 = link */
79 { .sy_narg = AS(unlink_arg
[all...]
/freebsd-src/sys/i386/linux/
H A Dlinux_sysent.c13 #define AS(name) (sizeof(struct name) / sizeof(syscallarg_t)) macro
18 { .sy_narg = AS(linux_exit_args), .sy_call = (sy_call_t *)linux_exit, .sy_auevent = AUE_EXIT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 1 = linux_exit */
20 { .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 3 = read */
21 { .sy_narg = AS(linux_write_args), .sy_call = (sy_call_t *)linux_write, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 4 = linux_write */
22 { .sy_narg = AS(linux_open_args), .sy_call = (sy_call_t *)linux_open, .sy_auevent = AUE_OPEN_RWTC, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 5 = linux_open */
23 { .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 6 = close */
24 { .sy_narg = AS(linux_waitpid_args), .sy_call = (sy_call_t *)linux_waitpid, .sy_auevent = AUE_WAIT4, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 7 = linux_waitpid */
25 { .sy_narg = AS(linux_creat_args), .sy_call = (sy_call_t *)linux_creat, .sy_auevent = AUE_CREAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 8 = linux_creat */
26 { .sy_narg = AS(linux_link_args), .sy_call = (sy_call_t *)linux_link, .sy_auevent = AUE_LINK, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 9 = linux_link */
27 { .sy_narg = AS(linux_unlink_arg
[all...]
/freebsd-src/sys/compat/freebsd32/
H A Dfreebsd32_sysent.c12 #define AS(name) (sizeof(struct name) / sizeof(syscallarg_t)) macro
71 { .sy_narg = AS(exit_args), .sy_call = (sy_call_t *)sys_exit, .sy_auevent = AUE_EXIT, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 1 = exit */
73 { .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_READ, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 3 = read */
74 { .sy_narg = AS(write_args), .sy_call = (sy_call_t *)sys_write, .sy_auevent = AUE_WRITE, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 4 = write */
75 { .sy_narg = AS(open_args), .sy_call = (sy_call_t *)sys_open, .sy_auevent = AUE_OPEN_RWTC, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 5 = open */
76 { .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 6 = close */
77 { .sy_narg = AS(freebsd32_wait4_args), .sy_call = (sy_call_t *)freebsd32_wait4, .sy_auevent = AUE_WAIT4, .sy_flags = SYF_CAPENABLED, .sy_thrcnt = SY_THR_STATIC }, /* 7 = freebsd32_wait4 */
78 { compat(AS(ocreat_args),creat), .sy_auevent = AUE_CREAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 8 = old creat */
79 { .sy_narg = AS(link_args), .sy_call = (sy_call_t *)sys_link, .sy_auevent = AUE_LINK, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 9 = link */
80 { .sy_narg = AS(unlink_arg
[all...]
/freebsd-src/sys/amd64/linux32/
H A Dlinux32_sysent.c14 #define AS(name) (sizeof(struct name) / sizeof(syscallarg_t)) macro
19 { .sy_narg = AS(linux_exit_args), .sy_call = (sy_call_t *)linux_exit, .sy_auevent = AUE_EXIT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 1 = linux_exit */
21 { .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 3 = read */
22 { .sy_narg = AS(linux_write_args), .sy_call = (sy_call_t *)linux_write, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 4 = linux_write */
23 { .sy_narg = AS(linux_open_args), .sy_call = (sy_call_t *)linux_open, .sy_auevent = AUE_OPEN_RWTC, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 5 = linux_open */
24 { .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 6 = close */
25 { .sy_narg = AS(linux_waitpid_args), .sy_call = (sy_call_t *)linux_waitpid, .sy_auevent = AUE_WAIT4, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 7 = linux_waitpid */
26 { .sy_narg = AS(linux_creat_args), .sy_call = (sy_call_t *)linux_creat, .sy_auevent = AUE_CREAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 8 = linux_creat */
27 { .sy_narg = AS(linux_link_args), .sy_call = (sy_call_t *)linux_link, .sy_auevent = AUE_LINK, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 9 = linux_link */
28 { .sy_narg = AS(linux_unlink_arg
[all...]
/freebsd-src/sys/net80211/
H A Dieee80211_acl.c16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
64 * NB: ACL_POLICY_RADIUS must be the same value as
101 struct aclstate *as; in acl_attach() local
103 as = (struct aclstate *) IEEE80211_MALLOC(sizeof(struct aclstate), in acl_attach()
105 if (as == NULL) in acl_attach()
107 ACL_LOCK_INIT(as, "acl"); in acl_attach()
108 TAILQ_INIT(&as->as_list); in acl_attach()
109 as->as_policy = ACL_POLICY_OPEN; in acl_attach()
110 as->as_vap = vap; in acl_attach()
111 vap->iv_as = as; in acl_attach()
[all …]
/freebsd-src/sys/dev/acpica/Osd/
H A DOsdSynch.c16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
79 struct acpi_sema *as; in AcpiOsCreateSemaphore() local
86 if ((as = malloc(sizeof(*as), M_ACPISEM, M_NOWAIT | M_ZERO)) == NULL) in AcpiOsCreateSemaphore()
89 snprintf(as->as_name, sizeof(as->as_name), "ACPI sema (%p)", as); in AcpiOsCreateSemaphore()
90 mtx_init(&as->as_lock, as->as_name, NULL, MTX_DEF); in AcpiOsCreateSemaphore()
91 cv_init(&as->as_cv, as->as_name); in AcpiOsCreateSemaphore()
92 as->as_maxunits = MaxUnits; in AcpiOsCreateSemaphore()
93 as->as_units = InitialUnits; in AcpiOsCreateSemaphore()
95 *OutHandle = (ACPI_SEMAPHORE)as; in AcpiOsCreateSemaphore()
98 as->as_name, MaxUnits, InitialUnits)); in AcpiOsCreateSemaphore()
[all …]
/freebsd-src/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_arange.c14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
34 Dwarf_ArangeSet as, tas; in _dwarf_arange_cleanup() local
37 STAILQ_FOREACH_SAFE(as, &dbg->dbg_aslist, as_next, tas) { in _dwarf_arange_cleanup()
38 STAILQ_FOREACH_SAFE(ar, &as->as_arlist, ar_next, tar) { in _dwarf_arange_cleanup()
39 STAILQ_REMOVE(&as->as_arlist, ar, _Dwarf_Arange, in _dwarf_arange_cleanup()
43 STAILQ_REMOVE(&dbg->dbg_aslist, as, _Dwarf_ArangeSet, as_next); in _dwarf_arange_cleanup()
44 free(as); in _dwarf_arange_cleanup()
58 Dwarf_ArangeSet as; in _dwarf_arange_init() local
78 if ((as = malloc(sizeof(struct _Dwarf_ArangeSet))) == NULL) { in _dwarf_arange_init()
82 STAILQ_INIT(&as->as_arlist); in _dwarf_arange_init()
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/riscv/
H A Dextensions.yaml56 The base ISA implemented by this hart, as described by the 20191213
71 The base integer instruction set, as ratified in the 20191213
80 The standard M extension for integer multiplication and division, as
86 The standard A extension for atomic instructions, as ratified in the
91 The standard F extension for single-precision floating point, as
97 The standard D extension for double-precision floating-point, as
103 The standard Q extension for quad-precision floating-point, as
109 The standard C extension for compressed instructions, as ratified in
114 The standard V extension for vector operations, as ratified
120 The standard H extension for hypervisors as ratifie
[all...]
/freebsd-src/contrib/file/src/
H A Dencoding.c16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
301 #define AS 0xF0 // ASCII: size 1 macro
316 AS, AS, AS, AS, AS, AS, AS, AS, A
[all...]
/freebsd-src/sys/amd64/linux/
H A Dlinux_sysent.c13 #define AS(name) (sizeof(struct name) / sizeof(syscallarg_t)) macro
17 { .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 0 = read */
18 { .sy_narg = AS(linux_write_args), .sy_call = (sy_call_t *)linux_write, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 1 = linux_write */
19 { .sy_narg = AS(linux_open_args), .sy_call = (sy_call_t *)linux_open, .sy_auevent = AUE_OPEN_RWTC, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 2 = linux_open */
20 { .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 3 = close */
21 { .sy_narg = AS(linux_newstat_args), .sy_call = (sy_call_t *)linux_newstat, .sy_auevent = AUE_STAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 4 = linux_newstat */
22 { .sy_narg = AS(linux_newfstat_args), .sy_call = (sy_call_t *)linux_newfstat, .sy_auevent = AUE_FSTAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 5 = linux_newfstat */
23 { .sy_narg = AS(linux_newlstat_args), .sy_call = (sy_call_t *)linux_newlstat, .sy_auevent = AUE_LSTAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 6 = linux_newlstat */
24 { .sy_narg = AS(linux_poll_args), .sy_call = (sy_call_t *)linux_poll, .sy_auevent = AUE_POLL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 7 = linux_poll */
25 { .sy_narg = AS(linux_lseek_arg
[all...]
/freebsd-src/contrib/libevent/
H A Dlistener.c15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
531 free_and_unlock_accepting_socket(struct accepting_socket *as) in free_and_unlock_accepting_socket() argument
534 if (as->s != EVUTIL_INVALID_SOCKET) in free_and_unlock_accepting_socket()
535 closesocket(as->s); in free_and_unlock_accepting_socket()
537 LeaveCriticalSection(&as->lock); in free_and_unlock_accepting_socket()
538 DeleteCriticalSection(&as->lock); in free_and_unlock_accepting_socket()
539 mm_free(as); in free_and_unlock_accepting_socket()
543 start_accepting(struct accepting_socket *as) in start_accepting() argument
548 SOCKET s = socket(as->family, SOCK_STREAM, 0); in start_accepting()
551 if (!as->lev->base.enabled) in start_accepting()
[all …]
/freebsd-src/contrib/ntp/sntp/libevent/
H A Dlistener.c15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
531 free_and_unlock_accepting_socket(struct accepting_socket *as) in free_and_unlock_accepting_socket() argument
534 if (as->s != EVUTIL_INVALID_SOCKET) in free_and_unlock_accepting_socket()
535 closesocket(as->s); in free_and_unlock_accepting_socket()
537 LeaveCriticalSection(&as->lock); in free_and_unlock_accepting_socket()
538 DeleteCriticalSection(&as->lock); in free_and_unlock_accepting_socket()
539 mm_free(as); in free_and_unlock_accepting_socket()
543 start_accepting(struct accepting_socket *as) in start_accepting() argument
548 SOCKET s = socket(as->family, SOCK_STREAM, 0); in start_accepting()
551 if (!as->lev->base.enabled) in start_accepting()
[all …]
/freebsd-src/sys/arm64/linux/
H A Dlinux_sysent.c13 #define AS(name) (sizeof(struct name) / sizeof(syscallarg_t)) macro
22 { .sy_narg = AS(linux_setxattr_args), .sy_call = (sy_call_t *)linux_setxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 5 = linux_setxattr */
23 { .sy_narg = AS(linux_lsetxattr_args), .sy_call = (sy_call_t *)linux_lsetxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 6 = linux_lsetxattr */
24 { .sy_narg = AS(linux_fsetxattr_args), .sy_call = (sy_call_t *)linux_fsetxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 7 = linux_fsetxattr */
25 { .sy_narg = AS(linux_getxattr_args), .sy_call = (sy_call_t *)linux_getxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 8 = linux_getxattr */
26 { .sy_narg = AS(linux_lgetxattr_args), .sy_call = (sy_call_t *)linux_lgetxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 9 = linux_lgetxattr */
27 { .sy_narg = AS(linux_fgetxattr_args), .sy_call = (sy_call_t *)linux_fgetxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 10 = linux_fgetxattr */
28 { .sy_narg = AS(linux_listxattr_args), .sy_call = (sy_call_t *)linux_listxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 11 = linux_listxattr */
29 { .sy_narg = AS(linux_llistxattr_args), .sy_call = (sy_call_t *)linux_llistxattr, .sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_STATIC }, /* 12 = linux_llistxattr */
30 { .sy_narg = AS(linux_flistxattr_arg
[all...]
/freebsd-src/usr.sbin/kbdcontrol/
H A Dkbdmap.513 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
167 Act as the
182 Act as left shift key.
184 Act as right shift key.
186 Act as caps lock key.
188 Act as num lock key.
190 Act as scroll lock key.
192 Act as left alt key.
194 Act as backwards tab.
196 Act as left control key.
[all …]
/freebsd-src/lib/libc/stdtime/
H A Dstrftime.320 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
62 does the same as
100 is replaced by (year / 100) as decimal number; single
108 is replaced by the day of the month as a decimal number (01-31).
122 is replaced by the day of the month as a decimal number (1-31); single
128 is replaced by a year as a decimal number with century.
130 the week (Monday as the first day of the week).
132 is replaced by the same year as in
134 but as a decimal number without century (00-99).
136 is replaced by the hour (24-hour clock) as a decimal number (00-23).
[all …]
/freebsd-src/contrib/tzcode/
H A Dnewstrftime.323 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
86 Each conversion specification is replaced by the characters as
90 as specified by brackets in the description.
102 should be initialized as if by a successful call to
127 as a decimal number, with at least two digits by default.
152 is replaced by the day of the month as a decimal number [01,31].
156 is replaced by the day of month as a decimal number [1,31];
169 is replaced by the ISO 8601 year with century as a decimal number.
178 is replaced by the ISO 8601 year without century as a decimal number [00,99].
180 (Monday as th
[all...]
/freebsd-src/contrib/file/doc/
H A Dmagic.man5 .\" install as magic.4 on USG, magic.5 on V7, Berkeley and Linux systems.
10 This manual page documents the format of magic files as
31 is as follows:
55 then all offsets are interpreted as from the beginning of the file (the
112 Treat every blank in the magic as an optional blank.
116 A Pascal-style string where the first byte/short/int is interpreted as the
118 The length defaults to byte and can be specified as a modifier.
142 A four-byte value interpreted as a UNIX date.
144 An eight-byte value interpreted as a UNIX date.
146 A four-byte value interpreted as
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasSetTracker.cpp44 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST, in mergeSetIn() argument
46 assert(!AS.Forward && "Alias set is already forwarding!"); in mergeSetIn()
50 Access |= AS.Access; in mergeSetIn()
51 Alias |= AS.Alias; in mergeSetIn()
57 return any_of(AS.MemoryLocs, [&](const MemoryLocation &ASMemLoc) { in mergeSetIn()
66 std::swap(MemoryLocs, AS.MemoryLocs); in mergeSetIn()
68 append_range(MemoryLocs, AS.MemoryLocs); in mergeSetIn()
69 AS.MemoryLocs.clear(); in mergeSetIn()
72 bool ASHadUnknownInsts = !AS.UnknownInsts.empty(); in mergeSetIn()
75 std::swap(UnknownInsts, AS in mergeSetIn()
90 removeAliasSet(AliasSet * AS) removeAliasSet() argument
283 AliasSet *AS; getAliasSetFor() local
367 if (AliasSet *AS = findAliasSetForUnknownInst(Inst)) { addUnknown() local
442 for (const AliasSet &AS : AST) { add() local
495 AliasSet &AS = getAliasSetFor(Loc); addMemoryLocation() local
[all...]
/freebsd-src/contrib/libarchive/libarchive/
H A Darchive_string_sprintf.c14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
53 append_uint(struct archive_string *as, uintmax_t d, unsigned base) in append_uint() argument
57 append_uint(as, d/base, base); in append_uint()
58 archive_strappend_char(as, digits[d % base]); in append_uint()
62 append_int(struct archive_string *as, intmax_t d, unsigned base) in append_int() argument
67 archive_strappend_char(as, '-'); in append_int()
71 append_uint(as, ud, base); in append_int()
76 archive_string_sprintf(struct archive_string *as, const char *fmt, ...) in archive_string_sprintf() argument
81 archive_string_vsprintf(as, fmt, ap); in archive_string_sprintf()
90 archive_string_vsprintf(struct archive_string *as, const char *fmt, in archive_string_vsprintf() argument
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/sound/
H A Dtlv320adcx140.yaml68 array is defined as <PDMIN1 PDMIN2 PDMIN3 PDMIN4>.
90 The array is defined as <GPI1 GPI2 GPI3 GPI4>.
93 1 - GPIX is configured as a general-purpose input (GPI)
94 2 - GPIX is configured as a master clock input (MCLK)
95 3 - GPIX is configured as an ASI input for daisy-chain (SDIN)
96 4 - GPIX is configured as a PDM data input for channel 1 and channel
98 5 - GPIX is configured as a PDM data input for channel 3 and channel
100 6 - GPIX is configured as a PDM data input for channel 5 and channel
102 7 - GPIX is configured as a PDM data input for channel 7 and channel
117 type. The array is defined as <GPIO1_CFG GPIO1_DRV>
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/tigerlake/
H A Dfloating-point.json14as noted below. Each count represents 2 computation operations, one for each element. Applies to…
20as noted below. Each count represents 2 computation operations, one for each element. Applies to…
25as noted below. Each count represents 4 computation operations, one for each element. Applies to…
31as noted below. Each count represents 4 computation operations, one for each element. Applies to…
36as noted below. Each count represents 4 computation operations, one for each element. Applies to…
42as noted below. Each count represents 4 computation operations, one for each element. Applies to…
47as noted below. Each count represents 8 computation operations, one for each element. Applies to…
53as noted below. Each count represents 8 computation operations, one for each element. Applies to…
58as noted below. Each count represents 8 computation operations, one for each element. Applies to…
64as noted below. Each count represents 8 computation operations, one for each element. Applies to…
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/icelakex/
H A Dfloating-point.json15as noted below. Each count represents 2 computation operations, one for each element. Applies to…
21as noted below. Each count represents 2 computation operations, one for each element. Applies to…
26as noted below. Each count represents 4 computation operations, one for each element. Applies to…
32as noted below. Each count represents 4 computation operations, one for each element. Applies to…
37as noted below. Each count represents 4 computation operations, one for each element. Applies to…
43as noted below. Each count represents 4 computation operations, one for each element. Applies to…
48as noted below. Each count represents 8 computation operations, one for each element. Applies to…
54as noted below. Each count represents 8 computation operations, one for each element. Applies to…
59as noted below. Each count represents 8 computation operations, one for each element. Applies to…
65as noted below. Each count represents 8 computation operations, one for each element. Applies to…
[all …]

12345678910>>...781