| /freebsd/sys/fs/autofs/ |
| H A D | autofs_vfsops.c | 58 struct autofs_mount *amp; in autofs_mount() local 82 amp = malloc(sizeof(*amp), M_AUTOFS, M_WAITOK | M_ZERO); in autofs_mount() 83 mp->mnt_data = amp; in autofs_mount() 84 amp->am_mp = mp; in autofs_mount() 85 strlcpy(amp->am_from, from, sizeof(amp->am_from)); in autofs_mount() 86 strlcpy(amp->am_mountpoint, fspath, sizeof(amp->am_mountpoint)); in autofs_mount() 87 strlcpy(amp->am_options, options, sizeof(amp->am_options)); in autofs_mount() 88 strlcpy(amp->am_prefix, prefix, sizeof(amp->am_prefix)); in autofs_mount() 89 sx_init(&->am_lock, "autofslk"); in autofs_mount() 90 amp->am_last_fileno = 1; in autofs_mount() [all …]
|
| H A D | autofs.c | 243 struct autofs_mount *amp; in autofs_path() local 246 amp = anp->an_mount; in autofs_path() 259 tmp = malloc(strlen(amp->am_mountpoint) + strlen(path) + 2, in autofs_path() 261 strcpy(tmp, amp->am_mountpoint); in autofs_path() 295 struct autofs_mount *amp; in autofs_cached() local 297 amp = anp->an_mount; in autofs_cached() 299 AUTOFS_ASSERT_UNLOCKED(amp); in autofs_cached() 309 AUTOFS_SLOCK(amp); in autofs_cached() 311 AUTOFS_SUNLOCK(amp); in autofs_cached() 329 autofs_flush(struct autofs_mount *amp) in autofs_flush() argument [all …]
|
| H A D | autofs_vnops.c | 211 struct autofs_mount *amp; in autofs_lookup() local 219 amp = VFSTOAUTOFS(mp); in autofs_lookup() 267 AUTOFS_SLOCK(amp); in autofs_lookup() 271 AUTOFS_SUNLOCK(amp); in autofs_lookup() 275 AUTOFS_SUNLOCK(amp); in autofs_lookup() 282 AUTOFS_SUNLOCK(amp); in autofs_lookup() 300 struct autofs_mount *amp; in autofs_mkdir() local 306 amp = VFSTOAUTOFS(vp->v_mount); in autofs_mkdir() 315 AUTOFS_XLOCK(amp); in autofs_mkdir() 316 error = autofs_node_new(anp, amp, ap->a_cnp->cn_nameptr, in autofs_mkdir() [all …]
|
| /illumos-gate/usr/src/uts/common/vm/ |
| H A D | seg_vn.c | 336 * replica's are represented by anon maps (amp). There's one amp per text file 337 * region per lgroup. A process chooses the amp for each of its text mappings 340 * mapping share the same amp. amp's are looked up in svntr_hashtab hash table 343 * forcing COW faults from vnode to amp and mapping amp pages instead of vnode 344 * pages. Replication amp is assigned to a segment when it gets its first 346 * rechecks periodically if the process still maps an amp local to the main 347 * thread. If not async thread forces process to remap to an amp in the new 357 * amp pages are used instead of vnode pages as long as segment has a very 363 * (unmap segment's address range and set svd->amp to NULL). 365 * The original file can be changed after amp is inserted into [all …]
|
| H A D | vm_anon.c | 175 struct anon_map *amp = buf; in anonmap_cache_constructor() local 177 rw_init(&->a_rwlock, NULL, RW_DEFAULT, NULL); in anonmap_cache_constructor() 178 cv_init(&->a_purgecv, NULL, CV_DEFAULT, NULL); in anonmap_cache_constructor() 179 mutex_init(&->a_pmtx, NULL, MUTEX_DEFAULT, NULL); in anonmap_cache_constructor() 180 mutex_init(&->a_purgemtx, NULL, MUTEX_DEFAULT, NULL); in anonmap_cache_constructor() 188 struct anon_map *amp = buf; in anonmap_cache_destructor() local 190 rw_destroy(&->a_rwlock); in anonmap_cache_destructor() 191 cv_destroy(&->a_purgecv); in anonmap_cache_destructor() 192 mutex_destroy(&->a_pmtx); in anonmap_cache_destructor() 193 mutex_destroy(&->a_purgemtx); in anonmap_cache_destructor() [all …]
|
| H A D | seg_spt.c | 339 sptcreate(size_t size, struct seg **sptseg, struct anon_map *amp, in sptcreate() argument 357 sptcargs.amp = amp; in sptcreate() 374 sptdestroy(struct as *as, struct anon_map *amp) in sptdestroy() argument 377 (void) as_unmap(as, SEGSPTADDR, amp->size); in sptdestroy() 446 struct anon_map *amp = shmd->shm_amp; in segspt_shmincore() local 462 ANON_LOCK_ENTER(&->a_rwlock, RW_READER); in segspt_shmincore() 465 anon_array_enter(amp, anon_index, &cookie); in segspt_shmincore() 466 ap = anon_get_ptr(amp->ahp, anon_index); in segspt_shmincore() 483 ANON_LOCK_EXIT(&->a_rwlock); in segspt_shmincore() 524 struct anon_map *amp = sptcargs->amp; in segspt_create() local [all …]
|
| H A D | vm_seg.c | 85 pcache_link_t p_plink; /* per segment/amp list */ 86 void *p_htag0; /* segment/amp pointer */ 219 * htag0 argument can be a seg or amp pointer. 231 * htag0 argument can be a seg or amp pointer. 418 * for non wired shadow lists. The caller already holds a per seg/amp list 459 * active count. If amp is not NULL use amp as a lookup tag otherwise use seg 463 seg_plookup(struct seg *seg, struct anon_map *amp, caddr_t addr, size_t len, in seg_plookup() argument 482 htag0 = (amp == NULL ? (void *)seg : (void *)amp); in seg_plookup() 520 * active count and set ref bit. If amp is not NULL use amp as a lookup tag 524 seg_pinactive(struct seg *seg, struct anon_map *amp, caddr_t addr, in seg_pinactive() argument [all …]
|
| H A D | vm_usage.c | 60 * - Lookup anons in the amp. 66 * - For address ranges without anons in the amp: 72 * - Lookup pages in the shared amp or vnode. 80 * amp->swresv == 0. 92 * - If seg is anon, shared, and amp->swresv != 0 93 * - For address ranges in amp not previously visited for 113 * - per shared amp (entity->vme_amp_hash) 184 pgcnt_t vmb_start; /* page offset in vnode/amp on which bound starts */ 185 pgcnt_t vmb_end; /* page offset in vnode/amp on which bound ends */ 191 * key is address of vnode or amp. Bounds lists known incore/non-incore [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/sound/ |
| H A D | tlv320aic31xx.txt | 8 "ti,tlv320aic310x" - Generic TLV320AIC31xx with mono speaker amp 9 "ti,tlv320aic311x" - Generic TLV320AIC31xx with stereo speaker amp 10 "ti,tlv320aic3100" - TLV320AIC3100 (mono speaker amp, no MiniDSP) 11 "ti,tlv320aic3110" - TLV320AIC3110 (stereo speaker amp, no MiniDSP) 12 "ti,tlv320aic3120" - TLV320AIC3120 (mono speaker amp, MiniDSP) 13 "ti,tlv320aic3111" - TLV320AIC3111 (stereo speaker amp, MiniDSP) 14 "ti,tlv320dac3100" - TLV320DAC3100 (no ADC, mono speaker amp, no MiniDSP) 15 "ti,tlv320dac3101" - TLV320DAC3101 (no ADC, stereo speaker amp, no MiniDSP) 45 * SPL, devices with stereo speaker amp 46 * SPR, devices with stereo speaker amp [all …]
|
| H A D | ti,tlv320dac3100.yaml | 16 * SPL, devices with stereo speaker amp 17 * SPR, devices with stereo speaker amp 18 * SPK, devices with mono speaker amp 33 - ti,tlv320aic310x # - Generic TLV320AIC31xx with mono speaker amp 34 - ti,tlv320aic311x # - Generic TLV320AIC31xx with stereo speaker amp 35 - ti,tlv320aic3100 # - TLV320AIC3100 (mono speaker amp, no MiniDSP) 36 - ti,tlv320aic3110 # - TLV320AIC3110 (stereo speaker amp, no MiniDSP) 37 - ti,tlv320aic3120 # - TLV320AIC3120 (mono speaker amp, MiniDSP) 38 - ti,tlv320aic3111 # - TLV320AIC3111 (stereo speaker amp, MiniDSP) 39 - ti,tlv320dac3100 # - TLV320DAC3100 (no ADC, mono speaker amp, no MiniDSP) [all …]
|
| H A D | fsl,imx-audio-es8328.yaml | 32 audio-amp-supply: 48 * audio-amp 83 - audio-amp-supply 99 audio-amp-supply = <®_audio_amp>; 103 "Speaker", "audio-amp",
|
| /freebsd/crypto/heimdal/doc/doxyout/ntlm/html/ |
| H A D | test__ntlm_8c-example.html | 80 memset(&type1, 0, <span class="keyword">sizeof</span>(type1)); 88 …lm__core.html#g0107727234287ac61a8801b0faff9dff">heim_ntlm_encode_type1</a>(&type1, &data); 92 memset(&type1, 0, <span class="keyword">sizeof</span>(type1)); 94 ret = heim_ntlm_decode_type1(&data, &type1); 99 …ef="group__ntlm__core.html#g76fa6caf3f539e24008e31613f5eb663">heim_ntlm_free_type1</a>(&type1); 105 memset(&type2, 0, <span class="keyword">sizeof</span>(type2)); 115 …lm__core.html#g2860c6f6d497255eb433adc8cacc49dd">heim_ntlm_encode_type2</a>(&type2, &data); 119 memset(&type2, 0, <span class="keyword">sizeof</span>(type2)); 121 ret = heim_ntlm_decode_type2(&data, &type2); 126 …ef="group__ntlm__core.html#g8fde84c86f1c7c9f730f7fb4acedcb43">heim_ntlm_free_type2</a>(&type2); [all …]
|
| /freebsd/usr.sbin/virtual_oss/virtual_oss/ |
| H A D | compressor.c | 50 double amp; in voss_compressor() local 63 amp = p_ch_gain[ch]; in voss_compressor() 66 if (gain < amp) in voss_compressor() 67 amp += (gain - amp) / (1LL << p_param->attack); in voss_compressor() 69 buffer[i] *= amp; in voss_compressor() 70 amp += (1.0 - amp) / (1LL << p_param->decay); in voss_compressor() 71 p_ch_gain[ch] = amp; in voss_compressor()
|
| /illumos-gate/usr/src/cmd/sgs/libld/common/ |
| H A D | libs.c | 65 process_member(Ar_mem *amp, const char *name, Sym_desc *sdp, Ofl_desc *ofl) in process_member() argument 78 if (amp->am_syms == NULL) { in process_member() 83 while (scn = elf_nextscn(amp->am_elf, scn)) { in process_member() 86 MSG_INTL(MSG_ELF_GETSHDR), amp->am_path); in process_member() 95 amp->am_path); in process_member() 106 if ((scn = elf_getscn(amp->am_elf, (size_t)shdr->sh_link)) == in process_member() 109 amp->am_path); in process_member() 114 amp->am_path); in process_member() 123 amp->am_syms = syms; in process_member() 124 amp->am_strs = strs; in process_member() [all …]
|
| /illumos-gate/usr/src/uts/common/os/ |
| H A D | schedctl.c | 509 struct anon_map *amp; in schedctl_shared_alloc() local 517 if ((error = schedctl_getpage(&, &kaddr)) != 0) { in schedctl_shared_alloc() 521 if ((error = schedctl_map(amp, &base, kaddr)) != 0) { in schedctl_shared_alloc() 522 schedctl_freepage(amp, kaddr); in schedctl_shared_alloc() 531 pagep->spc_amp = amp; in schedctl_shared_alloc() 596 schedctl_map(struct anon_map *amp, caddr_t *uaddrp, caddr_t kaddr) in schedctl_map() argument 620 vn_a.amp = amp; in schedctl_map() 641 struct anon_map *amp; in schedctl_getpage() local 648 amp = anonmap_alloc(PAGESIZE, 0, ANON_SLEEP); in schedctl_getpage() 654 KPD_NO_ANON | KPD_LOCKED | KPD_ZERO, amp); in schedctl_getpage() [all …]
|
| H A D | shm.c | 127 static int shmem_lock(kshmid_t *sp, struct anon_map *amp); 128 static void shmem_unlock(kshmid_t *sp, struct anon_map *amp); 543 crargs.amp = sp->shm_amp; in shmat() 892 * unreserving the above anon, and freeing the below amp. in shmget() 1124 lock_again(size_t npages, kshmid_t *sp, struct anon_map *amp) in lock_again() argument 1134 ANON_LOCK_ENTER(&->a_rwlock, RW_READER); in lock_again() 1137 anon_array_enter(amp, anon_idx, &cookie); in lock_again() 1138 ap = anon_get_ptr(amp->ahp, anon_idx); in lock_again() 1153 ANON_LOCK_EXIT(&->a_rwlock); in lock_again() 1162 shmem_lock(kshmid_t *sp, struct anon_map *amp) in shmem_lock() argument [all …]
|
| /freebsd/crypto/heimdal/doc/doxyout/krb5/html/ |
| H A D | krb5_introduction.html | 66 …ode" href="group__krb5.html#gbd94206e186c58a093975424a4a567a8">krb5_init_context</a>(&context)) 74 memset (&hints, 0, <span class="keyword">sizeof</span>(hints)); 78 … error = getaddrinfo (hostname, <span class="stringliteral">"pop3"</span>, &hints, &ai); 102 <div class="fragment"><pre class="fragment"> status = krb5_auth_con_init (context, &aut… 109 &sock); 119 &server); 128 &auth_context, 129 &sock, 147 …="code" href="group__krb5.html#ga059e96dde4e0b8c082eb6f3d570b7bc">krb5_data_zero</a> (&packet); 151 &data, [all …]
|
| H A D | krb5_ccache_intro.html | 42 …ref="group__krb5.html#gbd94206e186c58a093975424a4a567a8">krb5_init_context</a> (&context) != 0) 45 …che.html#gd7d54822ef022f3e27f7f0f457d9c751">krb5_cc_default</a> (context, &<span class="keywor… 49 …628c7708b979">krb5_cc_start_seq_get</a>(context, <span class="keywordtype">id</span>, &cursor); 53 …rb5_cc_next_cred</a>(context, <span class="keywordtype">id</span>, &cursor, &creds)) == 0){ 56 …ml#gac881051ed59fe0dcd08cee62280b332">krb5_unparse_name</a>(context, creds.server, &principal); 59 …up__krb5.html#gd89c4c7b633646c39e4a34a7230c94e1">krb5_free_cred_contents</a> (context, &creds); 61 …354d4681bd0550">krb5_cc_end_seq_get</a>(context, <span class="keywordtype">id</span>, &cursor);
|
| H A D | krb5_keytab_intro.html | 53 …ref="group__krb5.html#gbd94206e186c58a093975424a4a567a8">krb5_init_context</a> (&context) != 0) 56 …p__krb5__keytab.html#gfcd059883c79dbd99a179bc4225d16b5">krb5_kt_default</a> (context, &keytab); 60 …ab.html#g1efd8ee48d6e3caa31cad475423b8917">krb5_kt_start_seq_get</a>(context, keytab, &cursor); 63 …c41333a86d3c40426f50b4e1b0">krb5_kt_next_entry</a>(context, keytab, &entry, &cursor)) == 0… 64 …gac881051ed59fe0dcd08cee62280b332">krb5_unparse_name</a>(context, entry.principal, &principal); 67 …__krb5__keytab.html#gc0774ab1407eaaaa0e5998478de246e2">krb5_kt_free_entry</a>(context, &entry); 69 …ytab.html#g11289efb407d93a1f84d5c64731a4bd1">krb5_kt_end_seq_get</a>(context, keytab, &cursor);
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | msm8916-wingtech-wt86528.dts | 20 sound-name-prefix = "Speaker Amp L"; 32 sound-name-prefix = "Speaker Amp R"; 101 audio-routing = "Speaker", "Speaker Amp L OUT", 102 "Speaker", "Speaker Amp R OUT", 103 "Speaker Amp L IN", "HPH_L", 104 "Speaker Amp R IN", "HPH_R",
|
| /freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
| H A D | rk3566-anbernic-rg353ps.dts | 55 "Internal Speakers", "Speaker Amp OUTL", 56 "Internal Speakers", "Speaker Amp OUTR", 57 "Speaker Amp INL", "HPOL", 58 "Speaker Amp INR", "HPOR"; 75 sound-name-prefix = "Speaker Amp"; 102 spk_amp_enable_h: spk-amp-enable-h {
|
| H A D | rk3566-anbernic-rg353p.dts | 56 "Internal Speakers", "Speaker Amp OUTL", 57 "Internal Speakers", "Speaker Amp OUTR", 58 "Speaker Amp INL", "HPOL", 59 "Speaker Amp INR", "HPOR"; 76 sound-name-prefix = "Speaker Amp"; 114 spk_amp_enable_h: spk-amp-enable-h {
|
| H A D | rk3588-orangepi-5-plus.dts | 93 "Headphones", "Headphones Amp OUTL", 94 "Headphones", "Headphones Amp OUTR", 95 "Headphones Amp INL", "LOUT1", 96 "Headphones Amp INR", "ROUT1", 98 "Speaker", "Speaker Amp OUTL", 99 "Speaker", "Speaker Amp OUTR", 100 "Speaker Amp INL", "LOUT2", 101 "Speaker Amp INR", "ROUT2",
|
| /freebsd/contrib/libxo/tests/core/saved/ |
| H A D | test_07.X.out | 1 …amp; for true">full</benefits></employee><employee><first-name>Terry</first-name><nic-name>"<on…
|
| H A D | test_07.XP.out | 20 <benefits full-time="honest & for true">full</benefits> 29 <benefits full-time="honest & for true">full</benefits> 38 <benefits full-time="honest & for true">full</benefits> 43 <last-name>Meter & Smith</last-name> 63 <benefits full-time="honest & for true">full</benefits>
|