/third_party/skia/third_party/externals/imgui/examples/example_sdl_metal/ |
H A D | Makefile | 17 LIBS += `sdl2-config --libs` 21 CXXFLAGS += `sdl2-config --cflags`
|
/third_party/optimized-routines/ |
H A D | Makefile | 12 # Configure these in config.mk, do not make changes in this file. 31 -include config.mk 43 # foo-...: Variables defined in foo/Dir.mk or by config.mk. 71 rm -f config.mk
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | icuplug.h | 351 * @param config user specified configuration string, if available, or NULL. 357 uplug_loadPlugFromEntrypoint(UPlugEntrypoint *entrypoint, const char *config, UErrorCode *status); 361 * Inject a plugin from a library, as if the information came from a config file. 365 * @param config configuration string, or NULL 371 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status);
|
/third_party/vk-gl-cts/framework/egl/ |
H A D | egluConfigInfo.hpp | 23 * \brief EGL config info. 136 void queryCoreConfigInfo (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, ConfigInfo* dst); 137 void queryExtConfigInfo (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, ConfigInfo* dst);
|
H A D | egluNativeWindow.cpp | 100 NativeWindow* NativeWindowFactory::createWindow (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, const WindowParams& params) const in createWindow() argument 102 DE_UNREF(display && config && attribList); in createWindow()
|
/test/xts/dcts/testtools/disjsTest/server/ |
H A D | testApi.js | 52 const config = { 56 kvManager = disData.createKVManager(config); 73 const config = { 77 kvManager = disData.createKVManager(config);
|
/third_party/curl/src/ |
H A D | tool_progress.c | 90 struct OperationConfig *config = per->config; in xferinfo_cb() local 99 if(config->readbusy) { in xferinfo_cb() 100 config->readbusy = FALSE; in xferinfo_cb()
|
/third_party/alsa-lib/include/ |
H A D | local.h | 25 #include "config.h" 382 int snd_config_search_alias_hooks(snd_config_t *config, 388 int _snd_config_load_with_include(snd_config_t *config, snd_input_t *in, 404 const char *uc_mgr_alibcfg_by_device(snd_config_t **config, const char *name); 413 static inline const char *uc_mgr_alibcfg_by_device(snd_config_t **config, const char *name) { return NULL; } in uc_mgr_alibcfg_by_device() argument
|
/third_party/icu/tools/release/c/ |
H A D | uconfigtest.sh | 71 # ------------ End of config variables 124 config() function 126 stats config 149 $SRC_DIR/runConfigureICU ${ICUPLATFORM} $CONFIG_OPTS $COPTS --prefix=${BUILD_DIR}/I${NAME} --srcdir=$SRC_DIR 2>&1 > ${BUILD_DIR}/${NAME}/config.out 212 ban ; clean ; config ; bld ${1}
|
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/ |
H A D | SfxSetup.cpp | 167 AString config;
in WinMain() local 168 if (!ReadDataString(fullPath, kStartID, kEndID, config))
in WinMain() 171 ShowErrorMessage(L"Can't load config info");
in WinMain() 178 if (!config.IsEmpty())
in WinMain() 181 if (!GetTextConfig(config, pairs))
in WinMain()
|
/third_party/json/tools/amalgamate/ |
H A D | amalgamate.py | 65 with open(args.config, 'r') as f: 66 config = json.loads(f.read()) 67 for key in config: 68 setattr(self, key, config[key]) 275 "-c path/to/config.json", 285 argsparser.add_argument("-c", "--config", dest="config", 286 required=True, metavar="", help="path to a JSON config file")
|
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | columnify.js | 38 var columnConfigs = options.config || {}; 39 delete options.config; // remove config so doesn't appear on every column. 46 // options.config[columnName] => options => DEFAULTS 49 options.config = options.config || Object.create(null); 68 // initialize column defaults (each column inherits from options.config)
|
H A D | index.js | 32 let columnConfigs = options.config || {} 33 delete options.config // remove config so doesn't appear on every column. 40 // options.config[columnName] => options => DEFAULTS 43 options.config = options.config || Object.create(null) 62 // initialize column defaults (each column inherits from options.config)
|
/third_party/libfuse/example/ |
H A D | notify_store_retrieve.c | 54 * gcc -Wall notify_store_retrieve.c `pkg-config fuse3 --cflags --libs` -o notify_store_retrieve 353 struct fuse_loop_config config; in main() local 403 config.clone_fd = opts.clone_fd; in main() 404 config.max_idle_threads = opts.max_idle_threads; in main() 405 ret = fuse_session_loop_mt(se, &config); in main()
|
H A D | notify_inval_entry.c | 72 * gcc -Wall notify_inval_entry.c `pkg-config fuse3 --cflags --libs` -o notify_inval_entry 310 struct fuse_loop_config config; in main() local 365 config.clone_fd = opts.clone_fd; in main() 366 config.max_idle_threads = opts.max_idle_threads; in main() 367 ret = fuse_session_loop_mt(se, &config); in main()
|
H A D | notify_inval_inode.c | 55 * gcc -Wall notify_inval_inode.c `pkg-config fuse3 --cflags --libs` -o notify_inval_inode 292 struct fuse_loop_config config; in main() local 345 config.clone_fd = opts.clone_fd; in main() 346 config.max_idle_threads = opts.max_idle_threads; in main() 347 ret = fuse_session_loop_mt(se, &config); in main()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | init.c | 244 static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT; variable 575 && !RUN_ONCE_ALT(&config, ossl_init_no_config, ossl_init_config)) in OPENSSL_init_crypto() 588 ret = RUN_ONCE(&config, ossl_init_config); in OPENSSL_init_crypto() 593 ret = RUN_ONCE_ALT(&config, ossl_init_config_settings, in OPENSSL_init_crypto()
|
/third_party/openssl/crypto/ |
H A D | init.c | 244 static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT; variable 575 && !RUN_ONCE_ALT(&config, ossl_init_no_config, ossl_init_config)) in OPENSSL_init_crypto() 588 ret = RUN_ONCE(&config, ossl_init_config); in OPENSSL_init_crypto() 593 ret = RUN_ONCE_ALT(&config, ossl_init_config_settings, in OPENSSL_init_crypto()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | picture_enc.c | 236 WebPConfig config; in Encode() local 242 if (!WebPConfigPreset(&config, WEBP_PRESET_DEFAULT, quality_factor) || in Encode() 247 config.lossless = !!lossless; in Encode() 255 ok = import(&pic, rgba, stride) && WebPEncode(&config, &pic); in Encode()
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
H A D | decode.h | 384 WebPDecoderConfig config; 385 CHECK(WebPInitDecoderConfig(&config)); 388 CHECK(WebPGetFeatures(data, data_size, &config.input) == VP8_STATUS_OK); 390 // C) Adjust 'config', if needed 391 config.no_fancy_upsampling = 1; 392 config.output.colorspace = MODE_BGRA; 395 // Note that you can also make config.output point to an externally 397 // picture. Otherwise, config.output will just be used to allocate memory 401 CHECK(WebPDecode(data, data_size, &config) == VP8_STATUS_OK); 403 // E) Decoded image is now in config 475 WebPInitDecoderConfig(WebPDecoderConfig* config) WebPInitDecoderConfig() argument [all...] |
/third_party/toybox/scripts/ |
H A D | make.sh | 17 [ -z "$KCONFIG_CONFIG" ] && KCONFIG_CONFIG=.config 131 #TODO: "make $SED && make" doesn't regenerate config.h because diff .config 132 if true #isnewer generated/config.h "$KCONFIG_CONFIG" 134 echo "Make generated/config.h from $KCONFIG_CONFIG." 159 $KCONFIG_CONFIG > generated/config.h || exit 1 167 # Process config.h and newtoys.h to generate FLAG_x macros. Note we must 175 # .config and once to get flags for allyesconfig 185 cat generated/config.h 187 $SED '/USE_.*([^)]*)$/s/$/ __VA_ARGS__/' generated/config [all...] |
/third_party/python/Python/ |
H A D | bootstrap_hash.c | 548 _Py_HashRandomization_Init(const PyConfig *config) in _Py_HashRandomization_Init() argument 558 if (config->use_hash_seed) { in _Py_HashRandomization_Init() 559 if (config->hash_seed == 0) { in _Py_HashRandomization_Init() 565 lcg_urandom(config->hash_seed, secret, secret_size); in _Py_HashRandomization_Init()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eapol_supp/ |
H A D | eapol_supp_sm.h | 324 struct eap_peer_config *config, 349 int eapol_sm_get_erp_info(struct eapol_sm *sm, struct eap_peer_config *config, 406 struct eap_peer_config *config, in eapol_sm_notify_config() 479 eapol_sm_get_erp_info(struct eapol_sm *sm, struct eap_peer_config *config, in eapol_sm_get_erp_info() argument 405 eapol_sm_notify_config(struct eapol_sm *sm, struct eap_peer_config *config, struct eapol_config *conf) eapol_sm_notify_config() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eapol_supp/ |
H A D | eapol_supp_sm.h | 339 struct eap_peer_config *config, 364 int eapol_sm_get_erp_info(struct eapol_sm *sm, struct eap_peer_config *config, 421 struct eap_peer_config *config, in eapol_sm_notify_config() 494 eapol_sm_get_erp_info(struct eapol_sm *sm, struct eap_peer_config *config, in eapol_sm_get_erp_info() argument 420 eapol_sm_notify_config(struct eapol_sm *sm, struct eap_peer_config *config, struct eapol_config *conf) eapol_sm_notify_config() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | dxva2.c | 321 DXVA2_ConfigPictureDecode *config) in dxva2_get_decoder_configuration() 337 *config = cfg_list[ret]; in dxva2_get_decoder_configuration() 351 DXVA2_ConfigPictureDecode config; in dxva2_create_decoder() local 392 ret = dxva2_get_decoder_configuration(avctx, &device_guid, &desc, &config); in dxva2_create_decoder() 398 &desc, &config, frames_hwctx->surfaces, in dxva2_create_decoder() 405 sctx->dxva2_config = config; in dxva2_create_decoder() 423 D3D11_VIDEO_DECODER_CONFIG *config) in d3d11va_get_decoder_configuration() 450 *config = cfg_list[ret]; in d3d11va_get_decoder_configuration() 472 D3D11_VIDEO_DECODER_CONFIG config; in d3d11va_create_decoder() local 514 ret = d3d11va_get_decoder_configuration(avctx, device_hwctx->video_device, &desc, &config); in d3d11va_create_decoder() 319 dxva2_get_decoder_configuration(AVCodecContext *avctx, const GUID *device_guid, const DXVA2_VideoDesc *desc, DXVA2_ConfigPictureDecode *config) dxva2_get_decoder_configuration() argument 420 d3d11va_get_decoder_configuration(AVCodecContext *avctx, ID3D11VideoDevice *video_device, const D3D11_VIDEO_DECODER_DESC *desc, D3D11_VIDEO_DECODER_CONFIG *config) d3d11va_get_decoder_configuration() argument [all...] |