HomeSort by relevance Sort by last modified time
    Searched refs:Configs (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/runtime/compiler-rt/
Makefile 76 RuntimeLibrary.darwin.Configs := \
86 RuntimeLibrary.linux.Configs :=
106 RuntimeLibrary.linux.Configs += $(Runtime32BitConfigs)
110 RuntimeLibrary.linux.Configs += \
120 RuntimeLibrary.linux.Configs += $(Runtime32BitConfigs)
123 RuntimeLibrary.linux.Configs += asan-arm-android.so
186 $(RuntimeLibrary.$1.Configs:%=$(ResourceLibDir)/$1/libclang_rt.%)
207 $(RuntimeLibrary.$1.Configs:%=$(PROJ_resources_lib)/$1/libclang_rt.%)
  /external/compiler-rt/make/platform/
multi_arch.mk 4 Configs := m32 m64
clang_darwin.mk 32 Configs :=
38 Configs += eprintf
44 Configs += 10.4
49 Configs += ios
54 Configs += osx
58 Configs += cc_kext
63 Configs += cc_kext_ios5
67 Configs += profile_osx
69 Configs += profile_ios
73 Configs += asan_osx_dynami
    [all...]
clang_linux.mk 7 Configs :=
19 # Only define configs if we detected a linux target.
22 # Define configs only if arch in triple is i386 or x86_64
52 Configs += full-i386 profile-i386 san-i386 asan-i386 ubsan-i386 ubsan_cxx-i386
63 Configs += full-x86_64 profile-x86_64 san-x86_64 asan-x86_64 tsan-x86_64 \
76 Configs += asan-arm-android
darwin_fat.mk 5 # Configs - The names of each configuration to build; this is used to build
14 # architectures should do so using distinct configs, with the
26 Configs := Debug Release Profile
darwin_bni.mk 4 Configs := Debug Release Profile Static
  /external/compiler-rt/make/
lib_platforms.mk 6 PlainConfigVariables := Configs Description
8 RequiredConfigVariables := Configs Description
30 $$(foreach config,$$(Configs),\
58 $$(foreach config,$$(Configs),\
64 $$(foreach config,$$(Configs),\
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldisplay.c 324 if (disp->Configs) {
325 _eglDestroyArray(disp->Configs, free);
326 disp->Configs = NULL;
eglconfig.c 53 * It is also recommended that when there are N configs, their
86 if (!dpy->Configs) {
87 dpy->Configs = _eglCreateArray("Config", 16);
88 if (!dpy->Configs)
92 _eglAppendArray(dpy->Configs, (void *) conf);
110 conf = (_EGLConfig *) _eglFindArray(dpy->Configs, (void *) config);
663 * Quick sort an array of configs. This differs from the standard
668 _eglSortConfigs(const _EGLConfig **configs, EGLint count,
679 _eglSwapConfigs(&configs[pivot], &configs[count / 2])
    [all...]
egldisplay.h 152 _EGLArray *Configs;
  /external/mesa3d/src/egl/main/
egldisplay.c 324 if (disp->Configs) {
325 _eglDestroyArray(disp->Configs, free);
326 disp->Configs = NULL;
eglconfig.c 53 * It is also recommended that when there are N configs, their
86 if (!dpy->Configs) {
87 dpy->Configs = _eglCreateArray("Config", 16);
88 if (!dpy->Configs)
92 _eglAppendArray(dpy->Configs, (void *) conf);
110 conf = (_EGLConfig *) _eglFindArray(dpy->Configs, (void *) config);
663 * Quick sort an array of configs. This differs from the standard
668 _eglSortConfigs(const _EGLConfig **configs, EGLint count,
679 _eglSwapConfigs(&configs[pivot], &configs[count / 2])
    [all...]
egldisplay.h 152 _EGLArray *Configs;
  /external/compiler-rt/
Makefile 77 printf " Configurations: %s\n\n" "$($(key).Configs)";)
116 $(call Set,Tmp.Configs,$($(Tmp.Key).Configs))
120 $(Tmp.Name):: $(Tmp.Configs:%=$(Tmp.Name)-%)
127 $(foreach config,$(Tmp.Configs),\
  /external/chromium_org/tools/gn/
variables.cc 242 "all_dependent_configs: [label list] Configs to be forced on dependents.";
244 "all_dependent_configs: Configs to be forced on dependents.\n"
249 " depending on those, will have the configs listed in this variable\n"
250 " added to them. These configs will also apply to the current target.\n"
254 " these force-added configs in their \"configs\" variable while the\n"
317 const char kConfigs[] = "configs";
319 "configs: [label list] Configs applying to this target.";
321 "configs: Configs applying to this target.\n
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d.c 418 * Add configs to display and return the next config ID.
495 if (dpy->Configs) {
496 _eglDestroyArray(dpy->Configs, egl_g3d_free_config);
497 dpy->Configs = NULL;
572 /* enable MESA_screen_surface before adding (and validating) configs */
616 _eglError(EGL_NOT_INITIALIZED, "eglInitialize(unable to add configs)");
egl_g3d_api.c 122 EGLConfig *configs, EGLint size, EGLint *num_configs)
140 return _eglFilterConfigArray(dpy->Configs, configs, size, num_configs,
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.c 418 * Add configs to display and return the next config ID.
495 if (dpy->Configs) {
496 _eglDestroyArray(dpy->Configs, egl_g3d_free_config);
497 dpy->Configs = NULL;
572 /* enable MESA_screen_surface before adding (and validating) configs */
616 _eglError(EGL_NOT_INITIALIZED, "eglInitialize(unable to add configs)");
egl_g3d_api.c 122 EGLConfig *configs, EGLint size, EGLint *num_configs)
140 return _eglFilterConfigArray(dpy->Configs, configs, size, num_configs,
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
platform_android.c 508 /* support only double buffered configs */
529 /* post-process configs */
530 for (i = 0; i < dpy->Configs->Size; i++) {
531 struct dri2_egl_config *dri2_conf = dri2_egl_config(dpy->Configs->Elements[i]);
741 err = "DRI2: failed to add configs";
egl_dri2.c 225 num_configs = _eglFilterArray(disp->Configs, (void **) &matching_config, 1,
    [all...]
platform_x11.c 351 /* We only use the DRI drivers single buffer configs. This
655 if (!_eglGetArraySize(disp->Configs)) {
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_android.c 508 /* support only double buffered configs */
529 /* post-process configs */
530 for (i = 0; i < dpy->Configs->Size; i++) {
531 struct dri2_egl_config *dri2_conf = dri2_egl_config(dpy->Configs->Elements[i]);
741 err = "DRI2: failed to add configs";
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/glx/
egl_glx.c 631 if (!_eglGetArraySize(disp->Configs)) {
    [all...]
  /external/mesa3d/src/egl/drivers/glx/
egl_glx.c 631 if (!_eglGetArraySize(disp->Configs)) {
    [all...]

Completed in 1103 milliseconds

1 2