Home
last modified time | relevance | path

Searched refs:pch (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Ddynload_win.c135 char *pch; local
139 pch = import_name + 6;
141 while (*pch && pch[0] != '_' && pch[1] != 'd' && pch[2] != '.') {
143 while (*pch && *pch != '.') {
145 if (*pch >= '0' && *pch <= '9') {
146 pch++;
148 pch = NULL;
153 if (pch) {
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dinet_pton.c132 const char *pch; in inet_pton4() local
134 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
135 u_int new = *tp * 10 + (u_int)(pch - digits); in inet_pton4()
197 const char *pch; in inet_pton6() local
199 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6()
200 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
201 if (pch != NULL) { in inet_pton6()
203 val |= (pch - xdigits); in inet_pton6()
Dres_comp.c181 int pch = PERIOD, ch = *dn++; in res_hnok() local
188 } else if (periodchar(pch)) { in res_hnok()
198 pch = ch; in res_hnok()
/device/google/trout/hal/sensors/2.0/
Diio_utils.cpp178 char* pch = strtok_r(const_cast<char*>(line.c_str()), " ,", &rest); in get_sampling_frequency_available() local
179 while (pch != nullptr) { in get_sampling_frequency_available()
180 sfa->push_back(atof(pch)); in get_sampling_frequency_available()
181 pch = strtok_r(nullptr, " ,", &rest); in get_sampling_frequency_available()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsocketmodule.c3301 char **pch; local
3349 for (pch = h->h_aliases; *pch != NULL; pch++) {
3351 tmp = PyString_FromString(*pch);
3363 for (pch = h->h_addr_list; *pch != NULL; pch++) {
3376 memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr));
3379 if (pch == h->h_addr_list && alen >= sizeof(sin))
3393 memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr));
3397 if (pch == h->h_addr_list && alen >= sizeof(sin6))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsocketmodule.c3219 char **pch; local
3267 for (pch = h->h_aliases; *pch != NULL; pch++) {
3269 tmp = PyString_FromString(*pch);
3281 for (pch = h->h_addr_list; *pch != NULL; pch++) {
3294 memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr));
3297 if (pch == h->h_addr_list && alen >= sizeof(sin))
3311 memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr));
3315 if (pch == h->h_addr_list && alen >= sizeof(sin6))