Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 72) sorted by relevance

123

/test/vts-testcase/kernel/encryption/
Dadiantum.cpp40 __le32 x; in get_unaligned_le32() local
42 memcpy(&x, p, sizeof(x)); in get_unaligned_le32()
43 return le32_to_cpu(x); in get_unaligned_le32()
47 __le32 x = cpu_to_le32(v); in put_unaligned_le32() local
49 memcpy(p, &x, sizeof(x)); in put_unaligned_le32()
53 __le64 x = cpu_to_le64(v); in put_unaligned_le64() local
55 memcpy(p, &x, sizeof(x)); in put_unaligned_le64()
116 static void ChaChaPermute(uint32_t x[16], int nrounds) { in ChaChaPermute()
119 CHACHA_QUARTERROUND(x[0], x[4], x[8], x[12]); in ChaChaPermute()
120 CHACHA_QUARTERROUND(x[1], x[5], x[9], x[13]); in ChaChaPermute()
[all …]
/test/mlts/benchmark/results/
Dgenerate_result.py178 baseline = next(filter(lambda x: x.backend_type == BASELINE_BACKEND,
180 other = sorted(filter(lambda x: x is not baseline, results),
181 key=lambda x: x.backend_type)
229 (start_sec + x * time_freq_step_sec) * 1000.0)
230 for x in range(left_to_pad)], [0] * left_to_pad)
233 (end_time + x * time_freq_step_sec) * 1000.0)
234 for x in range(right_to_pad)], [0] * right_to_pad)
240 (time_freq_start_sec + x * time_freq_step_sec) * 1000.0)
241 for x in range(len(time_freq_sec))], time_freq_sec)
294 val = [float(x) * 100.0 for x in result.evaluator_values]
[all …]
DChart.bundle.min.js10x(t){var e,i=t[0],n=t[1],a=t[2];return(e=360*Math.atan2(a,n)/2/Math.PI)<0&&(e+=360),[i,Math.sqrt(n… property
/test/vts-testcase/vndk/dependency/
DVtsVndkDependencyTest.py125 self._sp_hal = [re.compile(x) for x in sp_hal_strings]
149 if not any(elf.MatchCpuAbi(x) for x in abi_list):
346 vendor_link_paths = [vndk_utils.FormatVndkPath(x, bitness) for
347 x in self._VENDOR_LINK_PATHS]
358 sp_hal_link_paths = [vndk_utils.FormatVndkPath(x, bitness) for
359 x in self._SP_HAL_LINK_PATHS]
367 if any(x.match(obj.target_path) for x in self._sp_hal):
371 bitness, ", ".join(x.name for x in sp_hal_libs))
382 bitness, ", ".join(x.name for x in vndk_sp_ext_deps))
439 error_lines = ["%s: %s" % (x[0], x[1]) for x in read_errors]
[all …]
Dvts_vndk_dependency_test.py129 self._sp_hal = [re.compile(x) for x in sp_hal_strings]
153 if not any(elf.MatchCpuAbi(x) for x in abi_list):
366 vendor_link_paths = [vndk_utils.FormatVndkPath(x, bitness) for
367 x in self._VENDOR_LINK_PATHS]
378 sp_hal_link_paths = [vndk_utils.FormatVndkPath(x, bitness) for
379 x in self._SP_HAL_LINK_PATHS]
387 if any(x.match(obj.target_path) for x in self._sp_hal):
391 bitness, ", ".join(x.name for x in sp_hal_libs))
402 bitness, ", ".join(x.name for x in vndk_sp_ext_deps))
459 error_lines = ["%s: %s" % (x[0], x[1]) for x in read_errors]
[all …]
/test/vti/test_serving/gae/webapp/src/endpoint/
Dendpoint_base.py58 return [x for x in resource_attrs if x in reference_attrs]
80 x[0] for x in value.__dict__.items()
81 if not x[0].startswith("_")
89 x.name for x in value.all_fields()
91 value.get_assigned_value(x.name) not in [None, []])
95 x for x in list(value.to_dict())
97 getattr(value, x, None) not in [None, []])
159 x for x in entities
160 if all([not getattr(x, attr) for attr in empty_repeated_field])
Djob_queue.py54 key=lambda x: (Status.GetPriorityValue(x.priority), x.timestamp))
101 x for x in existing_jobs if set(x.serial) == set(request.serial)
/test/vts-testcase/kernel/linux_kselftest/
Dkselftest_config.py34 KSFT_CASES_PRESUBMIT = map(lambda x: test_case.LinuxKselftestTestcase(*(x)), [
37 KSFT_CASES_STABLE = map(lambda x: test_case.LinuxKselftestTestcase(*(x)), [
76 KSFT_CASES_STAGING = map(lambda x: test_case.LinuxKselftestTestcase(*(x)), [
/test/vti/test_serving/gae/webapp/src/scheduler/
Dschedule_worker.py180 builds.sort(key=lambda x: x.build_id, reverse=True)
210 schedules.sort(key=lambda x: self.GetProductName(x))
214 lambda x: self.GetProductName(x))
217 group.sort(key=lambda x: x.priority_value if (
218 x.priority_value) else Status.GetPriorityValue(x.priority))
482 x for x in host_devices
483 if x.product.lower() == target_product_type.lower() and
485 x.device_equipment))
496 key=lambda x: (len(x.device_equipment)
497 if x.device_equipment else 0))
[all …]
Ddevice_heartbeat.py51 x for x in devices
52 if (datetime.datetime.now() - x.timestamp
77 x for x in lab.admin
78 if x not in labs_to_alert[lab.name]["_recipients"]
/test/vts/utils/python/coverage/testdata/
Dsample.c10 int x, y; local
11 x = 100;
13 testFunctionName(x + y);
15 printf("The value of x is %d. \n", x);
17 if (x > y) {
/test/vts-testcase/vndk/golden/
Dvndk_data.py107 abi_dir = next(x[0] for x in _ABI_LIST if abi_name.startswith(x[0]))
170 arch_name = next(x[2] for x in _ABI_LIST if
171 abi_name.startswith(x[0]) and x[1] == abi_bitness)
266 vndk_lists = tuple([] for x in tags)
305 vndk_lists = tuple([] for x in tags)
/test/vts/testcases/host/kernel_proc_file_api_test/proc_tests/
DProcUidConcurrentTimeTests.py58 no_repeated_uids = len(set(x[0] for x in times)) == len(times)
86 p[0] = sum(int(x) for x in p[1])
104 no_repeated_uids = len(set(x[0] for x in times)) == len(times)
DProcQtaguidCtrlTest.py38 if any(map(lambda x: x < 0, parsed)):
49 if any(map(lambda x: x < 0, parsed)):
/test/vts/tools/vts-core-tradefed/tests/src/com/android/compatibility/tradefed/util/
DTargetFileUtilsTest.java42 for (int x = 0; x <= 7; x++) { in testHasPermission()
45 String permission = "" + x + y + z; in testHasPermission()
47 if (hasPermission(x, FilePermission.READ) in testHasPermission()
53 if (hasPermission(x, FilePermission.WRITE) in testHasPermission()
59 if (hasPermission(x, FilePermission.EXECUTE) in testHasPermission()
/test/vts-testcase/kernel/ltp/testcase/tools/common/
Dlist_utils.py41 x for x in itertools.chain(*lists) if not (x in seen or seen.add(x))
/test/vti/test_serving/gae/webapp/src/utils/
Demail_util.py126 x for x in lab.admin
127 if x not in labs_to_alert[lab.name]["_recipients"]
217 recipients.extend([x for x in lab.admin if x not in recipients])
287 x for x in address
288 if any(pattern.match(x) for pattern in verify_patterns)
/test/vts-testcase/vndk/files/
DVtsVndkFilesTest.py100 unexpected = [x for x in self._ListFiles(vndk_dir) if
101 path_utils.TargetBaseName(x) not in vndk_set]
121 unexpected = [x for x in self._ListFiles(vndk_dir) if
122 path_utils.TargetBaseName(x) in vndk_set]
Dvts_vndk_files_test.py95 unexpected = [x for x in self._ListFiles(vndk_dir) if
96 target_path_module.basename(x) not in vndk_set]
116 unexpected = [x for x in self._ListFiles(vndk_dir) if
117 target_path_module.basename(x) in vndk_set]
/test/vts/utils/python/performance/
Dbenchmark_parser.py81 return [int(float(x[self._REAL_TIME])) for x in self._benchmarks]
93 table.append([record[x] for x in table[0]])
/test/vts/testcases/template/llvmfuzzer_test/
Dllvmfuzzer_test.py52 self._testcases = map(lambda x: str(x), self.fuzzer_configs.keys())
105 lambda x: path_utils.JoinTargetPath(config.FUZZER_SPEC_DIR, x),
255 name_func=lambda x: x.split("/")[-1])
/test/vts-testcase/fuzz/iface_fuzzer/
DProtoFuzzerStaticParams.cpp24 #define STRINGIFY(x) STRINGIFY_INTERNAL(x) argument
25 #define STRINGIFY_INTERNAL(x) #x argument
/test/vti/test_serving/gae/webapp/src/tasks/
Dremoving_outdated_devices_test.py80 self.assertTrue(device_a_serial not in [x.serial for x in devices])
94 self.assertTrue(device_b_serial not in [x.serial for x in devices])
/test/vts/utils/python/common/
Dlist_utils.py95 x for x in itertools.chain(*lists) if not (x in seen or seen.add(x))
/test/vts/proto/
DTestSchedulingPolicyMessage_pb2.py5 _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))

123