Home
last modified time | relevance | path

Searched refs:Enable (Results 1 – 25 of 549) sorted by relevance

12345678910>>...22

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
Ddriverfuncs.c134 driver->Enable = NULL; in _mesa_init_driver_functions()
259 ctx->Driver.Enable(ctx, GL_ALPHA_TEST, ctx->Color.AlphaEnabled); in _mesa_init_driver_state()
260 ctx->Driver.Enable(ctx, GL_BLEND, ctx->Color.BlendEnabled); in _mesa_init_driver_state()
261 ctx->Driver.Enable(ctx, GL_COLOR_LOGIC_OP, ctx->Color.ColorLogicOpEnabled); in _mesa_init_driver_state()
262 ctx->Driver.Enable(ctx, GL_COLOR_SUM, ctx->Fog.ColorSumEnabled); in _mesa_init_driver_state()
263 ctx->Driver.Enable(ctx, GL_CULL_FACE, ctx->Polygon.CullFlag); in _mesa_init_driver_state()
264 ctx->Driver.Enable(ctx, GL_DEPTH_TEST, ctx->Depth.Test); in _mesa_init_driver_state()
265 ctx->Driver.Enable(ctx, GL_DITHER, ctx->Color.DitherFlag); in _mesa_init_driver_state()
266 ctx->Driver.Enable(ctx, GL_FOG, ctx->Fog.Enabled); in _mesa_init_driver_state()
267 ctx->Driver.Enable(ctx, GL_LIGHTING, ctx->Light.Enabled); in _mesa_init_driver_state()
[all …]
/external/mesa3d/src/mesa/drivers/common/
Ddriverfuncs.c134 driver->Enable = NULL; in _mesa_init_driver_functions()
259 ctx->Driver.Enable(ctx, GL_ALPHA_TEST, ctx->Color.AlphaEnabled); in _mesa_init_driver_state()
260 ctx->Driver.Enable(ctx, GL_BLEND, ctx->Color.BlendEnabled); in _mesa_init_driver_state()
261 ctx->Driver.Enable(ctx, GL_COLOR_LOGIC_OP, ctx->Color.ColorLogicOpEnabled); in _mesa_init_driver_state()
262 ctx->Driver.Enable(ctx, GL_COLOR_SUM, ctx->Fog.ColorSumEnabled); in _mesa_init_driver_state()
263 ctx->Driver.Enable(ctx, GL_CULL_FACE, ctx->Polygon.CullFlag); in _mesa_init_driver_state()
264 ctx->Driver.Enable(ctx, GL_DEPTH_TEST, ctx->Depth.Test); in _mesa_init_driver_state()
265 ctx->Driver.Enable(ctx, GL_DITHER, ctx->Color.DitherFlag); in _mesa_init_driver_state()
266 ctx->Driver.Enable(ctx, GL_FOG, ctx->Fog.Enabled); in _mesa_init_driver_state()
267 ctx->Driver.Enable(ctx, GL_LIGHTING, ctx->Light.Enabled); in _mesa_init_driver_state()
[all …]
/external/llvm/lib/Target/Mips/
DMips.td40 "Enable o32 ABI">;
42 "Enable n32 ABI">;
44 "Enable n64 ABI">;
46 "Enable eabi ABI">;
48 "true", "Enable vector FPU instructions.">;
50 "Enable 'signext in register' instructions.">;
52 "Enable 'conditional move' instructions.">;
54 "Enable 'byte/half swap' instructions.">;
56 "Enable 'count leading bits' instructions.">;
58 "Enable 'FP indexed load/store' instructions.">;
/external/webrtc/src/modules/audio_processing/test/
Dunit_test.cc274 ap->echo_cancellation()->Enable(true); in DeadlockProc()
275 ap->gain_control()->Enable(true); in DeadlockProc()
276 ap->high_pass_filter()->Enable(true); in DeadlockProc()
277 ap->level_estimator()->Enable(true); in DeadlockProc()
278 ap->noise_suppression()->Enable(true); in DeadlockProc()
279 ap->voice_detection()->Enable(true); in DeadlockProc()
357 EXPECT_EQ(apm_->kNoError, apm_->gain_control()->Enable(true)); in TEST_F()
367 EXPECT_EQ(apm_->kNoError, apm_->echo_cancellation()->Enable(true)); in TEST_F()
375 EXPECT_EQ(apm_->kNoError, apm_->gain_control()->Enable(false)); in TEST_F()
381 EXPECT_EQ(apm_->kNoError, apm_->echo_cancellation()->Enable(true)); in TEST_F()
[all …]
Dprocess_test.cc171 ASSERT_EQ(apm->kNoError, apm->level_estimator()->Enable(true)); in void_main()
224 ASSERT_EQ(apm->kNoError, apm->echo_cancellation()->Enable(true)); in void_main()
231 ASSERT_EQ(apm->kNoError, apm->echo_cancellation()->Enable(true)); in void_main()
237 ASSERT_EQ(apm->kNoError, apm->echo_cancellation()->Enable(true)); in void_main()
242 ASSERT_EQ(apm->kNoError, apm->echo_cancellation()->Enable(true)); in void_main()
247 ASSERT_EQ(apm->kNoError, apm->echo_cancellation()->Enable(true)); in void_main()
252 ASSERT_EQ(apm->kNoError, apm->level_estimator()->Enable(false)); in void_main()
255 ASSERT_EQ(apm->kNoError, apm->echo_control_mobile()->Enable(true)); in void_main()
268 ASSERT_EQ(apm->kNoError, apm->gain_control()->Enable(true)); in void_main()
271 ASSERT_EQ(apm->kNoError, apm->gain_control()->Enable(true)); in void_main()
[all …]
/external/llvm/lib/Target/PowerPC/
DPPC.td51 "Enable 64-bit instructions">;
53 "Enable 64-bit registers usage for ppc32 [beta]">;
55 "Enable Altivec instructions">;
57 "Enable the MFOCRF instruction">;
59 "Enable the fsqrt instruction">;
61 "Enable the fre instruction">;
63 "Enable the fres instruction">;
65 "Enable the frsqrte instruction">;
67 "Enable the frsqrtes instruction">;
71 "Enable the stfiwx instruction">;
[all …]
/external/llvm/lib/Target/X86/
DX86.td31 "Enable conditional move instructions">;
38 "Enable MMX instructions">;
40 "Enable SSE instructions",
45 "Enable SSE2 instructions",
48 "Enable SSE3 instructions",
51 "Enable SSSE3 instructions",
54 "Enable SSE 4.1 instructions",
57 "Enable SSE 4.2 instructions",
60 "Enable 3DNow! instructions",
63 "Enable 3DNow! Athlon instructions",
[all …]
/external/chromium_org/content/renderer/media/
Dmedia_stream_audio_processor_options.cc28 int err = audio_processing->echo_control_mobile()->Enable(true); in EnableEchoCancellation()
33 int err = audio_processing->echo_cancellation()->Enable(true); in EnableEchoCancellation()
47 err |= audio_processing->noise_suppression()->Enable(true); in EnableNoiseSuppression()
52 CHECK_EQ(audio_processing->high_pass_filter()->Enable(true), 0); in EnableHighPassFilter()
57 int err = audio_processing->voice_detection()->Enable(true); in EnableTypingDetection()
/external/bison/m4/
Dextensions.m42 # Enable extensions on systems that normally disable them.
31 # Enable extensions on systems that normally disable them,
66 [/* Enable extensions on AIX 3, Interix. */
70 /* Enable general extensions on Mac OS X. */
74 /* Enable GNU extensions on systems that have them. */
78 /* Enable threading extensions on Solaris. */
82 /* Enable extensions on HP NonStop. */
86 /* Enable general extensions on Solaris. */
110 # Enable extensions on systems that normally disable them,
/external/webrtc/src/modules/audio_processing/interface/
Daudio_processing.h258 virtual int Enable(bool enable) = 0;
347 virtual int Enable(bool enable) = 0;
402 virtual int Enable(bool enable) = 0;
491 virtual int Enable(bool enable) = 0;
501 virtual int Enable(bool enable) = 0;
527 virtual int Enable(bool enable) = 0;
555 virtual int Enable(bool enable) = 0;
/external/chromium_org/third_party/libxml/patches/
Dicu-win3228 txt += " xptr: Enable XPointer support (" + (withXptr? "yes" : "no") + ")\n";
29 txt += " xinclude: Enable XInclude support (" + (withXinclude? "yes" : "no") + ")\n";
30 txt += " iconv: Enable iconv support (" + (withIconv? "yes" : "no") + ")\n";
31 + txt += " icu: Enable icu support (" + (withIcu? "yes" : "no") + ")\n";
32 txt += " iso8859x: Enable ISO8859X support (" + (withIso8859x? "yes" : "no") + ")\n";
33 txt += " zlib: Enable zlib support (" + (withZlib? "yes" : "no") + ")\n";
34 txt += " xml_debug: Enable XML debbugging module (" + (withDebug? "yes" : "no") + ")\n";
/external/clang/include/clang/StaticAnalyzer/Core/
DCheckerOptInfo.h25 bool Enable; variable
30 : Name(name), Enable(enable), Claimed(false) { } in CheckerOptInfo()
33 bool isEnabled() const { return Enable; } in isEnabled()
/external/ipsec-tools/src/racoon/doc/
DFAQ36 Enable NAT-Traversal. This needs kernel support, which is
51 Enable IKE fragmentation, which is a workaround for
54 Enable hybrid authentication, and ISAKMP mode config and
58 Enable the use of RADIUS with hybrid authentication on the
62 Enable the use of PAM with hybrid authentication on the
65 Enable GSS-API, for Kerberos V support.
67 Enable statistics logging function.
69 Enable to use unspecified a mode of SA.
71 Enable IPv6 support.
/external/chromium_org/gpu/command_buffer/service/
Dvertex_attrib_manager_unittest.cc81 manager_->Enable(ii, true); in TEST_F()
86 TEST_F(VertexAttribManagerTest, Enable) { in TEST_F() argument
93 manager_->Enable(1, true); in TEST_F()
96 manager_->Enable(3, true); in TEST_F()
100 manager_->Enable(1, false); in TEST_F()
104 manager_->Enable(3, false); in TEST_F()
154 manager_->Enable(1, true); in TEST_F()
/external/iputils/ninfod/
Dconfigure.in45 dnl Checks for Enable/With
47 [ --enable-debug Enable debugging])
50 [Enable debugging])
57 [Enable threads])
61 [ --enable-suptypes Enable suptypes qtype (deprecated)])
64 [Enable suptypes (deprecated)])
68 [ --enable-ttl Enable ttl support for qtypes (deprecated)])
71 [Enable ttl support for qtypes (deprecated)])
/external/openfst/
DREADME19 --enable-compact-fsts Enable all CompactFst classes (def: no)
20 --enable-const-fsts Enable all ConstFst classes (def: no)
21 --enable-far Enable FAR (FST Archive) extension (def: no)
22 --enable-lookahead-fsts Enable LookAheadFst classes (def: no)
23 --enable-ngram-fsts Enable NGramFst classes (def: no)
/external/qemu/distrib/sdl-1.2.15/include/
DSDL_config.h.in159 /* Enable various audio drivers */
189 /* Enable various cdrom drivers */
206 /* Enable various input drivers */
222 /* Enable various shared object loading systems */
232 /* Enable various threading systems */
243 /* Enable various timer systems */
255 /* Enable various video drivers */
297 /* Enable OpenGL support */
307 /* Enable assembly routines */
/external/llvm/lib/Target/ARM/
DARM.td31 "Enable VFP2 instructions">;
33 "Enable VFP3 instructions",
36 "Enable NEON instructions",
39 "Enable Thumb2 instructions">;
44 "Enable half-precision floating point">;
46 "Enable VFP4 instructions",
49 "true", "Enable ARMv8 FP",
54 "Enable divide instructions">;
57 "Enable divide instructions in ARM mode">;
59 "Enable Thumb2 extract and pack instructions">;
[all …]
/external/eigen/Eigen/src/Core/
DForceAlignedAccess.h126 template<bool Enable>
127 inline typename internal::add_const_on_value_type<typename internal::conditional<Enable,ForceAligne…
137 template<bool Enable>
138 inline typename internal::conditional<Enable,ForceAlignedAccess<Derived>,Derived&>::type
/external/sepolicy/
Dpolicy_capabilities1 # Enable new networking controls.
4 # Enable open permission check.
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
DAMDILBase.td24 "Enable 64bit double precision operations">;
28 "Enable byte addressable stores">;
32 "Enable duplicate barrier detection(HD5XXX or later).">;
36 "Enable image functions">;
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILBase.td24 "Enable 64bit double precision operations">;
28 "Enable byte addressable stores">;
32 "Enable duplicate barrier detection(HD5XXX or later).">;
36 "Enable image functions">;
/external/protobuf/
Dconfig.h.in81 /* Enable classes using zlib compression. */
116 /* Enable extensions on AIX 3, Interix. */
120 /* Enable GNU extensions on systems that have them. */
124 /* Enable threading extensions on Solaris. */
128 /* Enable extensions on HP NonStop. */
132 /* Enable general extensions on Solaris. */
/external/clang/include/clang/Driver/
DCLCompatOptions.td40 def _SLASH_GR : CLFlag<"GR">, HelpText<"Enable RTTI">, Alias<frtti>;
60 def _SLASH_Oy : CLFlag<"Oy">, HelpText<"Enable frame pointer omission">,
70 def _SLASH_W1 : CLFlag<"W1">, HelpText<"Enable -Wall">, Alias<Wall>;
71 def _SLASH_W2 : CLFlag<"W2">, HelpText<"Enable -Wall">, Alias<Wall>;
72 def _SLASH_W3 : CLFlag<"W3">, HelpText<"Enable -Wall">, Alias<Wall>;
73 def _SLASH_W4 : CLFlag<"W4">, HelpText<"Enable -Wall">, Alias<Wall>;
74 def _SLASH_Wall : CLFlag<"Wall">, HelpText<"Enable -Wall">, Alias<Wall>;
/external/llvm/lib/Target/Sparc/
DSparc.td25 "Enable SPARC-V9 instructions">;
28 "Enable deprecated V8 instructions in V9 mode">;
31 "Enable UltraSPARC Visual Instruction Set extensions">;

12345678910>>...22