Searched refs:val_b (Results 1 - 7 of 7) sorted by relevance
/third_party/mbedtls/tests/scripts/ |
H A D | generate_bignum_tests.py | 149 def __init__(self, val_a, val_b) -> None: 150 super().__init__(val_a, val_b) 164 def __init__(self, val_a, val_b) -> None: 165 super().__init__(val_a.strip("-"), val_b.strip("-")) 181 def __init__(self, val_a: str, val_b: str) -> None: 182 super().__init__(val_a, val_b)
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | struct_containing_forward_declared_struct.rs | 46 pub val_b: ::std::os::raw::c_int, 64 unsafe { ::std::ptr::addr_of!((*ptr).val_b) as usize - ptr as usize }, in bindgen_test_layout_b() 66 concat!("Offset of field: ", stringify!(b), "::", stringify!(val_b)) in bindgen_test_layout_b()
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | bignum_common.py | 129 def __init__(self, val_a: str, val_b: str = "0", bits_in_limb: int = 32) -> None: 131 self.val_b = val_b 135 self.int_b = hex_to_int(val_b) 183 return self.format_arg(self.val_b) 293 def __init__(self, val_n: str, val_a: str, val_b: str = "0", 295 super().__init__(val_a=val_a, val_b=val_b, bits_in_limb=bits_in_limb)
|
H A D | bignum_core.py | 232 def __init__(self, val_a: str, val_b: str, val_s: str) -> None: 233 super().__init__(val_a, val_b) 656 self, val_a: str, val_b: str, val_n: str, case_description: str = "" 661 self.arg_b = val_b 662 self.int_b = bignum_common.hex_to_int(val_b) 871 return self.val_b
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | struct_containing_forward_declared_struct.h | 7 int val_b; member
|
/third_party/icu/icu4c/source/test/perf/collperf/ |
H A D | collperf.cpp | 277 int val_b = 0; in q_random() local 279 while (*key_b != 0) {val_b += val_b*37 + *key_b++;} in q_random() 280 return val_a - val_b; in q_random()
|
/third_party/backends/backend/ |
H A D | mustek.c | 2436 SANE_Int color, factor, val_a, val_b; in send_gamma_table_se() local 2463 val_b = s->gamma_table[0][0]; in send_gamma_table_se() 2469 val_b = s->gamma_table[0][s->gamma_table[color][0]]; in send_gamma_table_se() 2472 val_a = MAX (2 * val_b - val_a, 0); in send_gamma_table_se() 2477 *cp++ = CLIP (((factor - j) * val_a + j * val_b in send_gamma_table_se() 2485 val_b = s->gamma_table[0][i]; in send_gamma_table_se() 2491 val_b = s->gamma_table[0][s->gamma_table[color][i]]; in send_gamma_table_se() 2496 *cp++ = CLIP (((factor - j) * val_a + j * val_b in send_gamma_table_se()
|
Completed in 12 milliseconds