Searched refs:val_x (Results 1 – 12 of 12) sorted by relevance
/external/clang/test/SemaCXX/ |
D | cxx0x-initializer-constructor.cpp | 341 void val_x(X); // expected-note 2 {{parameter}} 343 val_x({1}); in call_val_x() 344 val_x(X{1}); // expected-error {{call to deleted constructor}} in call_val_x() 345 call<X>(val_x); // expected-note {{instantiation of}} in call_val_x() 357 val_x({1}); in h() 358 val_x(X{1}); // expected-error {{call to deleted constructor}} in h()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | cxx0x-initializer-constructor.cpp | 343 void val_x(X); // expected-note 2 {{parameter}} 345 val_x({1}); in call_val_x() 346 val_x(X{1}); // expected-error {{call to deleted constructor}} in call_val_x() 347 call<X>(val_x); // expected-note {{instantiation of}} in call_val_x() 359 val_x({1}); in h() 360 val_x(X{1}); // expected-error {{call to deleted constructor}} in h()
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | training_arrays_v1.py | 635 val_x, val_y, val_sample_weights = model._prepare_validation_data( 638 (x, y, sample_weights, val_x, val_y, val_sample_weights 645 val_x, val_y, val_sample_weights = None, None, None 656 val_inputs=val_x,
|
D | training_utils_v1.py | 1844 x, val_x = (generic_utils.slice_arrays(x, 0, split_at), 1855 return x, y, sample_weights, val_x, val_y, val_sample_weights 1879 val_x = validation_data 1884 val_x, val_y = validation_data # pylint: disable=unpacking-non-sequence 1887 val_x, val_y, val_sample_weight = validation_data, None, None 1890 val_x, val_y, val_sample_weight = validation_data # pylint: disable=unpacking-non-sequence 1892 val_x, val_y, val_sample_weight = validation_data, None, None 1902 val_x, val_y, val_sample_weight = validation_data, None, None 1903 return val_x, val_y, val_sample_weight
|
D | training_distributed_v1.py | 634 val_x, val_y, val_sample_weights = ( 636 dist_utils.validate_inputs(val_x, val_y) 638 model._distribution_strategy, val_x, batch_size, validation_steps, 642 val_x, val_y,
|
D | training_generator_v1.py | 761 (x, y, sample_weights, val_x, val_y, 765 validation_data = (val_x, val_y, val_sample_weights)
|
D | data_adapter_test.py | 1043 (train_x, train_y, train_sw), (val_x, val_y, val_sw) = ( 1050 val_x = ops.convert_to_tensor_v2_with_dispatch(val_x) 1058 self.assertEqual(val_x.numpy().tolist(), [4])
|
D | training.py | 1092 val_x, val_y, val_sample_weight = ( 1172 x=val_x, 1185 x=val_x,
|
D | training_v1.py | 1383 val_x, val_y, val_sample_weights = training_utils_v1.unpack_validation_data( 1386 val_x,
|
/external/llvm-project/libclc/generic/lib/math/ |
D | clc_ldexp.cl | 56 int val_x = val_ui; 91 val_f = isnan(x) | isinf(x) | val_x == 0 ? x : val_f;
|
/external/libxaac/decoder/ |
D | ixheaacd_drc_freq_dec.c | 932 int val_x, val_y; in ixheaacd_drc_apply() local 935 val_x = ((UWORD8)pstr_drc_data->drc_fac_dvb[drc_band]) >> 4; in ixheaacd_drc_apply() 938 compression_factor = (FLOAT32)(48.164 - 6.0206 * val_x - 0.4014 * val_y); in ixheaacd_drc_apply()
|
/external/tensorflow/tensorflow/python/keras/ |
D | callbacks_test.py | 160 val_x, val_y = np.ones((4, 10)), np.ones((4, 1)) 167 validation_data=(val_x, val_y),
|