| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/fatcat/fatcat/ |
| H A D | 0001-Replace-std-ptr_fun-for-c-17.patch | 12 | s.erase(find_if(s.rbegin(), s.rend(), not1(ptr_fun<int, int>(isspace))).base(), s.end()); 16 Also use 'unsigned char' parameter to std::isspace, for reason see [1] 18 [1] https://en.cppreference.com/w/cpp/string/byte/isspace#Notes 34 - s.erase(s.begin(), find_if(s.begin(), s.end(), not1(ptr_fun<int, int>(isspace)))); 35 + s.erase(s.begin(), find_if(s.begin(), s.end(), [](unsigned char c) {return !isspace(c);})); 41 - s.erase(find_if(s.rbegin(), s.rend(), not1(ptr_fun<int, int>(isspace))).base(), s.end()); 42 + s.erase(find_if(s.rbegin(), s.rend(), [](unsigned char c) {return !isspace(c);}).base(), s.end()…
|
| /openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/dracut/dracut/ |
| H A D | 0001-feat-dracut-install-split-ldd-command-arguments-for-.patch | 43 + while (isspace(ldd[pos])) 46 + if (isspace(ldd[pos])) { 49 + while (isspace(ldd[pos])) 58 + while (isspace(ldd[pos])) 62 + while (ldd[pos] && !isspace(ldd[pos])) 73 + while (isspace(ldd[pos]))
|
| /openbmc/u-boot/lib/ |
| H A D | linux_string.c | 22 while (isspace(*str)) in skip_spaces() 46 while (end >= s && isspace(*end)) in strim()
|
| H A D | slre.c | 569 if (*ofs < len && isspace(((unsigned char *)s)[*ofs])) { in match() 578 !isspace(((unsigned char *)s)[*ofs])) { in match()
|
| /openbmc/ipmitool/src/ |
| H A D | ipmishell.c | 151 if (isspace((int)*ptr)) in ipmi_shell_main() 159 if (isspace((int)*ptr)) in ipmi_shell_main() 437 if (isspace((int)*ptr)) in ipmi_exec_main() 445 if (isspace((int)*ptr)) in ipmi_exec_main() 455 while (isspace((int)*ptr) && ptr >= buf) in ipmi_exec_main() 458 while (isspace((int)*ptr)) in ipmi_exec_main()
|
| /openbmc/qemu/chardev/ |
| H A D | testdev.c | 63 while (isspace(c)) { in DECLARE_INSTANCE_CHECKER() 73 while (isspace(c)) { in DECLARE_INSTANCE_CHECKER()
|
| /openbmc/phosphor-networkd/src/ |
| H A D | config_parser.cpp | 125 constexpr bool isspace(char c) noexcept in isspace() function 138 for (; idx > 0 && isspace(str[idx - 1]); idx--) in removePadding() 143 for (; idx < str.size() && isspace(str[idx]); idx++) in removePadding() 172 if (!isspace(c)) in pumpSection() 241 else if (!isspace(c)) in pump()
|
| H A D | util.cpp | 99 while (!interface.empty() && std::isspace(interface.front())) in parseInterfaces() 103 while (!interface.empty() && std::isspace(interface.back())) in parseInterfaces()
|
| /openbmc/u-boot/cmd/ |
| H A D | ini.c | 43 while (p > s && isspace(*--p)) in rstrip() 51 while (*s && isspace(*s)) in lskip() 64 was_whitespace = isspace(*s); in find_char_or_comment()
|
| /openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman/ |
| H A D | 0002-resolve-musl-does-not-implement-res_ninit.patch | 73 + if (strncmp(line, "nameserver", 10) || !isspace(line[10])) 75 + for (s = &line[11]; isspace(s[0]); s++); 76 + for (i = 0; s[i] && !isspace(s[i]); i++);
|
| /openbmc/u-boot/include/bedbug/ |
| H A D | bedbug.h | 13 #define isblank(c) isspace((int)(c))
|
| /openbmc/qemu/include/qemu/ |
| H A D | ctype.h | 19 #define qemu_isspace(c) isspace((unsigned char)(c))
|
| /openbmc/obmc-console/ |
| H A D | config.c | 255 while (*suffix && isspace(*suffix)) { in config_parse_bytesize() 276 while (*suffix && (tolower(*suffix) == 'b' || isspace(*suffix))) { in config_parse_bytesize()
|
| /openbmc/openbmc/meta-openembedded/contrib/ |
| H A D | oe-stylize.py | 308 return not line.isspace() or line == "\n" 389 if line.isspace() or line == '':
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-test/googletest/googletest/ |
| H A D | gtest-ciso646.patch | 26 #include <ctype.h> // for isspace, etc
|
| /openbmc/u-boot/include/linux/ |
| H A D | ctype.h | 30 #define isspace(c) ((__ismask(c)&(_S)) != 0) macro
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/ |
| H A D | 0005-ethernet.c-remove-it.patch | 87 - } while (isspace(c) && c != '\n'); 168 - } while (!isspace(c) && c != EOF && --d > 0);
|
| /openbmc/openpower-pnor-code-mgmt/ |
| H A D | version.cpp | 126 [](int c) { return !std::isspace(c); })); in getVersions()
|
| /openbmc/u-boot/scripts/kconfig/ |
| H A D | conf.c | 62 while ((isspace(*p))) in strip() 70 while ((isspace(*p))) in strip()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/ |
| H A D | 0005-adb-add-base64-implementation.patch | 242 + if (isspace(ch)) /* Skip whitespace anywhere. */ 312 + if (!isspace(ch)) 327 + if (!isspace(ch))
|
| /openbmc/u-boot/fs/reiserfs/ |
| H A D | reiserfs.c | 735 while (dirname[len] && !isspace (dirname[len])) in reiserfs_dir() 784 if (! *dirname || isspace (*dirname)) in reiserfs_dir() 817 for (rest = dirname; (ch = *rest) && ! isspace (ch) && ch != '/'; rest++); in reiserfs_dir()
|
| /openbmc/ipmitool/lib/ |
| H A D | ipmi_event.c | 531 while (isspace((int)*ptr) && ptr >= buf) in ipmi_event_fromfile() 534 while (isspace((int)*ptr)) in ipmi_event_fromfile()
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netcat/netcat-openbsd/ |
| H A D | 0001-bundle-own-base64-encode-decode-functions.patch | 251 + if (isspace(ch)) /* Skip whitespace anywhere. */ 321 + if (!isspace(ch)) 336 + if (!isspace(ch))
|
| /openbmc/u-boot/drivers/net/phy/ |
| H A D | cortina.c | 205 if (isspace(line_temp[i++])) in cs4340_upload_firmware()
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/tftp-hpa/files/ |
| H A D | tftp-0.49-cmd_arg.patch | 163 while (*cp != '\0' && !isspace(*cp))
|