Home
last modified time | relevance | path

Searched refs:pch (Results 1 - 25 of 29) sorted by relevance

12

/third_party/curl/lib/
H A Dinet_pton.c111 const char *pch; in inet_pton4() local
113 pch = strchr(digits, ch); in inet_pton4()
114 if(pch) { in inet_pton4()
116 (unsigned int)(pch - digits); in inet_pton4()
179 const char *pch; in inet_pton6() local
181 pch = strchr((xdigits = xdigits_l), ch); in inet_pton6()
182 if(!pch) in inet_pton6()
183 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
184 if(pch) { in inet_pton6()
186 val |= (pch in inet_pton6()
[all...]
/third_party/python/Python/
H A Ddynload_win.c126 char *pch; local
140 pch = import_name + 6;
142 while (*pch && pch[0] != '_' && pch[1] != 'd' && pch[2] != '.') {
144 while (*pch && *pch != '.') {
146 if (*pch >= '0' && *pch <
[all...]
/third_party/ffmpeg/libavcodec/
H A Daacpsy.c267 AacPsyChannel *pch = &ctx->ch[i]; in lame_window_init() local
270 pch->attack_threshold = psy_vbr_map[av_clip(avctx->global_quality / FF_QP2LAMBDA, 0, 10)].st_lrm; in lame_window_init()
272 pch->attack_threshold = lame_calc_attack_threshold(avctx->bit_rate / avctx->ch_layout.nb_channels / 1000); in lame_window_init()
275 pch->prev_energy_subshort[j] = 10.0f; in lame_window_init()
417 AacPsyChannel *pch = &pctx->ch[channel]; in psy_3gpp_window() local
419 int next_type = pch->next_window_seq; in psy_3gpp_window()
430 v = iir_filter(la[i*128+j], pch->iir_state); in psy_3gpp_window()
437 if (s[i] > pch->win_energy * attack_ratio) { in psy_3gpp_window()
443 pch->win_energy = pch in psy_3gpp_window()
600 calc_thr_3gpp(const FFPsyWindowInfo *wi, const int num_bands, AacPsyChannel *pch, const uint8_t *band_sizes, const float *coefs, const int cutoff) calc_thr_3gpp() argument
656 AacPsyChannel *pch = &pctx->ch[channel]; psy_3gpp_analyze_channel() local
888 AacPsyChannel *pch = &pctx->ch[channel]; psy_lame_window() local
[all...]
/third_party/cJSON/tests/unity/src/
H A Dunity.c72 const char* pch = string; in UnityPrint() local
74 if (pch != NULL) in UnityPrint()
76 while (*pch) in UnityPrint()
79 if ((*pch <= 126) && (*pch >= 32)) in UnityPrint()
81 UNITY_OUTPUT_CHAR(*pch); in UnityPrint()
84 else if (*pch == 13) in UnityPrint()
90 else if (*pch == 10) in UnityPrint()
97 else if (*pch == 27 && *(pch in UnityPrint()
121 const char* pch = string; UnityPrintLen() local
[all...]
/third_party/unity/src/
H A Dunity.c77 static void UnityPrintChar(const char* pch) in UnityPrintChar() argument
80 if ((*pch <= 126) && (*pch >= 32)) in UnityPrintChar()
82 UNITY_OUTPUT_CHAR(*pch); in UnityPrintChar()
85 else if (*pch == 13) in UnityPrintChar()
91 else if (*pch == 10) in UnityPrintChar()
101 UnityPrintNumberHex((UNITY_UINT)*pch, 2); in UnityPrintChar()
110 const char* pch = string; in UnityPrintAnsiEscapeString() local
113 while (*pch && (*pch ! in UnityPrintAnsiEscapeString()
129 const char* pch = string; UnityPrint() local
151 const char* pch = string; UnityPrintLen() local
1918 UnityLengthModifierGet(const char *pch, int *length) UnityLengthModifierGet() argument
1975 const char* pch = format; UnityPrintFVA() local
[all...]
/third_party/node/deps/cares/src/lib/
H A Dinet_net_pton.c218 const char *pch; in getbits() local
220 pch = strchr(digits, ch); in getbits()
221 if (pch != NULL) { in getbits()
226 val += (size_t)(pch - digits); in getbits()
269 const char *pch; in ares_inet_pton6() local
271 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) { in ares_inet_pton6()
272 pch = strchr((xdigits = xdigits_u), ch); in ares_inet_pton6()
274 if (pch != NULL) { in ares_inet_pton6()
279 val |= (unsigned int)(pch - xdigits); in ares_inet_pton6()
/third_party/googletest/googletest/src/hwext/
H A Dgtest-tag.cc79 char * pch; in eleForName() local
80 pch = strtok(name_cpoy, kCandidateSeps); in eleForName()
81 while (pch != NULL) in eleForName()
89 if (compareStringsByIgnoreCase(pch, ele_name) || compareStringsByIgnoreCase(pch, ele_full_name_string.c_str())) { in eleForName()
97 fprintf(stderr, "Unrecognized %s value '%s'\n", naming(), pch); in eleForName()
102 pch = strtok(NULL, kCandidateSeps); in eleForName()
/third_party/libuv/src/
H A Dinet.c184 const char *pch; in inet_pton4() local
186 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
187 unsigned int nw = *tp * 10 + (pch - digits); in inet_pton4()
233 const char *pch; in inet_pton6() local
235 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
236 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
237 if (pch != NULL) { in inet_pton6()
239 val |= (pch - xdigits); in inet_pton6()
/third_party/node/deps/uv/src/
H A Dinet.c189 const char *pch; in inet_pton4() local
191 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
192 unsigned int nw = *tp * 10 + (pch - digits); in inet_pton4()
238 const char *pch; in inet_pton6() local
240 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
241 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
242 if (pch != NULL) { in inet_pton6()
244 val |= (pch - xdigits); in inet_pton6()
/third_party/lzma/CPP/
H A DBuild.mak176 COMPL_PCH = $(CC) $(CFLAGS_O1) -Yc"StdAfx.h" -Fp$O/a.pch $**
177 COMPL = $(CC) $(CFLAGS_O1) -Yu"StdAfx.h" -Fp$O/a.pch $**
178 COMPLB = $(CC) $(CFLAGS_O1) -Yu"StdAfx.h" -Fp$O/a.pch $<
180 # COMPLB_O2 = $(CC) $(CFLAGS_O2) -Yu"StdAfx.h" -Fp$O/a.pch $<
184 CCOMPL_PCH = $(CC) $(CFLAGS_C_ALL) -Yc"Precomp.h" -Fp$O/a.pch $**
185 CCOMPL_USE = $(CC) $(CFLAGS_C_ALL) -Yu"Precomp.h" -Fp$O/a.pch $**
186 CCOMPLB_USE = $(CC) $(CFLAGS_C_ALL) -Yu"Precomp.h" -Fp$O/a.pch $<
200 -del /Q $(PROGPATH) $O\*.exe $O\*.dll $O\*.obj $O\*.lib $O\*.exp $O\*.res $O\*.pch $O\*.asm
/third_party/ffmpeg/libavcodec/mips/
H A Daacpsy_mips.h64 AacPsyChannel *pch, const uint8_t *band_sizes, in calc_thr_3gpp_mips()
72 AacPsyBand *band = &pch->band[w+g]; in calc_thr_3gpp_mips()
63 calc_thr_3gpp_mips(const FFPsyWindowInfo *wi, const int num_bands, AacPsyChannel *pch, const uint8_t *band_sizes, const float *coefs, const int cutoff) calc_thr_3gpp_mips() argument
/third_party/lz4/programs/
H A Dbench.c636 const char* pch = strrchr(displayName, '\\'); /* Windows */ in BMK_benchCLevel() local
637 if (!pch) pch = strrchr(displayName, '/'); /* Linux */ in BMK_benchCLevel()
638 if (pch) displayName = pch+1; in BMK_benchCLevel()
/third_party/backends/backend/
H A Dsm3600-scanutil.c112 DumpBuffer(fh,pch,cch)
117 void DumpBuffer(FILE *fh, const char *pch, int cch) in DumpBuffer() argument
127 fprintf(fh," %02X",(unsigned char)pch[i]); in DumpBuffer()
H A Dsm3600.h259 __SM3600EXPORT__ void DumpBuffer(FILE *fh, const char *pch, int cch);
/third_party/selinux/libselinux/utils/
H A DMakefile26 -Wredundant-decls -Wnested-externs -Winline -Winvalid-pch -Wvolatile-register-var \
/third_party/node/tools/gyp/pylib/gyp/
H A Dmsvs_emulation.py561 # only be for the same language (i.e. C vs. C++), so only include the pch
566 pch = self.msvs_precompiled_header[config]
567 pchbase = os.path.split(pch)[1]
568 return ["/Yu" + pch, "/FI" + pch, "/Fp${pchprefix}." + pchbase + ".pch"]
1049 returns a list of the pch files that should be depended upon. The
1070 for the pch compilation step."""
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmsvs_emulation.py558 # only be for the same language (i.e. C vs. C++), so only include the pch
563 pch = self.msvs_precompiled_header[config]
564 pchbase = os.path.split(pch)[1]
565 return ["/Yu" + pch, "/FI" + pch, "/Fp${pchprefix}." + pchbase + ".pch"]
1040 returns a list of the pch files that should be depended upon. The
1061 for the pch compilation step."""
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSimpleDateFormat.java2533 char pch = patl.charAt(idx); in parse()
2534 if (PatternProps.isWhiteSpace(pch) || UCharacter.isUWhiteSpace(pch)) in parse()
2839 char pch = patternLiteral.charAt(idx); in matchLiteral()
2841 if ((PatternProps.isWhiteSpace(pch) || UCharacter.isUWhiteSpace(pch)) in matchLiteral()
2855 } else if (pch != ich) { in matchLiteral()
2865 } else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE)) { in matchLiteral()
/third_party/python/Modules/
H A Dsocketmodule.c5616 char **pch; local
5660 for (pch = h->h_aliases; *pch != NULL; pch++) {
5662 tmp = PyUnicode_FromString(*pch);
5674 for (pch = h->h_addr_list; *pch != NULL; pch++) {
5687 memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr));
5690 if (pch
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DSimpleDateFormat.java2510 char pch = patl.charAt(idx); in parse()
2511 if (PatternProps.isWhiteSpace(pch)) in parse()
2820 char pch = patternLiteral.charAt(idx); in matchLiteral()
2822 if (PatternProps.isWhiteSpace(pch) in matchLiteral()
2834 } else if (pch != ich) { in matchLiteral()
2844 } else if ((pch == ' ' || pch == '.') && getBooleanAttribute(DateFormat.BooleanAttribute.PARSE_ALLOW_WHITESPACE)) { in matchLiteral()
/third_party/skia/third_party/externals/libpng/projects/owatcom/
H A Dpngconfig.mak154 $(DELETE) *.obj *.mbr *.sym *.err *.pch libpng.mk
/third_party/selinux/libselinux/src/
H A DMakefile80 -Wredundant-decls -Wnested-externs -Winline -Winvalid-pch -Wvolatile-register-var \
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dninja.py487 pch = None
492 pch = gyp.msvs_emulation.PrecompiledHeader(
500 pch = gyp.xcode_emulation.MacPrefixHeader(
511 pch,
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dninja.py487 pch = None
492 pch = gyp.msvs_emulation.PrecompiledHeader(
500 pch = gyp.xcode_emulation.MacPrefixHeader(
511 pch,
/third_party/rust/crates/bindgen/bindgen/
H A Dclang.rs1680 /// The `pch` parameter controls whether declarations in pre-compiled
1684 pub fn new(pch: bool, diag: bool) -> Index { in new()
1687 x: clang_createIndex(pch as c_int, diag as c_int), in new()

Completed in 44 milliseconds

12