Home
last modified time | relevance | path

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

12345678910>>...503

/freebsd/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/crypto/openssl/ssl/
H A Dssl_asn1.c112 SSL_SESSION_ASN1 as; in i2d_SSL_SESSION() local
139 memset(&as, 0, sizeof(as)); in i2d_SSL_SESSION()
141 as.version = SSL_SESSION_ASN1_VERSION; in i2d_SSL_SESSION()
142 as.ssl_version = in->ssl_version; in i2d_SSL_SESSION()
144 as.kex_group = in->kex_group; in i2d_SSL_SESSION()
153 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2); in i2d_SSL_SESSION()
158 ssl_session_oinit(&as.comp_id, &comp_id, &comp_id_data, 1); in i2d_SSL_SESSION()
162 ssl_session_oinit(&as.master_key, &master_key, in i2d_SSL_SESSION()
165 ssl_session_oinit(&as.session_id, &session_id, in i2d_SSL_SESSION()
168 ssl_session_oinit(&as.session_id_context, &sid_ctx, in i2d_SSL_SESSION()
[all …]
/freebsd/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 …
72 …{ .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_READ, .sy_flags = …
73 …{ .sy_narg = AS(write_args), .sy_call = (sy_call_t *)sys_write, .sy_auevent = AUE_WRITE, .sy_flags…
74 …{ .sy_narg = AS(open_args), .sy_call = (sy_call_t *)sys_open, .sy_auevent = AUE_OPEN_RWTC, .sy_fla…
75 …{ .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags…
76 …{ .sy_narg = AS(wait4_args), .sy_call = (sy_call_t *)sys_wait4, .sy_auevent = AUE_WAIT4, .sy_flags…
77 …{ compat(AS(ocreat_args),creat), .sy_auevent = AUE_CREAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATI…
78 …{ .sy_narg = AS(link_args), .sy_call = (sy_call_t *)sys_link, .sy_auevent = AUE_LINK, .sy_flags = …
79 …{ .sy_narg = AS(unlink_args), .sy_call = (sy_call_t *)sys_unlink, .sy_auevent = AUE_UNLINK, .sy_fl…
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Daggsum.c32 * buckets. The core counter contains a lock for the entire counter, as well
33 * as the current upper and lower bounds on the value of the counter. The
89 aggsum_init(aggsum_t *as, uint64_t value) in aggsum_init() argument
91 memset(as, 0, sizeof (*as)); in aggsum_init()
92 as->as_lower_bound = as->as_upper_bound = value; in aggsum_init()
93 mutex_init(&as->as_lock, NULL, MUTEX_DEFAULT, NULL); in aggsum_init()
98 as->as_bucketshift = highbit64(boot_ncpus / 6) / 2; in aggsum_init()
99 as->as_numbuckets = ((boot_ncpus - 1) >> as->as_bucketshift) + 1; in aggsum_init()
100 as->as_buckets = kmem_zalloc(as->as_numbuckets * in aggsum_init()
102 for (int i = 0; i < as->as_numbuckets; i++) { in aggsum_init()
[all …]
/freebsd/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 …
73 …{ .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_READ, .sy_flags = …
74 …{ .sy_narg = AS(write_args), .sy_call = (sy_call_t *)sys_write, .sy_auevent = AUE_WRITE, .sy_flags…
75 …{ .sy_narg = AS(open_args), .sy_call = (sy_call_t *)sys_open, .sy_auevent = AUE_OPEN_RWTC, .sy_fla…
76 …{ .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags…
77 …{ .sy_narg = AS(freebsd32_wait4_args), .sy_call = (sy_call_t *)freebsd32_wait4, .sy_auevent = AUE_…
78 …{ compat(AS(ocreat_args),creat), .sy_auevent = AUE_CREAT, .sy_flags = 0, .sy_thrcnt = SY_THR_STATI…
79 …{ .sy_narg = AS(link_args), .sy_call = (sy_call_t *)sys_link, .sy_auevent = AUE_LINK, .sy_flags = …
80 …{ .sy_narg = AS(unlink_args), .sy_call = (sy_call_t *)sys_unlink, .sy_auevent = AUE_UNLINK, .sy_fl…
[all …]
/freebsd/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_…
20 …{ .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_NULL, .sy_flags = …
21 …{ .sy_narg = AS(linux_write_args), .sy_call = (sy_call_t *)linux_write, .sy_auevent = AUE_NULL, .s…
22 …{ .sy_narg = AS(linux_open_args), .sy_call = (sy_call_t *)linux_open, .sy_auevent = AUE_OPEN_RWTC,…
23 …{ .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags…
24 …{ .sy_narg = AS(linux_waitpid_args), .sy_call = (sy_call_t *)linux_waitpid, .sy_auevent = AUE_WAIT…
25 …{ .sy_narg = AS(linux_creat_args), .sy_call = (sy_call_t *)linux_creat, .sy_auevent = AUE_CREAT, .…
26 …{ .sy_narg = AS(linux_link_args), .sy_call = (sy_call_t *)linux_link, .sy_auevent = AUE_LINK, .sy_…
27 …{ .sy_narg = AS(linux_unlink_args), .sy_call = (sy_call_t *)linux_unlink, .sy_auevent = AUE_UNLINK…
[all …]
/freebsd/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_…
21 …{ .sy_narg = AS(read_args), .sy_call = (sy_call_t *)sys_read, .sy_auevent = AUE_NULL, .sy_flags = …
22 …{ .sy_narg = AS(linux_write_args), .sy_call = (sy_call_t *)linux_write, .sy_auevent = AUE_NULL, .s…
23 …{ .sy_narg = AS(linux_open_args), .sy_call = (sy_call_t *)linux_open, .sy_auevent = AUE_OPEN_RWTC,…
24 …{ .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags…
25 …{ .sy_narg = AS(linux_waitpid_args), .sy_call = (sy_call_t *)linux_waitpid, .sy_auevent = AUE_WAIT…
26 …{ .sy_narg = AS(linux_creat_args), .sy_call = (sy_call_t *)linux_creat, .sy_auevent = AUE_CREAT, .…
27 …{ .sy_narg = AS(linux_link_args), .sy_call = (sy_call_t *)linux_link, .sy_auevent = AUE_LINK, .sy_…
28 …{ .sy_narg = AS(linux_unlink_args), .sy_call = (sy_call_t *)linux_unlink, .sy_auevent = AUE_UNLINK…
[all …]
/freebsd/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/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/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 ratified in the 20191213
[all …]
/freebsd/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/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, AS, AS, AS, AS, AS, AS, AS, AS, // 0x00-0x0F
317 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x10-0x1F
318 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x20-0x2F
319 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x30-0x3F
320 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x40-0x4F
321 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x50-0x5F
322 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x60-0x6F
323 AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, AS, // 0x70-0x7F
[all …]
/freebsd/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 = …
18 …{ .sy_narg = AS(linux_write_args), .sy_call = (sy_call_t *)linux_write, .sy_auevent = AUE_NULL, .s…
19 …{ .sy_narg = AS(linux_open_args), .sy_call = (sy_call_t *)linux_open, .sy_auevent = AUE_OPEN_RWTC,…
20 …{ .sy_narg = AS(close_args), .sy_call = (sy_call_t *)sys_close, .sy_auevent = AUE_CLOSE, .sy_flags…
21 …{ .sy_narg = AS(linux_newstat_args), .sy_call = (sy_call_t *)linux_newstat, .sy_auevent = AUE_STAT…
22 …{ .sy_narg = AS(linux_newfstat_args), .sy_call = (sy_call_t *)linux_newfstat, .sy_auevent = AUE_FS…
23 …{ .sy_narg = AS(linux_newlstat_args), .sy_call = (sy_call_t *)linux_newlstat, .sy_auevent = AUE_LS…
24 …{ .sy_narg = AS(linux_poll_args), .sy_call = (sy_call_t *)linux_poll, .sy_auevent = AUE_POLL, .sy_…
25 …{ .sy_narg = AS(linux_lseek_args), .sy_call = (sy_call_t *)linux_lseek, .sy_auevent = AUE_LSEEK, .…
[all …]
/freebsd/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/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/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_NU…
23 …{ .sy_narg = AS(linux_lsetxattr_args), .sy_call = (sy_call_t *)linux_lsetxattr, .sy_auevent = AUE_…
24 …{ .sy_narg = AS(linux_fsetxattr_args), .sy_call = (sy_call_t *)linux_fsetxattr, .sy_auevent = AUE_…
25 …{ .sy_narg = AS(linux_getxattr_args), .sy_call = (sy_call_t *)linux_getxattr, .sy_auevent = AUE_NU…
26 …{ .sy_narg = AS(linux_lgetxattr_args), .sy_call = (sy_call_t *)linux_lgetxattr, .sy_auevent = AUE_…
27 …{ .sy_narg = AS(linux_fgetxattr_args), .sy_call = (sy_call_t *)linux_fgetxattr, .sy_auevent = AUE_…
28 …{ .sy_narg = AS(linux_listxattr_args), .sy_call = (sy_call_t *)linux_listxattr, .sy_auevent = AUE_…
29 …{ .sy_narg = AS(linux_llistxattr_args), .sy_call = (sy_call_t *)linux_llistxattr, .sy_auevent = AU…
30 …{ .sy_narg = AS(linux_flistxattr_args), .sy_call = (sy_call_t *)linux_flistxattr, .sy_auevent = AU…
[all …]
/freebsd/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/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/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 a UNIX-style date, but interpreted as
[all …]
/freebsd/contrib/tzcode/
H A Dnewstrftime.323 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
84 Each conversion specification is replaced by the characters as
100 should be initialized as if by a successful call to
153 is replaced by the day of the month as a decimal number [01,31].
157 is replaced by the day of month as a decimal number [1,31];
170 is replaced by the ISO 8601 year with century as a decimal number.
172 (Monday as the first day of a week).
181 is replaced by the ISO 8601 year without century as a decimal number [00,99].
188 is replaced by the hour (24-hour clock) as a decimal number [00,23].
192 is replaced by the hour (12-hour clock) as a decimal number [01,12].
[all …]
/freebsd/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.UnknownInsts); in mergeSetIn()
[all …]
/freebsd/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_CF
[all...]
H A Dti,tlv320adcx140.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/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 …]
/freebsd/lib/libpmc/pmu-events/arch/x86/icelake/
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>>...503