/vendor/hisilicon/hispark_pegasus/demo/oledplayer_demo/oled/ |
H A D | img2code.py | 87 sep = '\n' if (i+1) % (TARGET_WIDTH/PIXEL_PER_BYTE) == 0 else ' ' 88 f.write('0x%02X,%s' % (v, sep))
|
/vendor/hisilicon/hispark_pegasus/demo/ssd1306_demo/ |
H A D | img2code.py | 88 sep = '\n' if (i+1) % (TARGET_WIDTH/PIXEL_PER_BYTE) == 0 else ' ' 89 f.write('0x%02X,%s' % (v, sep))
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_join.c | 93 char *sep, *next, *p; in parse_maps() local 101 if (!(sep = strchr(cur, '-'))) { in parse_maps() 106 *sep++ = 0; in parse_maps() 109 out_ch_idx = av_channel_layout_index_from_string(&s->ch_layout, sep); in parse_maps() 111 av_log(ctx, AV_LOG_ERROR, "Invalid output channel: %s.\n", sep); in parse_maps() 119 "'%s'.\n", sep); in parse_maps()
|
/third_party/libcoap/examples/ |
H A D | oscore-interop-server.c | 552 char *sep = strchr(arg, ','); in cmdline_oscore() local 554 if (sep) in cmdline_oscore() 555 *sep = '\000'; in cmdline_oscore() 558 if (sep) { in cmdline_oscore() 559 sep++; in cmdline_oscore() 560 oscore_seq_save_file = sep; in cmdline_oscore()
|
/third_party/python/Tools/scripts/ |
H A D | freeze_modules.py | 100 ntpath.join(*path.split(os.path.sep)), 101 ntpath.join(*base.split(os.path.sep)), 109 posixpath.join(*path.split(os.path.sep)), 110 posixpath.join(*base.split(os.path.sep)), 355 _modname, sep, match = modname.rpartition('.') 356 if sep:
|
/third_party/python/Python/ |
H A D | preconfig.c | 574 wchar_t *sep = wcschr(option, L'='); in _Py_get_xoption() local 575 if (sep != NULL) { in _Py_get_xoption() 576 len = (sep - option); in _Py_get_xoption() 605 wchar_t *sep = wcschr(xopt, L'='); in preconfig_init_utf8_mode() local 606 if (sep) { in preconfig_init_utf8_mode() 607 xopt = sep + 1; in preconfig_init_utf8_mode()
|
/third_party/libuv/src/ |
H A D | strtok.h | 25 char* uv__strtok(char* str, const char* sep, char** itr);
|
/third_party/node/deps/uv/src/ |
H A D | strtok.h | 25 char* uv__strtok(char* str, const char* sep, char** itr);
|
/third_party/python/Lib/test/ |
H A D | test_pathlib.py | 30 sep = self.flavour.sep 32 actual = f([x.replace('/', sep) for x in arg]) 40 sep = self.flavour.sep 59 check(['/a/b'], ('', sep, [sep, 'a', 'b'])) 60 check(['/a', 'b'], ('', sep, [sep, 'a', 'b'])) 61 check(['/a/', 'b'], ('', sep, [se [all...] |
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
H A D | DecimalFormatSymbolsICU.java | 181 public void setMonetaryDecimalSeparator(char sep) { in setMonetaryDecimalSeparator() argument 182 fIcuDecfs.setMonetaryDecimalSeparator(sep); in setMonetaryDecimalSeparator()
|
/third_party/python/Lib/ctypes/ |
H A D | _aix.py | 61 def _last_version(libnames, sep): 64 parts = libname.split(sep)
|
/third_party/python/Lib/ |
H A D | zipapp.py | 122 mod, sep, fn = main.partition(':') 125 if not (sep == ':' and mod_ok and fn_ok):
|
H A D | tabnanny.py | 33 sep = "" 35 sys.stderr.write(sep + str(arg)) 36 sep = " "
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/selftests/ |
H A D | i915_selftest.c | 245 char *filter, *sep, *tok; in apply_subtest_filter() local 249 for (sep = filter; (tok = strsep(&sep, ","));) { in apply_subtest_filter()
|
/kernel/linux/linux-6.6/drivers/mtd/spi-nor/ |
H A D | debugfs.c | 60 bool sep = false; in spi_nor_print_flags() local 66 if (sep) in spi_nor_print_flags() 68 sep = true; in spi_nor_print_flags()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/selftests/ |
H A D | i915_selftest.c | 277 char *filter, *sep, *tok; in apply_subtest_filter() local 281 for (sep = filter; (tok = strsep(&sep, ","));) { in apply_subtest_filter()
|
/kernel/linux/linux-6.6/tools/testing/selftests/mm/ |
H A D | run_vmtests.sh | 189 local sep=$(echo -n "$title" | tr "[:graph:][:space:]" -) 190 printf "%s\n%s\n%s\n" "$sep" "$title" "$sep"
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | _packager.py | 88 path.replace("/", os.path.sep)) 181 chapterName = chapter.rsplit(os.path.sep, 1)[1] 200 testName=testName.rsplit(os.path.sep, 1)[1]
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | loaders.py | 28 path.sep in piece 207 .strip(os.path.sep) 208 .replace(os.path.sep, "/")
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | loaders.py | 28 if path.sep in piece \ 196 [len(searchpath):].strip(os.path.sep) \ 197 .replace(os.path.sep, '/')
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | loaders.py | 28 path.sep in piece 207 .strip(os.path.sep) 208 .replace(os.path.sep, "/")
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | symbol.c | 662 char *sep, *endptr; in modules__parse() local 680 sep = strrchr(line, 'x'); in modules__parse() 681 if (sep == NULL) in modules__parse() 684 hex2u64(sep + 1, &start); in modules__parse() 686 sep = strchr(line, ' '); in modules__parse() 687 if (sep == NULL) in modules__parse() 690 *sep = '\0'; in modules__parse() 694 size = strtoul(sep + 1, &endptr, 0); in modules__parse() 2586 char *sep; in setup_addrlist() local 2596 val = strtoul(pos->s, &sep, 1 in setup_addrlist() [all...] |
/kernel/linux/linux-6.6/fs/smb/client/ |
H A D | dfs_cache.c | 562 char sep = *s; in lookup_cache_entry() local 566 while ((s = strchr(s, sep)) && ++cnt < 3) in lookup_cache_entry() 586 while (e > s && *e == sep) in lookup_cache_entry() 600 while (e > s && *e != sep) in lookup_cache_entry() 1055 char sep; in dfs_cache_get_tgt_share() local 1065 sep = it->it_name[0]; in dfs_cache_get_tgt_share() 1066 if (sep != '\\' && sep != '/') in dfs_cache_get_tgt_share() 1090 ppath[c] = sep; in dfs_cache_get_tgt_share()
|
/third_party/opencl-headers/tests/conan/ |
H A D | conanfile.py | 17 self.run(".%sexample" % os.sep)
|
/third_party/alsa-lib/src/control/ |
H A D | namehint.c | 89 const char *sep; in hint_list_add_custom() local 94 sep = strchr(entry, '|'); in hint_list_add_custom() 95 if (sep == NULL) in hint_list_add_custom() 98 name = strndup(entry, sep - entry); in hint_list_add_custom() 102 err = hint_list_add(list, name, sep + 1); in hint_list_add_custom()
|