| /third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
| D | benchmarks.cc | 60 // random engine to speed initialization in the benchmarks. 92 // use_default_initialization<T> indicates whether the random engine 102 template <typename Engine, typename SSeq = PrecompiledSeedSeq> 103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine> 105 // Initialize the random engine using the seed sequence SSeq, which in make_engine() 108 return Engine(seq); in make_engine() 111 template <typename Engine, typename SSeq = PrecompiledSeedSeq> 112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine> 114 // Initialize the random engine using the default constructor. in make_engine() 115 return Engine(); in make_engine() [all …]
|
| /third_party/openssl/doc/man3/ |
| D | ENGINE_add.pod | 43 - ENGINE cryptographic module support 47 #include <openssl/engine.h> 53 ENGINE *ENGINE_get_first(void); 54 ENGINE *ENGINE_get_last(void); 55 ENGINE *ENGINE_get_next(ENGINE *e); 56 ENGINE *ENGINE_get_prev(ENGINE *e); 58 int ENGINE_add(ENGINE *e); 59 int ENGINE_remove(ENGINE *e); 61 ENGINE *ENGINE_by_id(const char *id); 63 int ENGINE_init(ENGINE *e); [all …]
|
| /third_party/openssl/include/openssl/ |
| D | engine.h | 60 * internally to control registration of ENGINE implementations, and can be 66 /* ENGINE flags that can be set by ENGINE_set_flags(). */ 73 * these control commands on behalf of the ENGINE using their "cmd_defns" 80 * via "ENGINE_by_id()". When an ENGINE must store state (eg. if 83 * then each attempt to obtain the ENGINE will result in it being copied into 85 * ENGINE_by_id() just increments the existing ENGINE's structural reference 91 * This flag if for an ENGINE that does not want its methods registered as 133 * the same functionality to their own ENGINE-specific control functions that 137 * without requiring per-ENGINE hacking. 166 * engine in a dynamic way. Warn: Negative return values indicate errors FOR [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/tools/dataset/cropper/ |
| D | dependencies.txt | 1 …engine/ir/cache/pre_built_dataset_cache.cc", "mindspore/core/utils/log_adapter.cc", "mindspore/cor…
|
| D | associations.txt | 1 …engine/ir/datasetops/root_node.cc", "concat": "mindspore/ccsrc/minddata/dataset/engine/ir/dataseto…
|
| /third_party/openssl/ |
| D | README-ENGINES.md | 7 The ENGINE API was introduced in OpenSSL version 0.9.6 as a low level 11 The ENGINE interface has its limitations and it has been superseeded 14 users who need to maintain or support existing ENGINE implementations. 19 Built-in ENGINE implementations 22 There are currently built-in ENGINE implementations for the following 29 In addition, dynamic binding to external ENGINE implementations is now 30 provided by a special ENGINE called "dynamic". See the "DYNAMIC ENGINE" 43 the ENGINE model so that alternative implementations of existing 45 ENGINE implementations. 50 Configuration support currently exists in the ENGINE API itself, in the [all …]
|
| /third_party/python/Lib/idlelib/idle_test/ |
| D | test_searchengine.py | 41 engine = se.get(root) 42 self.assertIsInstance(engine, se.SearchEngine) 43 self.assertIs(root._searchengine, engine) 44 self.assertIs(se.get(root), engine) 109 self.engine = se.SearchEngine(root=None) 110 # Engine.root is only used to create error message boxes. 114 engine = self.engine 117 Equal(engine.getpat(), '') 118 engine.setpat('hello') 119 Equal(engine.getpat(), 'hello') [all …]
|
| /third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/ |
| D | jni_bridge.cpp | 25 * Creates the audio engine 27 * @return a pointer to the audio engine. This should be passed to other methods 33 // We use std::nothrow so `new` returns a nullptr if the engine creation fails in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1createEngine() 34 HelloOboeEngine *engine = new(std::nothrow) HelloOboeEngine(); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1createEngine() local 35 return reinterpret_cast<jlong>(engine); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1createEngine() 54 HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine *>(engineHandle); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setToneOn() local 55 if (engine == nullptr) { in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setToneOn() 56 LOGE("Engine handle is invalid, call createHandle() to create a new one"); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setToneOn() 59 engine->tap(isToneOn); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setToneOn() 69 HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setAudioApi() local [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/minddata/dataset/ |
| D | CMakeLists.txt | 84 add_subdirectory(engine) 95 add_dependencies(engine-datasetops-source core) 96 add_dependencies(engine-datasetops-source-sampler core) 97 add_dependencies(engine-datasetops core) 98 add_dependencies(engine-datasetops-mapop core) 99 add_dependencies(engine-opt core) 100 add_dependencies(engine core) 110 add_dependencies(engine-ir-datasetops core) 111 add_dependencies(engine-ir-datasetops-source core) 112 add_dependencies(engine-ir-datasetops-source-samplers core) [all …]
|
| /third_party/vk-gl-cts/external/amber/src/src/ |
| D | executor_test.cc | 23 #include "src/engine.h" 31 class EngineStub : public Engine { 33 EngineStub() : Engine() {} in EngineStub() 36 // Engine 207 std::unique_ptr<Engine> MakeEngine() { return MakeUnique<EngineStub>(); } in MakeEngine() 208 std::unique_ptr<Engine> MakeAndInitializeEngine( in MakeAndInitializeEngine() 212 std::unique_ptr<Engine> engine = MakeUnique<EngineStub>(); in MakeAndInitializeEngine() local 213 engine->Initialize(nullptr, nullptr, features, instance_extensions, in MakeAndInitializeEngine() 215 return engine; in MakeAndInitializeEngine() 217 EngineStub* ToStub(Engine* engine) { in ToStub() argument [all …]
|
| D | engine.h | 34 /// EngineData stores information used during engine execution. 40 /// Abstract class which describes a backing engine for Amber. 42 /// The engine class has a defined lifecycle. 43 /// 1. The engine is created through Engine::Create. 44 /// 2. Engine::Initialize is called to provide the engine with the configured 46 /// 3. Engine::CreatePipeline is called for each pipeline. The pipelines are 51 /// * Extra engine data. 53 /// 4. Engine::Do* is called for each command. 56 /// 5. Engine destructor is called. 57 class Engine { [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/minddata/dataset/engine/ |
| D | CMakeLists.txt | 35 add_library(engine OBJECT ${SRC_FILES_LIST}) target 38 target_include_directories(engine PRIVATE ${pybind11_INCLUDE_DIRS}) 41 add_dependencies(engine 42 engine-datasetops 43 engine-datasetops-source 44 engine-opt 45 engine-cache-client 46 engine-datasetops-mapop 51 add_dependencies(engine engine-cache-server) 53 add_dependencies(engine engine-cache-client) [all …]
|
| /third_party/openssl/crypto/engine/ |
| D | README.md | 7 the "ENGINE" code. So it serves a double purpose of being a "ENGINE internals 49 into ENGINE is storage - the OBJ_NAME-based storage used by EVP to register 53 solution is necessarily that ENGINE-provided ciphers simply are not registered, 55 especially necessary considering the fact ENGINE uses reference counts to allow 59 Another sticking point for integrating cipher support into ENGINE is linkage. 60 Already there is a problem with the way ENGINE supports RSA, DSA, etc whereby 61 they are available *because* they're part of a giant ENGINE called "openssl". 62 Ie. all implementations *have* to come from an ENGINE, but we get round that by 63 having a giant ENGINE with all the software support encapsulated. This creates 66 ENGINE code being linked in *and* because of that DSA, DH, and RAND also. If we [all …]
|
| D | eng_list.c | 11 /* We need to use some engine deprecated APIs */ 17 * The linked-list of pointers to engine types. engine_list_head incorporates 21 * itself). In the same way, the use of the "prev" pointer in each ENGINE is 27 static ENGINE *engine_list_head = NULL; 28 static ENGINE *engine_list_tail = NULL; 33 static ENGINE *engine_dyn_list_head = NULL; 34 static ENGINE *engine_dyn_list_tail = NULL; 44 ENGINE *iterator = engine_list_head; in engine_list_cleanup() 57 static int engine_list_add(ENGINE *e) in engine_list_add() 60 ENGINE *iterator = NULL; in engine_list_add() [all …]
|
| D | eng_local.h | 16 # include "crypto/engine.h" 23 * This prints the engine's pointer address, "struct" or "funct" to 30 "engine: %p %s from %d to %d (%s:%d)\n", \ 41 * callbacks in order. NB: both the "add" functions assume the engine lock to 53 DEFINE_STACK_OF(ENGINE) 61 ENGINE *e, const int *nids, int num_nids, 63 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e); 65 ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid, 67 typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk, 68 ENGINE *def, void *arg); [all …]
|
| D | eng_dyn.c | 10 /* We need to use some engine deprecated APIs */ 18 * Shared libraries implementing ENGINEs for use by the "dynamic" ENGINE 23 /* Our ENGINE handlers */ 24 static int dynamic_init(ENGINE *e); 25 static int dynamic_finish(ENGINE *e); 26 static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, 31 static int dynamic_load(ENGINE *e, dynamic_data_ctx *ctx); 41 /* The constants used when creating the ENGINE */ 43 static const char *engine_dynamic_name = "Dynamic engine loading support"; 47 "Specifies the path to the new ENGINE shared library", [all …]
|
| D | eng_lib.c | 27 ENGINE *ENGINE_new(void) in ENGINE_new() 29 ENGINE *ret; in ENGINE_new() 47 * elements of the ENGINE structure are more likely to be caught and changed 50 void engine_set_all_null(ENGINE *e) in engine_set_all_null() 71 int engine_free_util(ENGINE *e, int not_locked) in engine_free_util() 89 * Give the ENGINE a chance to do any structural cleanup corresponding to in engine_free_util() 100 int ENGINE_free(ENGINE *e) in ENGINE_free() 180 int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg) in ENGINE_set_ex_data() 185 void *ENGINE_get_ex_data(const ENGINE *e, int idx) in ENGINE_get_ex_data() 191 * Functions to get/set an ENGINE's elements - mainly to avoid exposing the [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/minddata/dataset/core/ |
| D | client.h | 26 #include "minddata/dataset/engine/data_schema.h" 27 #include "minddata/dataset/engine/dataset_iterator.h" 30 #include "minddata/dataset/engine/datasetops/source/mindrecord_op.h" 31 #include "minddata/dataset/engine/datasetops/source/tf_reader_op.h" 35 #include "minddata/dataset/engine/datasetops/barrier_op.h" 36 #include "minddata/dataset/engine/datasetops/filter_op.h" 37 #include "minddata/dataset/engine/datasetops/source/generator_op.h" 38 #include "minddata/dataset/engine/datasetops/build_vocab_op.h" 39 #include "minddata/dataset/engine/datasetops/build_sentence_piece_vocab_op.h" 42 #include "minddata/dataset/engine/datasetops/batch_op.h" [all …]
|
| /third_party/vk-gl-cts/external/amber/src/docs/ |
| D | engines.md | 4 engine layer. The parsing/executing side of Amber (which we'll call the 9 ## Engine Lifecycle 10 The engine will go through several states as the script executes. First the 11 engine will be created. The creation should not configure the backing graphics 12 API. The creation just sets up the basic engine structure. 15 Engine 50 Once created, the engine will be initialized. This initialization will receive 51 the configured graphics API from the embedder. The engine can then setup any 55 With the engine initialized all of the pipelines will be created through a 72 The engine should go through and create all the needed pipeline resources. [all …]
|
| /third_party/tex-hyphen/tests/lib/ |
| D | tex.rb | 38 def has_engine(engine) argument 39 return true if engine == nil 40 engines.include?(engine.downcase) 43 def set_engine(engine) argument 44 @engines = [engine.downcase] 51 def exclude_engine(engine) argument 52 @engines.delete(engine.downcase) 61 @engines.each do |engine| 62 o[engine] = File.join(@dir, engine, "#{@@basename}.pdf") 118 @engines.each do |engine| [all …]
|
| /third_party/skia/third_party/externals/oboe/samples/LiveEffect/src/main/cpp/ |
| D | jni_bridge.cpp | 24 static LiveEffectEngine *engine = nullptr; variable 31 if (engine == nullptr) { in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_create() 32 engine = new LiveEffectEngine(); in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_create() 35 return (engine != nullptr) ? JNI_TRUE : JNI_FALSE; in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_create() 41 delete engine; in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_delete() 42 engine = nullptr; in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_delete() 48 if (engine == nullptr) { in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_setEffectOn() 50 "Engine is null, you must call createEngine before calling this " in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_setEffectOn() 55 return engine->setEffectOn(isEffectOn) ? JNI_TRUE : JNI_FALSE; in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_setEffectOn() 61 if (engine == nullptr) { in Java_com_google_oboe_samples_liveEffect_LiveEffectEngine_setRecordingDeviceId() [all …]
|
| /third_party/openssl/apps/lib/ |
| D | engine.c | 11 * Here is a set of wrappers for the ENGINE API, which are no-ops when the 12 * ENGINE API is disabled / removed. 19 #include <openssl/types.h> /* Ensure we have the ENGINE type, regardless */ 22 # include <openssl/engine.h> 27 /* Try to load an engine in a shareable library */ 28 static ENGINE *try_load_engine(const char *engine) in try_load_engine() argument 30 ENGINE *e = NULL; in try_load_engine() 33 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0) in try_load_engine() 43 ENGINE *setup_engine_methods(const char *id, unsigned int methods, int debug) in setup_engine_methods() 45 ENGINE *e = NULL; in setup_engine_methods() [all …]
|
| /third_party/openssl/doc/man1/ |
| D | openssl-engine.pod.in | 6 openssl-engine - load and query engines 10 B<openssl engine> 21 [I<engine> ...] 28 of the specified I<engine>s. 42 Provides information about each specified engine. The first flag lists 49 Lists the capabilities of each engine. 53 Tests if each specified engine is available, and displays the answer. 57 Displays an error trace for any unavailable engine. 64 The B<-pre> command is given to the engine before it is loaded and 65 the B<-post> command is given after the engine is loaded. [all …]
|
| /third_party/openssl/providers/common/ |
| D | provider_util.c | 10 /* We need to use some engine deprecated APIs */ 18 # include <openssl/engine.h> 30 ENGINE_finish(pc->engine); in ossl_prov_cipher_reset() 32 pc->engine = NULL; in ossl_prov_cipher_reset() 40 if (src->engine != NULL && !ENGINE_init(src->engine)) { in ossl_prov_cipher_copy() 45 dst->engine = src->engine; in ossl_prov_cipher_copy() 52 ENGINE **engine) in load_common() argument 65 ENGINE_finish(*engine); in load_common() 67 *engine = NULL; in load_common() 75 *engine = ENGINE_by_id(p->data); in load_common() [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/minddata/ |
| D | CMakeLists.txt | 100 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine MINDDATA_ENGINE_SRC_FILES) 103 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/cache MINDDATA_ENGINE_CACHE_SRC_FILES) 105 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/consumers MINDDATA_ENGINE_CONSUMERS_SRC_FILES) 106 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/datasetops MINDDATA_ENGINE_DATASETOPS_SRC_FILES) 107 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/datasetops/map_op MINDDATA_ENGINE_DATASETOPS_MAPOP_SRC_… 108 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/datasetops/source MINDDATA_ENGINE_DATASETOPS_SOURCE_SRC… 109 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/datasetops/source/sampler 111 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/ir/cache MINDDATA_ENGINE_IR_CACHE_SRC_FILES) 112 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/ir/datasetops MINDDATA_ENGINE_IR_DATASETOPS_SRC_FILES) 113 AUX_SOURCE_DIRECTORY(${MINDDATA_DIR}/engine/ir/datasetops/source MINDDATA_ENGINE_IR_DATASETOPS_SOUR… [all …]
|