/third_party/spirv-tools/test/val/ |
H A D | val_cfg_test.cpp | 1368 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 D | sec_algs.c | 723 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 D | sec_algs.c | 723 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 D | dynamic_debug.c | 321 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 D | Utility.java | 1111 * @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 D | Utility.java | 1046 * @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 D | jerry_client_main.py | 196 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 D | tracebd.py | 65 # 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 D | test_zlib.py | 480 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 D | test_mailbox.py | 156 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 D | imaplib.py | 1065 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 D | build_apk.py | 118 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 D | gen_framework.py | 476 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 D | get_mem_excel.py | 125 fields = line.split()
|
/kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/plugin-lib/ |
H A D | valgrindPlugin.py | 75 cmdlist = command.split()
|
H A D | nsPlugin.py | 58 cmdlist = command.split()
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
H A D | dibx000_common.h | 112 } split; member
|
/kernel/linux/linux-5.10/scripts/gdb/linux/ |
H A D | utils.py | 47 return int(str(element[field].address).split()[0], 16)
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn20/ |
H A D | dcn20_resource.h | 125 int *split,
|
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/ |
H A D | dibx000_common.h | 112 } split; member
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn20/ |
H A D | dcn20_resource.h | 128 int *split,
|
/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | dmesg.py | 36 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 D | nsPlugin.py | 58 cmdlist = command.split()
|
H A D | valgrindPlugin.py | 75 cmdlist = command.split()
|
/kernel/linux/linux-6.6/tools/testing/selftests/exec/ |
H A D | binfmt_script.py | 97 elements = binary.split('/')
|