Home
last modified time | relevance | path

Searched refs:config (Results 1 - 25 of 3622) sorted by relevance

12345678910>>...145

/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dconfig_enc.c15 #include "src/webp/config.h"
24 int WebPConfigInitInternal(WebPConfig* config, in WebPConfigInitInternal() argument
29 if (config == NULL) return 0; in WebPConfigInitInternal()
31 config->quality = quality; in WebPConfigInitInternal()
32 config->target_size = 0; in WebPConfigInitInternal()
33 config->target_PSNR = 0.; in WebPConfigInitInternal()
34 config->method = 4; in WebPConfigInitInternal()
35 config->sns_strength = 50; in WebPConfigInitInternal()
36 config->filter_strength = 60; // mid-filtering in WebPConfigInitInternal()
37 config in WebPConfigInitInternal()
98 WebPValidateConfig(const WebPConfig* config) WebPValidateConfig() argument
149 WebPConfigLosslessPreset(WebPConfig* config, int level) WebPConfigLosslessPreset() argument
[all...]
/third_party/curl/src/
H A Dtool_cfgable.c33 void config_init(struct OperationConfig *config) in config_init() argument
35 memset(config, 0, sizeof(struct OperationConfig)); in config_init()
37 config->use_httpget = FALSE; in config_init()
38 config->create_dirs = FALSE; in config_init()
39 config->maxredirs = DEFAULT_MAXREDIRS; in config_init()
40 config->proto_present = FALSE; in config_init()
41 config->proto_redir_present = FALSE; in config_init()
42 config->proto_default = NULL; in config_init()
43 config->tcp_nodelay = TRUE; /* enabled by default */ in config_init()
44 config in config_init()
51 free_config_fields(struct OperationConfig *config) free_config_fields() argument
181 config_free(struct OperationConfig *config) config_free() argument
[all...]
H A Dtool_getparam.c377 {"config", ARG_FILE, 'K', C_CONFIG},
608 {"trace-config", ARG_STRG, ' ', C_TRACE_CONFIG},
936 struct OperationConfig *config, in sethttpver()
939 if(config->httpversion && in sethttpver()
940 (config->httpversion != httpversion)) in sethttpver()
943 config->httpversion = httpversion; in sethttpver()
947 const char *config) in set_trace_config()
953 tmp = strdup(config); in set_trace_config()
1030 struct OperationConfig *config) in url_query()
1048 if(config in url_query()
935 sethttpver(struct GlobalConfig *global, struct OperationConfig *config, long httpversion) sethttpver() argument
946 set_trace_config(struct GlobalConfig *global, const char *config) set_trace_config() argument
1028 url_query(char *nextarg, struct GlobalConfig *global, struct OperationConfig *config) url_query() argument
1064 set_data(cmdline_t cmd, char *nextarg, struct GlobalConfig *global, struct OperationConfig *config) set_data() argument
1207 getparameter(const char *flag, char *nextarg, argv_item_t cleararg, bool *usedarg, struct GlobalConfig *global, struct OperationConfig *config) getparameter() argument
2763 struct OperationConfig *config = global->first; parse_args() local
[all...]
H A Dtool_operate.c108 struct OperationConfig *config,
333 struct OperationConfig *config = per->config; /* for the macro below */ in pre_transfer() local
335 (void)config; in pre_transfer()
349 void single_transfer_cleanup(struct OperationConfig *config) in single_transfer_cleanup() argument
351 if(config) { in single_transfer_cleanup()
352 struct State *state = &config->state; in single_transfer_cleanup()
379 struct OperationConfig *config = per->config; in post_per_transfer() local
382 if(!curl || !config) in post_per_transfer()
694 url_proto(char **url, struct OperationConfig *config, char **scheme) url_proto() argument
736 single_transfer(struct GlobalConfig *global, struct OperationConfig *config, CURLSH *share, bool capath_from_env, bool *added) single_transfer() argument
2534 transfer_per_config(struct GlobalConfig *global, struct OperationConfig *config, CURLSH *share, bool *added) transfer_per_config() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DobjectSpreadRepeatedNullCheckPerf.js31 function parseWithSpread(config: Record<string, number>): Props {
33 ...config.a !== undefined && { a: config.a.toString() },
34 ...config.b !== undefined && { b: config.b.toString() },
35 ...config.c !== undefined && { c: config.c.toString() },
36 ...config.d !== undefined && { d: config.d.toString() },
37 ...config
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Main/
H A DSwiftConfig.cpp58 if(!config.disableServer) in SwiftConfig()
115 configuration = config; in getConfiguration()
212 if(config.disableServer) in respond()
274 html += "<option value='0'" + (config.pixelShaderVersion == 0 ? selected : empty) + ">0.0</option>\n"; in page()
275 html += "<option value='11'" + (config.pixelShaderVersion == 11 ? selected : empty) + ">1.1</option>\n"; in page()
276 html += "<option value='12'" + (config.pixelShaderVersion == 12 ? selected : empty) + ">1.2</option>\n"; in page()
277 html += "<option value='13'" + (config.pixelShaderVersion == 13 ? selected : empty) + ">1.3</option>\n"; in page()
278 html += "<option value='14'" + (config.pixelShaderVersion == 14 ? selected : empty) + ">1.4</option>\n"; in page()
279 html += "<option value='20'" + (config.pixelShaderVersion == 20 ? selected : empty) + ">2.0</option>\n"; in page()
280 html += "<option value='21'" + (config in page()
[all...]
/third_party/python/Python/
H A Dinitconfig.c634 config_check_consistency(const PyConfig *config) in config_check_consistency() argument
636 /* Check config consistency */ in config_check_consistency()
637 assert(config->isolated >= 0); in config_check_consistency()
638 assert(config->use_environment >= 0); in config_check_consistency()
639 assert(config->dev_mode >= 0); in config_check_consistency()
640 assert(config->install_signal_handlers >= 0); in config_check_consistency()
641 assert(config->use_hash_seed >= 0); in config_check_consistency()
642 assert(config->hash_seed <= MAX_HASH_SEED); in config_check_consistency()
643 assert(config->faulthandler >= 0); in config_check_consistency()
644 assert(config in config_check_consistency()
695 PyConfig_Clear(PyConfig *config) PyConfig_Clear() argument
738 _PyConfig_InitCompatConfig(PyConfig *config) _PyConfig_InitCompatConfig() argument
789 config_init_defaults(PyConfig *config) config_init_defaults() argument
814 PyConfig_InitPythonConfig(PyConfig *config) PyConfig_InitPythonConfig() argument
825 PyConfig_InitIsolatedConfig(PyConfig *config) PyConfig_InitIsolatedConfig() argument
848 PyConfig_SetString(PyConfig *config, wchar_t **config_str, const wchar_t *str) PyConfig_SetString() argument
872 config_set_bytes_string(PyConfig *config, wchar_t **config_str, const char *str, const char *decode_err_msg) config_set_bytes_string() argument
910 PyConfig_SetBytesString(PyConfig *config, wchar_t **config_str, const char *str) PyConfig_SetBytesString() argument
918 _PyConfig_Copy(PyConfig *config, const PyConfig *config2) _PyConfig_Copy() argument
1018 _PyConfig_AsDict(const PyConfig *config) _PyConfig_AsDict() argument
1202 config_dict_get_wstr(PyObject *dict, const char *name, PyConfig *config, wchar_t **result) config_dict_get_wstr() argument
1234 config_dict_get_wstrlist(PyObject *dict, const char *name, PyConfig *config, PyWideStringList *result) config_dict_get_wstrlist() argument
1285 _PyConfig_FromDict(PyConfig *config, PyObject *dict) _PyConfig_FromDict() argument
1411 config_get_env(const PyConfig *config, const char *name) config_get_env() argument
1421 config_get_env_dup(PyConfig *config, wchar_t **dest, wchar_t *wname, char *name, const char *decode_err_msg) config_get_env_dup() argument
1459 config_get_global_vars(PyConfig *config) config_get_global_vars() argument
1501 config_set_global_vars(const PyConfig *config) config_set_global_vars() argument
1541 config_get_xoption(const PyConfig *config, wchar_t *name) config_get_xoption() argument
1547 config_get_xoption_value(const PyConfig *config, wchar_t *name) config_get_xoption_value() argument
1559 config_init_hash_seed(PyConfig *config) config_init_hash_seed() argument
1611 config_read_env_vars(PyConfig *config) config_read_env_vars() argument
1692 config_init_tracemalloc(PyConfig *config) config_init_tracemalloc() argument
1736 config_init_int_max_str_digits(PyConfig *config) config_init_int_max_str_digits() argument
1780 config_init_pycache_prefix(PyConfig *config) config_init_pycache_prefix() argument
1808 config_read_complex_options(PyConfig *config) config_read_complex_options() argument
1885 config_get_locale_encoding(PyConfig *config, const PyPreConfig *preconfig, wchar_t **locale_encoding) config_get_locale_encoding() argument
1905 config_init_stdio_encoding(PyConfig *config, const PyPreConfig *preconfig) config_init_stdio_encoding() argument
2010 config_get_fs_encoding(PyConfig *config, const PyPreConfig *preconfig, wchar_t **fs_encoding) config_get_fs_encoding() argument
2041 config_init_fs_encoding(PyConfig *config, const PyPreConfig *preconfig) config_init_fs_encoding() argument
2075 config_init_import(PyConfig *config, int compute_path_config) config_init_import() argument
2108 _PyConfig_InitImportConfig(PyConfig *config) _PyConfig_InitImportConfig() argument
2115 config_read(PyConfig *config, int compute_path_config) config_read() argument
2203 config_init_stdio(const PyConfig *config) config_init_stdio() argument
2244 _PyConfig_Write(const PyConfig *config, _PyRuntimeState *runtime) _PyConfig_Write() argument
2307 config_parse_cmdline(PyConfig *config, PyWideStringList *warnoptions, Py_ssize_t *opt_index) config_parse_cmdline() argument
2519 config_init_env_warnoptions(PyConfig *config, PyWideStringList *warnoptions) config_init_env_warnoptions() argument
2553 warnoptions_append(PyConfig *config, PyWideStringList *options, const wchar_t *option) warnoptions_append() argument
2573 warnoptions_extend(PyConfig *config, PyWideStringList *options, const PyWideStringList *options2) warnoptions_extend() argument
2590 config_init_warnoptions(PyConfig *config, const PyWideStringList *cmdline_warnoptions, const PyWideStringList *env_warnoptions, const PyWideStringList *sys_warnoptions) config_init_warnoptions() argument
2672 config_update_argv(PyConfig *config, Py_ssize_t opt_index) config_update_argv() argument
2723 core_read_precmdline(PyConfig *config, _PyPreCmdline *precmdline) core_read_precmdline() argument
2757 config_run_filename_abspath(PyConfig *config) config_run_filename_abspath() argument
2787 config_read_cmdline(PyConfig *config) config_read_cmdline() argument
2854 _PyConfig_SetPyArgv(PyConfig *config, const _PyArgv *args) _PyConfig_SetPyArgv() argument
2868 PyConfig_SetBytesArgv(PyConfig *config, Py_ssize_t argc, char * const *argv) PyConfig_SetBytesArgv() argument
2880 PyConfig_SetArgv(PyConfig *config, Py_ssize_t argc, wchar_t * const *argv) PyConfig_SetArgv() argument
2892 PyConfig_SetWideStringList(PyConfig *config, PyWideStringList *list, Py_ssize_t length, wchar_t **items) PyConfig_SetWideStringList() argument
2916 _PyConfig_Read(PyConfig *config, int compute_path_config) _PyConfig_Read() argument
2976 PyConfig_Read(PyConfig *config) PyConfig_Read() argument
3016 const PyConfig *config = _PyInterpreterState_GetConfig(interp); _Py_GetConfigsAsDict() local
3083 const PyConfig *config = _PyInterpreterState_GetConfig(tstate->interp); _Py_DumpPathConfig() local
[all...]
H A Dpreconfig.c14 preconfig_copy(PyPreConfig *config, const PyPreConfig *config2);
125 precmdline_get_preconfig(_PyPreCmdline *cmdline, const PyPreConfig *config) in precmdline_get_preconfig() argument
128 if (config->ATTR != -1) { \ in precmdline_get_preconfig()
129 cmdline->ATTR = config->ATTR; \ in precmdline_get_preconfig()
141 precmdline_set_preconfig(const _PyPreCmdline *cmdline, PyPreConfig *config) in precmdline_set_preconfig() argument
144 config->ATTR = cmdline->ATTR in precmdline_set_preconfig()
155 _PyPreCmdline_SetConfig(const _PyPreCmdline *cmdline, PyConfig *config) in _PyPreCmdline_SetConfig() argument
158 config->ATTR = cmdline->ATTR in _PyPreCmdline_SetConfig()
160 PyStatus status = _PyWideStringList_Extend(&config->xoptions, &cmdline->xoptions); in _PyPreCmdline_SetConfig()
277 _PyPreConfig_InitCompatConfig(PyPreConfig *config) in _PyPreConfig_InitCompatConfig() argument
305 PyPreConfig_InitPythonConfig(PyPreConfig *config) PyPreConfig_InitPythonConfig() argument
326 PyPreConfig_InitIsolatedConfig(PyPreConfig *config) PyPreConfig_InitIsolatedConfig() argument
343 _PyPreConfig_InitFromPreConfig(PyPreConfig *config, const PyPreConfig *config2) _PyPreConfig_InitFromPreConfig() argument
353 _PyPreConfig_InitFromConfig(PyPreConfig *preconfig, const PyConfig *config) _PyPreConfig_InitFromConfig() argument
373 preconfig_copy(PyPreConfig *config, const PyPreConfig *config2) preconfig_copy() argument
396 _PyPreConfig_AsDict(const PyPreConfig *config) _PyPreConfig_AsDict() argument
442 _PyPreConfig_GetConfig(PyPreConfig *preconfig, const PyConfig *config) _PyPreConfig_GetConfig() argument
459 preconfig_get_global_vars(PyPreConfig *config) preconfig_get_global_vars() argument
490 preconfig_set_global_vars(const PyPreConfig *config) preconfig_set_global_vars() argument
590 preconfig_init_utf8_mode(PyPreConfig *config, const _PyPreCmdline *cmdline) preconfig_init_utf8_mode() argument
661 preconfig_init_coerce_c_locale(PyPreConfig *config) preconfig_init_coerce_c_locale() argument
708 preconfig_init_allocator(PyPreConfig *config) preconfig_init_allocator() argument
733 preconfig_read(PyPreConfig *config, _PyPreCmdline *cmdline) preconfig_read() argument
785 _PyPreConfig_Read(PyPreConfig *config, const _PyArgv *args) _PyPreConfig_Read() argument
935 PyPreConfig config; _PyPreConfig_Write() local
[all...]
/third_party/mbedtls/programs/test/
H A Dquery_config.c109 int query_config(const char *config) in query_config() argument
112 if( strcmp( "MBEDTLS_CONFIG_VERSION", config ) == 0 ) in query_config()
120 if( strcmp( "MBEDTLS_HAVE_ASM", config ) == 0 ) in query_config()
128 if( strcmp( "MBEDTLS_NO_UDBL_DIVISION", config ) == 0 ) in query_config()
136 if( strcmp( "MBEDTLS_NO_64BIT_MULTIPLICATION", config ) == 0 ) in query_config()
144 if( strcmp( "MBEDTLS_HAVE_SSE2", config ) == 0 ) in query_config()
152 if( strcmp( "MBEDTLS_HAVE_TIME", config ) == 0 ) in query_config()
160 if( strcmp( "MBEDTLS_HAVE_TIME_DATE", config ) == 0 ) in query_config()
168 if( strcmp( "MBEDTLS_PLATFORM_MEMORY", config ) == 0 ) in query_config()
176 if( strcmp( "MBEDTLS_PLATFORM_NO_STD_FUNCTIONS", config ) in query_config()
[all...]
/third_party/decimal.js/test/modules/
H A Dconfig.js3 T('config', function () {
27 t(Decimal.config({}) === Decimal);
29 tx(function () {Decimal.config()}, "config()");
30 tx(function () {Decimal.config(null)}, "config(null)");
31 tx(function () {Decimal.config(undefined)}, "config(undefined)");
32 tx(function () {Decimal.config(0)}, "config(
[all...]
/third_party/mbedtls/tests/scripts/
H A Dall.sh146 # Files clobbered by config.py
311 # Remove built files as well as the cmake cache/config.
857 # can be either "default" to start with the default config, or a name
858 # supported by scripts/config.py (for example, "full"). This selects
868 # 2d. On top of psa/crypto_config.h, the driver library uses its own config
872 # calling scripts/config.py on this file remains the only option.
894 scripts/config.py "$base_config"
897 # Enable PSA-based config (necessary to use drivers)
898 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
902 scripts/config
[all...]
/third_party/python/Programs/
H A D_testembed.c49 static void config_set_string(PyConfig *config, wchar_t **config_str, const wchar_t *str) in config_set_string() argument
51 PyStatus status = PyConfig_SetString(config, config_str, str); in config_set_string()
53 PyConfig_Clear(config); in config_set_string()
59 static void config_set_program_name(PyConfig *config) in config_set_program_name() argument
62 config_set_string(config, &config->program_name, program_name); in config_set_program_name()
66 static void init_from_config_clear(PyConfig *config) in init_from_config_clear() argument
68 PyStatus status = Py_InitializeFromConfig(config); in init_from_config_clear()
69 PyConfig_Clear(config); in init_from_config_clear()
78 PyConfig config; in _testembed_Py_InitializeFromConfig() local
449 config_set_argv(PyConfig *config, Py_ssize_t argc, wchar_t * const *argv) config_set_argv() argument
460 config_set_wide_string_list(PyConfig *config, PyWideStringList *list, Py_ssize_t length, wchar_t **items) config_set_wide_string_list() argument
485 PyConfig config; check_init_compat_config() local
575 PyConfig config; test_init_from_config() local
719 PyConfig config; check_init_parse_argv() local
802 PyConfig config; test_init_python_env() local
850 PyConfig config; test_init_isolated_flag() local
883 PyConfig config; test_preinit_isolated1() local
910 PyConfig config; test_preinit_isolated2() local
947 PyConfig config; test_preinit_dont_parse_argv() local
966 PyConfig config; test_preinit_parse_argv() local
1031 PyConfig config; check_preinit_isolated_config() local
1084 PyConfig config; check_init_python_config() local
1122 PyConfig config; test_init_dont_configure_locale() local
1136 PyConfig config; test_init_dev_mode() local
1364 PyConfig config; run_audit_run_test() local
1410 PyConfig config; test_init_read_set() local
1456 PyConfig config; test_init_sys_add() local
1544 PyConfig config; test_init_setpath_config() local
1595 PyConfig config; test_init_is_python_build() local
1627 PyConfig config; test_init_warnoptions() local
1675 PyConfig config; tune_config() local
1697 PyConfig config; test_init_set_config() local
1722 configure_init_main(PyConfig *config) configure_init_main() argument
1739 PyConfig config; test_init_run_main() local
1751 PyConfig config; test_init_main() local
1778 PyConfig config; test_run_main() local
1809 PyConfig config; test_get_argc_argv() local
1861 PyConfig config; check_use_frozen_modules() local
1961 PyConfig config; test_repeated_init_and_inittab() local
[all...]
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreNdktestHvigor/entry/src/main/cpp/
H A Dnapi_init.cpp46 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); in OH_Rdb_CreateConfig_0100() local
47 NAPI_ASSERT(env, config != nullptr, "OH_Rdb_CreateConfig is fail."); in OH_Rdb_CreateConfig_0100()
48 errcode = OH_Rdb_DestroyConfig(config); in OH_Rdb_CreateConfig_0100()
59 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); in OH_Rdb_CreateConfig_0200() local
60 NAPI_ASSERT(env, config != nullptr, "OH_Rdb_CreateConfig is fail."); in OH_Rdb_CreateConfig_0200()
61 errcode = OH_Rdb_SetDatabaseDir(config, RDB_TEST_PATH); in OH_Rdb_CreateConfig_0200()
63 errcode = OH_Rdb_SetStoreName(config, "rdb_store_test.db"); in OH_Rdb_CreateConfig_0200()
65 errcode = OH_Rdb_SetBundleName(config, "com.ohos.example.distributedndk"); in OH_Rdb_CreateConfig_0200()
67 errcode = OH_Rdb_SetModuleName(config, "module"); in OH_Rdb_CreateConfig_0200()
69 errcode = OH_Rdb_SetEncrypted(config, fals in OH_Rdb_CreateConfig_0200()
89 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_0100() local
120 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_0300() local
146 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_GetSupportedDbType_0100() local
180 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_SQLITE_0100() local
218 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_SQLITE_0200() local
273 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_SQLITE_0300() local
330 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_SQLITE_Id_0100() local
379 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_SQLITE_Id_0200() local
425 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0100() local
440 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0200() local
455 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0300() local
470 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0400() local
485 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0500() local
512 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0600() local
540 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0700() local
568 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0800() local
595 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_0900() local
622 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDatabaseDir_Param_1000() local
649 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0100() local
664 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0200() local
679 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0300() local
694 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0400() local
709 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0500() local
736 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0600() local
765 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0700() local
792 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0800() local
819 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_0900() local
846 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetStoreName_Param_1000() local
874 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0100() local
889 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0200() local
904 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0300() local
919 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0400() local
934 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0500() local
961 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0600() local
991 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0700() local
1018 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0800() local
1045 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_0900() local
1072 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetBundleName_1000() local
1099 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0100() local
1114 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0200() local
1129 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0300() local
1144 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0400() local
1159 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0500() local
1186 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0600() local
1215 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0700() local
1242 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0800() local
1269 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_0900() local
1296 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetModuleName_1000() local
1323 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetEncrypted_0100() local
1344 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetEncrypted_0200() local
1380 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetEncrypted_0300() local
1404 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetSecurityLevel_0100() local
1424 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetSecurityLevel_0200() local
1445 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetSecurityLevel_0300() local
1478 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_0100() local
1492 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_0200() local
1506 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_0300() local
1520 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_0400() local
1534 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_0500() local
1548 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_Param_0100() local
1568 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_Param_0200() local
1594 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetArea_Param_0300() local
1617 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_Param_0100() local
1632 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_Param_0200() local
1649 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_SetDbType_Param_0300() local
1728 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_ExecuteByTrxId_Param_0100() local
1757 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_ExecuteByTrxId_Param_0200() local
1803 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_ExecuteByTrxId_Param_0300() local
1833 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_BeginTransWithTrxId_Param_0100() local
1860 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_BeginTransWithTrxId_Param_0200() local
1887 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_CommitByTrxId_Param_0100() local
1913 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_CommitByTrxId_Param_0200() local
1948 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_RollBackByTrxId_Param_0100() local
1973 OH_Rdb_ConfigV2 *config = OH_Rdb_CreateConfig(); OH_Rdb_RollBackByTrxId_Param_0200() local
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/test_expectations/
H A DGPUTestExpectationsTest.cpp23 void validateConfigBase(const GPUTestConfig &config) in validateConfigBase() argument
25 EXPECT_EQ(IsWindows(), config.getConditions()[GPUTestConfig::kConditionWin]); in validateConfigBase()
26 EXPECT_EQ(IsOSX(), config.getConditions()[GPUTestConfig::kConditionMac]); in validateConfigBase()
27 EXPECT_EQ(IsIOS(), config.getConditions()[GPUTestConfig::kConditionIOS]); in validateConfigBase()
28 EXPECT_EQ(IsLinux(), config.getConditions()[GPUTestConfig::kConditionLinux]); in validateConfigBase()
29 EXPECT_EQ(IsAndroid(), config.getConditions()[GPUTestConfig::kConditionAndroid]); in validateConfigBase()
30 EXPECT_EQ(IsNexus5X(), config.getConditions()[GPUTestConfig::kConditionNexus5X]); in validateConfigBase()
32 config.getConditions()[GPUTestConfig::kConditionPixel2OrXL]); in validateConfigBase()
33 EXPECT_EQ(IsIntel(), config.getConditions()[GPUTestConfig::kConditionIntel]); in validateConfigBase()
34 EXPECT_EQ(IsAMD(), config in validateConfigBase()
43 validateConfigAPI(const GPUTestConfig &config, const GPUTestConfig::API &api, uint32_t preRotation) validateConfigAPI() argument
118 GPUTestConfig config; TEST_P() local
[all...]
/third_party/node/deps/base64/base64/bin/
H A Dbase64.c36 // Global config structure.
37 struct config { struct
122 buffer_alloc (const struct config *config, struct buffer *buf) in buffer_alloc() argument
128 config->name, strerror(errno)); in buffer_alloc()
143 writev_retry (const struct config *config, struct iovec *iov, size_t nvec) in writev_retry() argument
163 config->name, strerror(errno)); in writev_retry()
194 iov_append (const struct config *config, struc argument
213 write_stdout(const struct config *config, const char *buf, size_t len) write_stdout() argument
241 write_wrapped(const struct config *config, char *buf, size_t len) write_wrapped() argument
300 encode(const struct config *config, struct buffer *buf) encode() argument
357 decode(const struct config *config, struct buffer *buf) decode() argument
427 usage(FILE *fp, const struct config *config) usage() argument
443 get_wrap(struct config *config, const char *str) get_wrap() argument
470 parse_opts(int argc, char **argv, struct config *config) parse_opts() argument
549 struct config config = { main() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dconfig_file.c19 #include "config.h"
26 #include "utils/config.h"
304 static int wpa_config_process_blob(struct wpa_config *config, FILE *f, in wpa_config_process_blob() argument
324 wpa_config_set_blob(config, blob); in wpa_config_process_blob()
337 struct wpa_config *config; in wpa_config_read() local
344 config = cfgp; in wpa_config_read()
346 config = wpa_config_alloc_empty(NULL, NULL); in wpa_config_read()
347 if (config == NULL) { in wpa_config_read()
348 wpa_printf(MSG_ERROR, "Failed to allocate config file " in wpa_config_read()
352 tail = head = config in wpa_config_read()
1128 wpa_config_write_global(FILE *f, struct wpa_config *config) wpa_config_write_global() argument
1623 wpa_config_write(const char *name, struct wpa_config *config) wpa_config_write() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dconfig_file.c19 #include "config.h"
350 static int wpa_config_process_blob(struct wpa_config *config, FILE *f, in wpa_config_process_blob() argument
370 wpa_config_set_blob(config, blob); in wpa_config_process_blob()
383 struct wpa_config *config; in wpa_config_read() local
390 config = cfgp; in wpa_config_read()
392 config = wpa_config_alloc_empty(NULL, NULL); in wpa_config_read()
393 if (config == NULL) { in wpa_config_read()
394 wpa_printf(MSG_ERROR, "Failed to allocate config file " in wpa_config_read()
398 tail = head = config->ssid; in wpa_config_read()
401 cred_tail = cred_head = config in wpa_config_read()
1114 wpa_config_write_global(FILE *f, struct wpa_config *config) wpa_config_write_global() argument
1555 wpa_config_write(const char *name, struct wpa_config *config) wpa_config_write() argument
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf_firmware_cfg.c39 * @updatable: Indicates whether config items can be updated with
76 struct firmware_config *config = in fw_cfg_kobj_release() local
79 kfree(config); in fw_cfg_kobj_release()
85 struct firmware_config *config = in show_fw_cfg() local
87 struct kbase_device *kbdev = config->kbdev; in show_fw_cfg()
94 val = config->max; in show_fw_cfg()
96 val = config->min; in show_fw_cfg()
101 val = config->cur_val; in show_fw_cfg()
106 config->name, attr->name); in show_fw_cfg()
118 struct firmware_config *config in store_fw_cfg() local
221 struct firmware_config *config; kbase_csf_firmware_cfg_init() local
258 struct firmware_config *config; kbase_csf_firmware_cfg_term() local
281 struct firmware_config *config; kbase_csf_firmware_cfg_option_entry_parse() local
[all...]
/third_party/backends/tools/
H A Dcheck-usb-chip.c27 #include "../include/sane/config.h"
68 usb_set_configuration (*handle, dev->config[0].bConfigurationValue); in prepare_interface()
137 if (dev->config[0].interface[0].altsetting[0].bNumEndpoints != 1) in check_gt6801()
141 dev->config[0].interface[0].altsetting[0].bNumEndpoints); in check_gt6801()
144 if ((dev->config[0].interface[0].altsetting[0].endpoint[0]. in check_gt6801()
146 || (dev->config[0].interface[0].altsetting[0].endpoint[0]. in check_gt6801()
148 || (dev->config[0].interface[0].altsetting[0].endpoint[0]. in check_gt6801()
150 || (dev->config[0].interface[0].altsetting[0].endpoint[0].bInterval != in check_gt6801()
157 dev->config[0].interface[0].altsetting[0].endpoint[0]. in check_gt6801()
159 dev->config[ in check_gt6801()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DConfig_unittest.cpp13 // Create a generic, valid EGL config that can be modified to test sorting and
17 egl::Config config; in GenerateGenericConfig() local
19 config.bufferSize = 24; in GenerateGenericConfig()
20 config.redSize = 8; in GenerateGenericConfig()
21 config.greenSize = 8; in GenerateGenericConfig()
22 config.blueSize = 8; in GenerateGenericConfig()
23 config.luminanceSize = 0; in GenerateGenericConfig()
24 config.alphaSize = 8; in GenerateGenericConfig()
25 config.alphaMaskSize = 0; in GenerateGenericConfig()
26 config in GenerateGenericConfig()
62 egl::Config config = GenerateGenericConfig(); GenerateUniqueConfigs() local
137 egl::Config config = GenerateGenericConfig(); TEST() local
183 egl::Config config = GenerateGenericConfig(); TEST() local
[all...]
/third_party/alsa-lib/include/
H A Dconf.h42 /** \brief \c dlsym version for the config evaluate callback. */
44 /** \brief \c dlsym version for the config hook callback. */
89 int snd_config_top(snd_config_t **config);
91 int snd_config_load(snd_config_t *config, snd_input_t *in);
92 int snd_config_load_string(snd_config_t **config, const char *s, size_t size);
93 int snd_config_load_override(snd_config_t *config, snd_input_t *in);
94 int snd_config_save(snd_config_t *config, snd_output_t *out);
104 int snd_config_search(snd_config_t *config, const char *key,
106 int snd_config_searchv(snd_config_t *config,
108 int snd_config_search_definition(snd_config_t *config,
[all...]
/third_party/skia/third_party/externals/libwebp/tests/fuzzer/
H A Dadvanced_api_fuzzer.c24 WebPDecoderConfig config; in LLVMFuzzerTestOneInput() local
25 if (!WebPInitDecoderConfig(&config)) return 0; in LLVMFuzzerTestOneInput()
26 if (WebPGetFeatures(data, size, &config.input) != VP8_STATUS_OK) return 0; in LLVMFuzzerTestOneInput()
27 if ((size_t)config.input.width * config.input.height > kFuzzPxLimit) return 0; in LLVMFuzzerTestOneInput()
35 config.options.flip = value & 1; in LLVMFuzzerTestOneInput()
36 config.options.bypass_filtering = value & 2; in LLVMFuzzerTestOneInput()
37 config.options.no_fancy_upsampling = value & 4; in LLVMFuzzerTestOneInput()
38 config.options.use_threads = value & 8; in LLVMFuzzerTestOneInput()
40 config in LLVMFuzzerTestOneInput()
[all...]
/third_party/astc-encoder/Source/
H A Dastcenc_entry.cpp162 * @brief Validate config profile.
362 * @param[in,out] config The input compressor configuration.
367 astcenc_config &config in validate_config()
371 status = validate_profile(config.profile); in validate_config()
377 status = validate_flags(config.profile, config.flags); in validate_config()
383 status = validate_block_size(config.block_x, config.block_y, config.block_z); in validate_config()
391 if (!(config in validate_config()
454 astcenc_config& config = *configp; astcenc_config_init() local
663 const astcenc_config& config = *configp; astcenc_context_alloc() local
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dmsvs_emulation.py176 for config in configs[1:]:
177 system_includes = config.get("msvs_system_include_dirs", [])
191 for config in configs:
192 includes = config.get("msvs_system_include_dirs", [])
196 config["msvs_system_include_dirs"] = new_includes
222 for configname, config in configs.items():
223 getattr(self, field)[configname] = config.get(field, default())
233 for config in configs.values():
234 if field in config:
254 def GetVSMacroEnv(self, base_to_build=None, config
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmsvs_emulation.py176 for config in configs[1:]:
177 system_includes = config.get("msvs_system_include_dirs", [])
191 for config in configs:
192 includes = config.get("msvs_system_include_dirs", [])
196 config["msvs_system_include_dirs"] = new_includes
222 for configname, config in configs.items():
223 getattr(self, field)[configname] = config.get(field, default())
233 for config in configs.values():
234 if field in config:
254 def GetVSMacroEnv(self, base_to_build=None, config
[all...]

Completed in 21 milliseconds

12345678910>>...145