/external/openssh/ |
D | .depend | 5 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 6 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 7 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 8 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 9 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 10 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 11 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 12 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 13 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… 14 …compat/openbsd-compat.h openbsd-compat/base64.h openbsd-compat/sigact.h openbsd-compat/readpassphr… [all …]
|
D | Android.bp | 61 "external/openssh/openbsd-compat", 91 "compat.c", 122 "openbsd-compat/bcrypt_pbkdf.c", 123 "openbsd-compat/bindresvport.c", 124 "openbsd-compat/blowfish.c", 125 "openbsd-compat/bsd-closefrom.c", 126 "openbsd-compat/bsd-err.c", 127 "openbsd-compat/bsd-getpagesize.c", 128 "openbsd-compat/bsd-getpeereid.c", 129 "openbsd-compat/bsd-malloc.c", [all …]
|
/external/tensorflow/tensorflow/python/compat/ |
D | compat_test.py | 23 from tensorflow.python.compat import compat 30 date = compat._FORWARD_COMPATIBILITY_HORIZON # pylint: disable=protected-access 34 …date = compat._FORWARD_COMPATIBILITY_HORIZON + datetime.timedelta(days=n) # pylint: disable=prote… 40 self.assertTrue(compat.forward_compatible(*one_day_before)) 41 self.assertFalse(compat.forward_compatible(*compatibility_date)) 44 with compat.forward_compatibility_horizon(2018, 9, 18): 45 self.assertTrue(compat.forward_compatible(2020, 4, 4)) 50 with compat.forward_compatibility_horizon(*one_day_after): 51 self.assertTrue(compat.forward_compatible(*compatibility_date)) 52 self.assertFalse(compat.forward_compatible(*one_day_after)) [all …]
|
/external/icu/icu4c/source/data/translit/ |
D | Latin_ASCII.txt | 42 IJ → IJ ; # 0132;LATIN CAPITAL LIGATURE IJ (compat) 43 ij → ij ; # 0133;LATIN SMALL LIGATURE IJ (compat) 45 Ŀ → L ; # 013F;LATIN CAPITAL LETTER L WITH MIDDLE DOT (compat) 46 ŀ → l ; # 0140;LATIN SMALL LETTER L WITH MIDDLE DOT (compat) 56 ſ → s ; # 017F;LATIN SMALL LETTER LONG S (compat) 92 DŽ → DZ ; # 01C4;LATIN CAPITAL LETTER DZ WITH CARON (compat) 93 Dž → Dz ; # 01C5;LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON (compat) 94 dž → dz ; # 01C6;LATIN SMALL LETTER DZ WITH CARON (compat) 95 LJ → LJ ; # 01C7;LATIN CAPITAL LETTER LJ (compat) 96 Lj → Lj ; # 01C8;LATIN CAPITAL LETTER L WITH SMALL LETTER J (compat) [all …]
|
/external/tensorflow/tensorflow/examples/speech_commands/ |
D | models.py | 160 saver = tf.compat.v1.train.Saver(tf.compat.v1.global_variables()) 190 dropout_rate = tf.compat.v1.placeholder(tf.float32, name='dropout_rate') 193 weights = tf.compat.v1.get_variable( 195 initializer=tf.compat.v1.truncated_normal_initializer(stddev=0.001), 197 bias = tf.compat.v1.get_variable(name='bias', 198 initializer=tf.compat.v1.zeros_initializer, 256 dropout_rate = tf.compat.v1.placeholder(tf.float32, name='dropout_rate') 264 first_weights = tf.compat.v1.get_variable( 266 initializer=tf.compat.v1.truncated_normal_initializer(stddev=0.01), 268 first_bias = tf.compat.v1.get_variable( [all …]
|
D | train.py | 90 tf.compat.v1.logging.set_verbosity(FLAGS.verbosity) 93 sess = tf.compat.v1.InteractiveSession() 125 input_placeholder = tf.compat.v1.placeholder( 142 ground_truth_input = tf.compat.v1.placeholder( 149 checks = tf.compat.v1.add_check_numerics_ops() 153 with tf.compat.v1.name_scope('cross_entropy'): 154 cross_entropy_mean = tf.compat.v1.losses.sparse_softmax_cross_entropy( 168 with tf.compat.v1.name_scope('train'), tf.control_dependencies( 170 learning_rate_input = tf.compat.v1.placeholder( 173 train_step = tf.compat.v1.train.GradientDescentOptimizer( [all …]
|
D | input_data.py | 38 from tensorflow.python.util import compat 40 tf.compat.v1.disable_eager_execution() 105 hash_name_hashed = hashlib.sha1(compat.as_bytes(hash_name)).hexdigest() 127 with tf.compat.v1.Session(graph=tf.Graph()) as sess: 128 wav_filename_placeholder = tf.compat.v1.placeholder(tf.string, []) 144 with tf.compat.v1.Session(graph=tf.Graph()) as sess: 145 wav_filename_placeholder = tf.compat.v1.placeholder(tf.string, []) 146 sample_rate_placeholder = tf.compat.v1.placeholder(tf.int32, []) 147 wav_data_placeholder = tf.compat.v1.placeholder(tf.float32, [None, 1]) 235 tf.compat.v1.logging.error( [all …]
|
/external/libxkbcommon/test/data/ |
D | sync.sh | 52 compat/complete \ 53 compat/lednum \ 54 compat/pc \ 55 compat/ledscroll \ 56 compat/basic \ 57 compat/misc \ 58 compat/iso9995 \ 59 compat/accessx \ 60 compat/xfree86 \ 61 compat/level5 \ [all …]
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLSocketImpl.java | 64 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 70 @android.compat.annotation 71 .UnsupportedAppUsage(maxTargetSdk = dalvik.annotation.compat.VersionCodes.Q, 80 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 91 @android.compat.annotation 99 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 105 @android.compat.annotation 117 @android.compat.annotation 118 .UnsupportedAppUsage(maxTargetSdk = dalvik.annotation.compat.VersionCodes.Q, 126 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) [all …]
|
D | AbstractConscryptSocket.java | 520 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 530 @android.compat.annotation. 531 UnsupportedAppUsage(maxTargetSdk = dalvik.annotation.compat.VersionCodes.Q, 543 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 560 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 568 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 577 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) 635 @android.compat.annotation. 636 UnsupportedAppUsage(maxTargetSdk = dalvik.annotation.compat.VersionCodes.Q, 649 @android.compat.annotation.UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553) [all …]
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/ |
D | Internal.java | 43 @android.compat.annotation.UnsupportedAppUsage 52 @android.compat.annotation.UnsupportedAppUsage 55 @android.compat.annotation.UnsupportedAppUsage 58 @android.compat.annotation.UnsupportedAppUsage 61 @android.compat.annotation.UnsupportedAppUsage 64 @android.compat.annotation.UnsupportedAppUsage 67 @android.compat.annotation.UnsupportedAppUsage 71 @android.compat.annotation.UnsupportedAppUsage 74 @android.compat.annotation.UnsupportedAppUsage 77 @android.compat.annotation.UnsupportedAppUsage [all …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | cxx1z-inline-variables.cpp | 29 struct compat { struct 38 const int &compat_use_before_redecl = compat::b; argument 39 const int compat::a; 40 const int compat::b; 41 const int compat::c; 42 const int compat::d; 43 const int compat::e; 44 constexpr int compat::f; 45 constexpr inline int compat::g; 46 const int &compat_use_after_redecl1 = compat::c; [all …]
|
/external/tensorflow/tensorflow/python/lib/io/ |
D | file_io.py | 28 from tensorflow.python.util import compat 80 compat.path_to_str(self.__name), 1024 * 512) 88 compat.path_to_bytes(self.__name), compat.as_bytes(self.__mode)) 92 return compat.as_bytes(val) 94 return compat.as_str_any(val) 103 self._writable_file.append(compat.as_bytes(file_content)) 268 _pywrap_file_io.FileExists(compat.path_to_bytes(path)) 299 _pywrap_file_io.DeleteFile(compat.path_to_bytes(path)) 410 compat.as_str_any(matching_filename) 412 compat.as_bytes(pattern)) [all …]
|
/external/oss-fuzz/projects/openssh/ |
D | build.sh | 45 $CXX $CXXFLAGS -std=c++11 $EXTRA_CFLAGS -I. -L. -Lopenbsd-compat -g \ 47 -lssh -lopenbsd-compat $SK_NULL $STATIC_CRYPTO $LIB_FUZZING_ENGINE 48 $CXX $CXXFLAGS -std=c++11 $EXTRA_CFLAGS -I. -L. -Lopenbsd-compat -g \ 50 -lssh -lopenbsd-compat $SK_NULL $STATIC_CRYPTO $LIB_FUZZING_ENGINE 51 $CXX $CXXFLAGS -std=c++11 $EXTRA_CFLAGS -I. -L. -Lopenbsd-compat -g \ 53 -lssh -lopenbsd-compat $SK_NULL $STATIC_CRYPTO $LIB_FUZZING_ENGINE 54 $CXX $CXXFLAGS -std=c++11 $EXTRA_CFLAGS -I. -L. -Lopenbsd-compat -g \ 56 auth-options.o -lssh -lopenbsd-compat $SK_NULL $STATIC_CRYPTO \ 58 $CXX $CXXFLAGS -std=c++11 $EXTRA_CFLAGS -I. -L. -Lopenbsd-compat -g \ 60 sshsig.o -lssh -lopenbsd-compat $SK_NULL $STATIC_CRYPTO \ [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | string_format_op_test.py | 30 from tensorflow.python.util import compat 42 self.assertEqual(compat.as_text(out), expected) 49 self.assertEqual(compat.as_text(out), expected) 60 self.assertEqual(compat.as_text(out), expected) 71 self.assertEqual(compat.as_text(out), expected) 85 self.assertEqual(compat.as_text(out), expected) 94 self.assertEqual(compat.as_text(out), expected) 103 self.assertEqual(compat.as_text(out), expected) 112 self.assertEqual(compat.as_text(out), expected) 119 self.assertEqual(compat.as_text(out), expected) [all …]
|
/external/clang/test/CodeGenCXX/ |
D | cxx1z-inline-variables.cpp | 29 struct compat { struct 35 const int &compat_use_before_redecl = compat::b; argument 36 const int compat::a; 37 const int compat::b; 38 const int compat::c; 39 const int compat::d; 40 const int &compat_use_after_redecl1 = compat::c; 41 const int &compat_use_after_redecl2 = compat::d;
|
/external/libxkbcommon/test/ |
D | rules-file.c | 43 const char *compat; member 66 data->keycodes, data->types, data->compat, data->symbols); in test_rules() 74 kccgst.keycodes, kccgst.types, kccgst.compat, kccgst.symbols); in test_rules() 78 streq(kccgst.compat, data->compat) && in test_rules() 83 free(kccgst.compat); in test_rules() 104 .compat = "my_compat|some:compat", in main() 115 .compat = "default_compat", .symbols = "default_symbols", in main() 125 .compat = "default_compat", .symbols = "default_symbols", in main() 135 .compat = "default_compat", .symbols = "my_symbols+(bar)", in main() 156 .compat = "default_compat", in main() [all …]
|
D | rules-file-includes.c | 45 const char *compat; member 68 data->keycodes, data->types, data->compat, data->symbols); in test_rules() 76 kccgst.keycodes, kccgst.types, kccgst.compat, kccgst.symbols); in test_rules() 80 streq(kccgst.compat, data->compat) && in test_rules() 85 free(kccgst.compat); in test_rules() 107 .compat = "default_compat", .symbols = "my_symbols", in main() 117 .compat = "default_compat", .symbols = "my_symbols", in main() 136 .compat = "default_compat", .symbols = "default_symbols", in main() 147 .compat = "default_compat+substring+group(bla)|some:compat", in main() 158 .compat = "default_compat", .symbols = "my_symbols", in main()
|
/external/e2fsprogs/lib/e2p/ |
D | feature.c | 24 int compat; member 138 const char *e2p_feature2string(int compat, unsigned int mask) in e2p_feature2string() argument 146 if ((compat == f->compat) && in e2p_feature2string() 150 switch (compat) { in e2p_feature2string() 177 *compat_type = f->compat; in e2p_string2feature() 212 const char *e2p_jrnl_feature2string(int compat, unsigned int mask) in e2p_jrnl_feature2string() argument 220 if ((compat == f->compat) && in e2p_jrnl_feature2string() 224 switch (compat) { in e2p_jrnl_feature2string() 251 *compat_type = f->compat; in e2p_jrnl_string2feature() 394 int compat, compat2, i; in main() local [all …]
|
/external/tensorflow/tensorflow/lite/experimental/examples/lstm/ |
D | unidirectional_sequence_lstm_test.py | 23 import tensorflow.compat.v1 as tf 39 tf.compat.v1.reset_default_graph() 60 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 62 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 64 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 70 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 94 x = tf.compat.v1.placeholder( 100 outputs, _ = tf.compat.v1.lite.experimental.nn.dynamic_rnn( 105 outputs, _ = tf.compat.v1.nn.static_rnn( 126 y = tf.compat.v1.placeholder("float", [None, self.n_classes]) [all …]
|
D | bidirectional_sequence_lstm_test.py | 23 import tensorflow.compat.v1 as tf 39 tf.compat.v1.reset_default_graph() 60 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 62 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 64 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 70 tf.compat.v1.lite.experimental.nn.TFLiteLSTMCell( 97 x = tf.compat.v1.placeholder( 114 outputs, _, _ = tf.compat.v1.nn.static_bidirectional_rnn( 141 opt = tf.compat.v1.train.AdamOptimizer( 145 init = tf.compat.v1.global_variables_initializer() [all …]
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | utils_impl.py | 35 from tensorflow.python.util import compat 227 compat.as_text(export_dir), 228 compat.as_text(constants.VARIABLES_DIRECTORY)) 234 compat.as_text(get_variables_dir(export_dir)), 235 compat.as_text(constants.VARIABLES_FILENAME)) 251 compat.as_text(export_dir), 252 compat.as_text(constants.ASSETS_DIRECTORY)) 267 compat.as_bytes(compat.path_to_str(export_dir)), 268 compat.as_bytes(constants.SAVED_MODEL_FILENAME_PBTXT)) 273 compat.as_bytes(compat.path_to_str(export_dir)), [all …]
|
D | method_name_updater.py | 30 from tensorflow.python.util import compat 132 compat.as_bytes(self._export_dir), 133 compat.as_bytes(constants.SAVED_MODEL_FILENAME_PBTXT))) 140 compat.as_bytes(new_export_dir), 141 compat.as_bytes(constants.SAVED_MODEL_FILENAME_PBTXT)) 145 compat.as_bytes(new_export_dir), 146 compat.as_bytes(constants.SAVED_MODEL_FILENAME_PB)) 149 tf_logging.info("SavedModel written to: %s", compat.as_text(path))
|
/external/tensorflow/tensorflow/python/tools/api/generator/ |
D | api_gen.bzl | 8 """Prepends compat/v<compat_api_version> to file_paths.""" 9 return ["compat/v%d/%s" % (compat_api_version, f) for f in file_paths] 12 """Return __init__.py file paths for files under nested compat modules. 14 A nested compat module contains two __init__.py files: 15 1. compat/vN/compat/vK/__init__.py 16 2. compat/vN/compat/vK/compat/__init__.py 19 compat_api_versions: list of compat versions. 22 List of __init__.py file paths to include under nested compat modules. 27 "compat/v%d/compat/v%d/__init__.py" % (v, sv) 31 "compat/v%d/compat/v%d/compat/__init__.py" % (v, sv) [all …]
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/ |
D | multi_arguments_results_v1.py | 23 import tensorflow.compat.v1 as tf 61 tensor_info_x = tf.compat.v1.saved_model.utils.build_tensor_info(x) 62 tensor_info_y = tf.compat.v1.saved_model.utils.build_tensor_info(y) 63 tensor_info_s = tf.compat.v1.saved_model.utils.build_tensor_info(s) 64 tensor_info_t = tf.compat.v1.saved_model.utils.build_tensor_info(t) 67 'key': (tf.compat.v1.saved_model.signature_def_utils.build_signature_def( 77 'key2': (tf.compat.v1.saved_model.signature_def_utils.build_signature_def(
|