Home
last modified time | relevance | path

Searched refs:split (Results 1176 - 1200 of 2339) sorted by relevance

1...<<41424344454647484950>>...94

/third_party/spirv-tools/test/val/
H A Dval_cfg_test.cpp1368 Block split("split", spv::Op::OpBranchConditional); in TEST_P()
1374 if (is_shader) split.SetBody("OpSelectionMerge %exit None\n"); in TEST_P()
1376 std::string str = GetDefaultHeader(GetParam()) + nameOps("split", "f") + in TEST_P()
1380 str += entry >> split; in TEST_P()
1381 str += split >> std::vector<Block>({t, f}); in TEST_P()
1383 str += f >> split; in TEST_P()
1392 MatchesRegex("Back-edges \\('.\\[%f\\]' -> '.\\[%split\\]'\\) can only " in TEST_P()
1403 Block split("split", sp in TEST_P()
[all...]
/kernel/linux/linux-5.10/drivers/crypto/hisilicon/sec/
H A Dsec_algs.c723 bool split = skreq->src != skreq->dst; in sec_alg_skcipher_crypto() local
743 if (split) { in sec_alg_skcipher_crypto()
778 split ? splits_out[i] : NULL, in sec_alg_skcipher_crypto()
779 split ? splits_out_nents[i] : 0, in sec_alg_skcipher_crypto()
849 if (split) in sec_alg_skcipher_crypto()
/kernel/linux/linux-6.6/drivers/crypto/hisilicon/sec/
H A Dsec_algs.c723 bool split = skreq->src != skreq->dst; in sec_alg_skcipher_crypto() local
743 if (split) { in sec_alg_skcipher_crypto()
778 split ? splits_out[i] : NULL, in sec_alg_skcipher_crypto()
779 split ? splits_out_nents[i] : 0, in sec_alg_skcipher_crypto()
849 if (split) in sec_alg_skcipher_crypto()
/kernel/linux/linux-6.6/lib/
H A Ddynamic_debug.c321 pr_info("split into words:"); in ddebug_tokenize()
568 char *split; in ddebug_exec_queries() local
571 for (i = 0; query; query = split) { in ddebug_exec_queries()
572 split = strpbrk(query, ";\n"); in ddebug_exec_queries()
573 if (split) in ddebug_exec_queries()
574 *split++ = '\0'; in ddebug_exec_queries()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUtility.java1111 * @param s the string to split
1112 * @param divider the character on which to split. Occurrences of
1120 public static void split(String s, char divider, String[] output) { in split() method in Utility
1138 * @param s the string to split
1139 * @param divider the character on which to split. Occurrences of
1145 public static String[] split(String s, char divider) { in split() method in Utility
1862 return src.split("\\Q" + target + "\\E"); in splitString()
1869 return src.split("\\s+"); in splitWhitespace()
1892 String[] parts = separator.split(string); in fromHex()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUtility.java1046 * @param s the string to split
1047 * @param divider the character on which to split. Occurrences of
1055 public static void split(String s, char divider, String[] output) { in split() method in Utility
1073 * @param s the string to split
1074 * @param divider the character on which to split. Occurrences of
1080 public static String[] split(String s, char divider) { in split() method in Utility
1766 return src.split("\\Q" + target + "\\E"); in splitString()
1773 return src.split("\\s+"); in splitWhitespace()
1796 String[] parts = separator.split(string); in fromHex()
/third_party/jerryscript/jerry-debugger/
H A Djerry_client_main.py196 self.source = re.split("\r\n|[\r\n]", source)
370 if int(args.split(':', 1)[1]) <= 0:
456 args = args.split(" ")
1152 lines = message.split("\n")
1161 lines = message.split("\n")
/third_party/littlefs/scripts/
H A Dtracebd.py65 # note using split here ensures the trailing string has no newline
66 lines = s.split('\n')
164 # split in two
172 # split in three
899 for x in x.split(',')),
905 for x in x.split(',')),
949 type=lambda x: [x.strip() for x in x.split(',')],
953 type=lambda x: [x.strip() for x in x.split(',')],
/third_party/python/Lib/test/
H A Dtest_zlib.py480 ver = tuple(int(v) for v in zlib.ZLIB_RUNTIME_VERSION.split('.'))
553 words = h.split()
813 v = zlib.ZLIB_RUNTIME_VERSION.split('-', 1)[0].split('.')
878 sources = source.split('\n')
H A Dtest_mailbox.py156 self.assertEqual(self._box.get_bytes(key).split(b'\n'),
157 _bytes_sample_message.split(b'\n'))
164 self.assertEqual(self._box.get_bytes(key).split(b'\n'),
165 self._non_latin_bin_msg.split(b'\n'))
173 self.assertEqual(self._box.get_bytes(key).split(b'\n'),
174 _bytes_sample_message.split(b'\n'))
279 self.assertEqual(self._box.get_string(key1).split('\n'),
280 _sample_message.split('\n'))
759 head, tail = os.path.split(tmp_file.name)
1016 self.assertEqual(self._box.get_string(key1, from_=False).split('\
[all...]
/third_party/python/Lib/
H A Dimaplib.py1065 self.capabilities = tuple(dat.split())
1442 Months = ' Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ')
1501 return tuple(mo.group('flags').split())
1624 else: path = ml.split()[-1]
1633 uid = dat[-1].split()
/third_party/vk-gl-cts/scripts/android/
H A Dbuild_apk.py118 keyValue = list(map(lambda x: x.strip(), line.split("=")))
120 versionParts = keyValue[1].split(".")
133 hostOsParts = hostOsName.split('-')
262 packageComps = self.package.getPackageName(config).split('.')
1003 for abi in abisStr.split(','):
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework.py476 isExtensionSupported = self.apiName in supportedList.split(',')
658 arraySizeList += node.tail.replace(']', ' ').replace('[', ' ').split()
670 arraySizeList = nameTail.split() + arraySizeList
988 dependency = dependency.split(',')[0]
1230 major, minor = api.features[-1].number.split('.')
1458 versionSplit = feature.name.split('_')
2236 vendor = ext.name.split('_')[1]
2376 versionSplit = extension.promotedto.split('_')
2398 versionSplit = feature.name.split('_')
2639 # where 2 is after PROPERTIES - to handle this we need to split suffi
[all...]
/drivers/peripheral/audio/test/sample/tools/get_mem_excel/
H A Dget_mem_excel.py125 fields = line.split()
/kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/plugin-lib/
H A DvalgrindPlugin.py75 cmdlist = command.split()
H A DnsPlugin.py58 cmdlist = command.split()
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
H A Ddibx000_common.h112 } split; member
/kernel/linux/linux-5.10/scripts/gdb/linux/
H A Dutils.py47 return int(str(element[field].address).split()[0], 16)
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_resource.h125 int *split,
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
H A Ddibx000_common.h112 } split; member
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_resource.h128 int *split,
/kernel/linux/linux-6.6/scripts/gdb/linux/
H A Ddmesg.py36 prb_addr = int(str(gdb.parse_and_eval("(void *)'printk.c'::prb")).split()[0], 16)
/kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/plugin-lib/
H A DnsPlugin.py58 cmdlist = command.split()
H A DvalgrindPlugin.py75 cmdlist = command.split()
/kernel/linux/linux-6.6/tools/testing/selftests/exec/
H A Dbinfmt_script.py97 elements = binary.split('/')

Completed in 32 milliseconds

1...<<41424344454647484950>>...94