Home
last modified time | relevance | path

Searched full:pch (Results 1 – 25 of 193) sorted by relevance

12345678

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSerializationKinds.td13 "unable to read PCH file %0: '%1'">;
15 "input is not a PCH file: '%0'">;
19 "malformed block record in PCH file: '%0'">, DefaultFatal;
33 "PCH file was compiled for the %0 '%1' but the current translation "
40 "PCH file but is currently %select{disabled|enabled}2">;
42 "%0 differs in PCH file vs. current file">;
44 "the PCH file">;
45 def err_pch_modulecache_mismatch : Error<"PCH was compiled with module cache "
48 "PCH was compiled with different VFS overlay files than are currently in use">,
49 InGroup<DiagGroup<"pch-vfs-diff">>;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorOptions.h53 PCH = 0x1, enumerator
59 All = PCH | Module,
86 /// When true, we are creating or using a PCH where a #pragma hdrstop is
87 /// expected to indicate the beginning or end of the PCH.
90 /// When true, we are creating a PCH or creating the PCH object while
92 /// missing #pragma hdrstop, which generates a PCH for the whole file,
93 /// and creates an empty PCH object.
98 /// MSVC-style precompiled headers. When creating a PCH, after the #include
99 /// of this header, the PCH generation stops. When using a PCH, tokens are
103 /// The implicit PCH included at the start of the translation unit, or empty.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dloongson,pch-msi.yaml4 $id: http://devicetree.org/schemas/interrupt-controller/loongson,pch-msi.yaml#
7 title: Loongson PCH MSI Controller
13 This interrupt controller is found in the Loongson LS7A family of PCH for
19 const: loongson,pch-msi-1.0
27 to PCH MSI.
35 to PCH MSI.
55 compatible = "loongson,pch-msi-1.0";
H A Dloongson,pch-pic.yaml4 $id: http://devicetree.org/schemas/interrupt-controller/loongson,pch-pic.yaml#
7 title: Loongson PCH PIC Controller
13 This interrupt controller is found in the Loongson LS7A family of PCH for
19 const: loongson,pch-pic-1.0
27 to PCH PIC.
50 compatible = "loongson,pch-pic-1.0";
/freebsd/contrib/ntp/libntp/
H A Dsocktoa.c113 const u_char *pch; in sock_hash()
123 pch = (const void *)&AF(addr); in sock_hash()
124 hashVal = 37 * hashVal + *pch; in sock_hash()
126 pch++; in sock_hash()
127 hashVal = 37 * hashVal + *pch; in sock_hash()
131 pch = (const void *)&SOCK_ADDR4(addr); in sock_hash()
136 pch = (const void *)&SOCK_ADDR6(addr); in sock_hash()
142 hashVal = 37 * hashVal + pch[j]; in sock_hash()
114 const u_char *pch; sock_hash() local
H A Dssl_init.c100 char * pch; in keytype_from_text()
116 for (pch = upcased; '\0' != *pch; pch++) { in keytype_from_text()
117 *pch = (char)toupper((unsigned char)*pch); in keytype_from_text()
107 char * pch; keytype_from_text() local
H A Dis_ip_address.c38 char *pch; in is_ip_address() local
66 pch = strchr(tmpbuf, ']'); in is_ip_address()
67 if (pch != NULL) in is_ip_address()
68 *pch = '\0'; in is_ip_address()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h48 /// A class holding a PCH and all information to check whether it is valid to
49 /// reuse the PCH for the subsequent runs. Use BuildPreamble to create PCH and
75 /// \param StoreInMemory Store PCH in memory. If false, PCH will be stored in
79 /// file to store PCH in. If empty, the default system temporary directory is
116 /// Changes options inside \p CI to use PCH from this preamble. Also remaps
123 /// compiler run and the AST that will be using the PCH.
171 /// Helper function to set up PCH for the preamble into \p CI and \p VFS to
177 /// Sets up the PreprocessorOptions and changes VFS, so that PCH stored in \p
185 /// Manages the memory buffer or temporary file that stores the PCH.
224 /// Called after PCH has been emitted. \p Writer may be used to retrieve
[all …]
/freebsd/contrib/unbound/compat/
H A Dinet_pton.c106 const char *pch; local
108 if ((pch = strchr(digits, ch)) != NULL) {
109 uint32_t new = *tp * 10 + (pch - digits);
170 const char *pch; local
172 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
173 pch = strchr((xdigits = xdigits_u), ch);
174 if (pch != NULL) {
176 val |= (pch - xdigits);
/freebsd/sys/libkern/
H A Dinet_pton.c79 const char *pch; in inet_pton4() local
81 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
82 u_int new = *tp * 10 + (pch - digits); in inet_pton4()
144 const char *pch; in inet_pton6() local
146 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
147 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
148 if (pch != NULL) { in inet_pton6()
150 val |= (pch - xdigits); in inet_pton6()
/freebsd/contrib/ldns/compat/
H A Dinet_pton.c106 const char *pch; local
108 if ((pch = strchr(digits, ch)) != NULL) {
109 uint32_t new = *tp * 10 + (pch - digits);
170 const char *pch; local
172 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
173 pch = strchr((xdigits = xdigits_u), ch);
174 if (pch != NULL) {
176 val |= (pch - xdigits);
/freebsd/lib/libc/inet/
H A Dinet_net_pton.c197 const char *pch; in getbits() local
199 pch = strchr(digits, ch); in getbits()
200 if (pch != NULL) { in getbits()
204 val += (pch - digits); in getbits()
228 const char *pch; in getv4() local
230 pch = strchr(digits, ch); in getv4()
231 if (pch != NULL) { in getv4()
235 val += (pch - digits); in getv4()
288 const char *pch; in inet_net_pton_ipv6() local
290 if ((pch in inet_net_pton_ipv6()
[all...]
H A Dinet_pton.c85 const char *pch; in inet_pton4() local
87 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
88 u_int new = *tp * 10 + (pch - digits); in inet_pton4()
148 const char *pch; in inet_pton6() local
150 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
151 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
152 if (pch != NULL) { in inet_pton6()
154 val |= (pch - xdigits); in inet_pton6()
/freebsd/contrib/ntp/libntp/lib/isc/
H A Dinet_pton.c92 const char *pch; in inet_pton4() local
94 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
95 size_t newv = *tp * 10 + (pch - digits); in inet_pton4()
154 const char *pch; in inet_pton6() local
156 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
157 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
158 if (pch != NULL) { in inet_pton6()
160 val |= (pch - xdigits); in inet_pton6()
/freebsd/contrib/elftoolchain/elfcopy/
H A Dpe.c51 PE_CoffHdr pch; in create_pe() local
81 memset(&pch, 0, sizeof(pch)); in create_pe()
84 pch.ch_machine = IMAGE_FILE_MACHINE_I386; in create_pe()
87 pch.ch_machine = IMAGE_FILE_MACHINE_AMD64; in create_pe()
90 pch.ch_machine = IMAGE_FILE_MACHINE_UNKNOWN; in create_pe()
95 pch.ch_timestamp = (uint32_t) timestamp; in create_pe()
96 if (pe_update_coff_header(pe, &pch) < 0) in create_pe()
/freebsd/usr.sbin/pmcstat/
H A Dpmcpl_callgraph.c412 struct pmcstat_cgnode_hash *pch; in pmcstat_callgraph_print_for_pmcid() local
430 LIST_FOREACH(pch, &pmcstat_cgnode_hash[n], pch_next) in pmcstat_callgraph_print_for_pmcid()
431 if (pch->pch_pmcid == pmcid) { in pmcstat_callgraph_print_for_pmcid()
432 nsamples += pch->pch_cgnode->pcg_count; in pmcstat_callgraph_print_for_pmcid()
433 *cgn++ = pch->pch_cgnode; in pmcstat_callgraph_print_for_pmcid()
600 struct pmcstat_cgnode_hash *pch; in pmcpl_cg_topdisplay() local
623 LIST_FOREACH(pch, &pmcstat_cgnode_hash[n], pch_next) in pmcpl_cg_topdisplay()
624 if (pmcr == NULL || pch->pch_pmcid == pmcr->pr_pmcid) { in pmcpl_cg_topdisplay()
625 nsamples += pch->pch_cgnode->pcg_count; in pmcpl_cg_topdisplay()
626 *cgn++ = pch in pmcpl_cg_topdisplay()
689 struct pmcstat_cgnode_hash *pch, *pchtmp; pmcpl_cg_shutdown() local
[all...]
H A Dpmcpl_calltree.c353 struct pmcpl_ct_node_hash *pch; in pmcpl_ct_node_cleartag() local
356 STAILQ_FOREACH(pch, &pmcpl_ct_node_hash[i], pch_next) in pmcpl_ct_node_cleartag()
357 pch->pch_ctnode->pct_color = PMCPL_PCT_WHITE; in pmcpl_ct_node_cleartag()
985 struct pmcpl_ct_node_hash *pch, *pchc; in pmcpl_ct_bfs() local
990 if ((pch = malloc(sizeof(*pch))) == NULL) in pmcpl_ct_bfs()
992 pch->pch_ctnode = ct; in pmcpl_ct_bfs()
993 STAILQ_INSERT_TAIL(&q, pch, pch_next); in pmcpl_ct_bfs()
997 pch = STAILQ_FIRST(&q); in pmcpl_ct_bfs()
999 pmcpl_ct_printnode(pch->pch_ctnode); in pmcpl_ct_bfs()
1000 for (i = 0; i<pch->pch_ctnode->pct_narc; i++) { in pmcpl_ct_bfs()
[all …]
/freebsd/contrib/ntp/sntp/
H A Dkod_management.c129 char *pch; in write_kod_db() local
143 pch = strchr(kod_db_file + 1, DIR_SEP); in write_kod_db()
144 while (NULL != pch) { in write_kod_db()
145 *pch = '\0'; in write_kod_db()
152 *pch = DIR_SEP; in write_kod_db()
153 pch = strchr(pch + 1, DIR_SEP); in write_kod_db()
/freebsd/sys/arm/broadcom/bcm2835/
H A Dbcm2835_audio.c121 struct bcm2835_audio_chinfo pch; member
228 chn_intr(sc->pch.channel); in bcm2835_audio_callback()
473 struct bcm2835_audio_chinfo *ch = &sc->pch; in bcm2835_audio_worker()
518 bcm2835_audio_reset_channel(&sc->pch); in bcm2835_audio_worker()
590 struct bcm2835_audio_chinfo *ch = &sc->pch; in bcmchan_init()
681 chn_intr(sc->pch.channel); in bcmchan_trigger()
816 CTLFLAG_RD, &sc->pch.callbacks, in vchi_audio_sysctl_init()
819 CTLFLAG_RD, &sc->pch.submitted_samples, in vchi_audio_sysctl_init()
822 CTLFLAG_RD, &sc->pch.retrieved_samples, in vchi_audio_sysctl_init()
825 CTLFLAG_RD, &sc->pch.underruns, in vchi_audio_sysctl_init()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGeneratePCH.cpp1 //===--- GeneratePCH.cpp - Sema Consumer for PCH Generation -----*- C++ -*-===//
10 // a PCH file.
60 // Don't create a PCH if there were fatal failures during module loading. in HandleTranslationUnit()
70 // Errors that do not prevent the PCH from being written should not cause the in HandleTranslationUnit()
75 // Emit the PCH file to the Buffer. in HandleTranslationUnit()
/freebsd/sys/contrib/device-tree/src/mips/loongson/
H A Dloongson64c_4core_ls7a.dts6 #include "ls7a-pch.dtsi"
27 &pch {
29 compatible = "loongson,pch-msi-1.0";
H A Dloongson64g_4core_ls7a.dts6 #include "ls7a-pch.dtsi"
31 &pch {
33 compatible = "loongson,pch-msi-1.0";
/freebsd/share/man/man4/
H A Dpchtherm.429 .Nd Intel PCH thermal subsystem
37 installed in Intel PCH chipset.
60 dev.pchtherm.0.%desc: Skylake PCH Thermal Subsystem
98 Please check the PCH datasheets for more details.
/freebsd/usr.sbin/bootparamd/bootparamd/
H A Dbootparamd.c190 int ch, pch, fid_len, res = 0; in getthefile() local
239 pch = ch = getc(bpf); in getthefile()
240 while ( ! ( ch == '\n' && pch != '\\') && ch != EOF) { in getthefile()
241 pch = ch; ch = getc(bpf); in getthefile()
288 int ch, pch; in checkhost() local
345 pch = ch = getc(bpf); in checkhost()
346 while ( ! ( ch == '\n' && pch != '\\') && ch != EOF) { in checkhost()
347 pch = ch; ch = getc(bpf); in checkhost()
/freebsd/usr.bin/gprof/
H A Dgprof.c440 * There are three cases as to where pcl and pch can be
458 * pcl pch pcl pch pcl pch
475 unsigned long pcl, pch; in asgnsamples() local
489 pch = lowpc + (unsigned long)(scale * (i + 1)); in asgnsamples()
493 printf( "[asgnsamples] pcl 0x%lx pch 0x%lx ccnt %.0f\n" , in asgnsamples()
494 pcl , pch , ccnt ); in asgnsamples()
505 if (pch < svalue0) in asgnsamples()
513 overlap = min(pch, svalue1) - max(pcl, svalue0); in asgnsamples()

12345678