Searched refs:test_case (Results 1 – 8 of 8) sorted by relevance
/packages/modules/NeuralNetworks/runtime/test/specs/V1_2/ |
D | slice.mod.py | 98 for test_case in test_cases: 99 model = Model().Operation("SLICE", test_case.inp, test_case.begin, 100 test_case.size).To(test_case.output) 102 test_case.inp: test_case.inp_data, 103 test_case.begin: test_case.begin_data, 104 test_case.size: test_case.size_data, 105 test_case.output: test_case.output_data,
|
D | topk_v2.mod.py | 74 for test_case in test_cases: 75 model = Model().Operation("TOPK_V2", test_case.inp, test_case.k).To( 76 test_case.out_values, test_case.out_indices) 78 test_case.inp: test_case.inp_data, 79 test_case.out_values: test_case.out_values_data, 80 test_case.out_indices: test_case.out_indices_data
|
/packages/modules/Bluetooth/tools/rootcanal/lmp/src/ |
D | ec.rs | 446 for test_case in P192_TEST_CASES { in p192() 447 let priv_a = BigInt::parse_bytes(&test_case.priv_a, 16).unwrap(); in p192() 448 let priv_b = BigInt::parse_bytes(&test_case.priv_b, 16).unwrap(); in p192() 451 assert_eq!(pub_a.get_x().unwrap(), BigInt::parse_bytes(&test_case.pub_a, 16).unwrap()); in p192() 453 assert_eq!(shared.get_x().unwrap(), BigInt::parse_bytes(&test_case.dh_x, 16).unwrap()); in p192() 460 for test_case in P256_TEST_CASES { in p256() 461 let priv_a = BigInt::parse_bytes(&test_case.priv_a, 16).unwrap(); in p256() 462 let priv_b = BigInt::parse_bytes(&test_case.priv_b, 16).unwrap(); in p256() 465 assert_eq!(pub_a.get_x().unwrap(), BigInt::parse_bytes(&test_case.pub_a, 16).unwrap()); in p256() 467 assert_eq!(shared.get_x().unwrap(), BigInt::parse_bytes(&test_case.dh_x, 16).unwrap()); in p256()
|
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/ |
D | context.py | 193 def __init__(self, test_class, test_case): argument 201 self.test_case = test_case 205 return self.test_case
|
/packages/modules/Bluetooth/tools/pdl/src/ |
D | pdl.pest | 100 test_case = { string } 101 test_case_list = _{ test_case ~ ("," ~ test_case)* ~ ","? }
|
/packages/modules/Bluetooth/system/gd/packet/parser/ |
D | language_y.yy | 102 %type<test_case_t> test_case; 245 : test_case 251 | test_case_list ',' test_case 258 test_case
|
D | packet_def.cc | 1424 for (const auto& test_case : test_cases_) { in GenRustBuilderTest() local 1427 s << "b\"" << test_case << "\","; in GenRustBuilderTest()
|
/packages/modules/Bluetooth/system/gd/packet/parser/doc/ |
D | reference.md | 240 > test_case (`,` test_case)* `,`? 242 > test_case:\
|