Home
last modified time | relevance | path

Searched defs:mode (Results 1 – 25 of 3306) sorted by relevance

12345678910>>...133

/external/grpc-grpc/tools/run_tests/performance/
Dscenario_result_schema.json5 "mode": "NULLABLE", string
10 "mode": "NULLABLE", string
15 "mode": "NULLABLE", string
20 "mode": "NULLABLE", string
25 "mode": "NULLABLE", string
30 "mode": "NULLABLE", string
35 "mode": "NULLABLE", string
42 "mode": "NULLABLE", string
47 "mode": "NULLABLE", string
52 "mode": "NULLABLE", string
[all …]
/external/v8/src/codegen/
Dreloc-info.h119 static constexpr bool IsRealRelocMode(Mode mode) { in IsRealRelocMode()
123 static constexpr bool IsGCRelocMode(Mode mode) { in IsGCRelocMode()
126 static constexpr bool IsShareableRelocMode(Mode mode) { in IsShareableRelocMode()
130 static constexpr bool IsCodeTarget(Mode mode) { return mode == CODE_TARGET; } in IsCodeTarget()
131 static constexpr bool IsCodeTargetMode(Mode mode) { in IsCodeTargetMode()
134 static constexpr bool IsRelativeCodeTarget(Mode mode) { in IsRelativeCodeTarget()
137 static constexpr bool IsFullEmbeddedObject(Mode mode) { in IsFullEmbeddedObject()
140 static constexpr bool IsCompressedEmbeddedObject(Mode mode) { in IsCompressedEmbeddedObject()
143 static constexpr bool IsEmbeddedObjectMode(Mode mode) { in IsEmbeddedObjectMode()
147 static constexpr bool IsRuntimeEntry(Mode mode) { in IsRuntimeEntry()
[all …]
/external/grpc-grpc/tools/run_tests/build_stats/
Dbuild_stats_schema.json5 "mode": "NULLABLE" string
10 "mode": "NULLABLE" string
15 "mode": "REPEATED", string
20 "mode": "NULLABLE" string
25 "mode": "NULLABLE" string
30 "mode": "NULLABLE" string
35 "mode": "NULLABLE" string
40 "mode": "REPEATED", string
45 "mode": "NULLABLE" string
50 "mode": "NULLABLE" string
Dbuild_stats_schema_no_matrix.json5 "mode": "NULLABLE" string
10 "mode": "NULLABLE" string
15 "mode": "NULLABLE" string
20 "mode": "NULLABLE" string
25 "mode": "NULLABLE" string
30 "mode": "NULLABLE" string
35 "mode": "REPEATED", string
40 "mode": "NULLABLE" string
45 "mode": "NULLABLE" string
/external/xz-embedded/linux/lib/xz/
Dxz_private.h67 # define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE) argument
69 # define DEC_IS_SINGLE(mode) (false) argument
73 # define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC) argument
75 # define DEC_IS_PREALLOC(mode) (false) argument
79 # define DEC_IS_DYNALLOC(mode) ((mode) == XZ_DYNALLOC) argument
81 # define DEC_IS_DYNALLOC(mode) (false) argument
85 # define DEC_IS_MULTI(mode) (true) argument
87 # define DEC_IS_MULTI(mode) ((mode) != XZ_SINGLE) argument
89 # define DEC_IS_MULTI(mode) (false) argument
/external/deqp/framework/common/
DtcuTexVerifierUtil.hpp59 inline bool isNearestMipmapFilter (const Sampler::FilterMode mode) in isNearestMipmapFilter()
64 inline bool isLinearMipmapFilter (const Sampler::FilterMode mode) in isLinearMipmapFilter()
69 inline bool isMipmapFilter (const Sampler::FilterMode mode) in isMipmapFilter()
74 inline bool isLinearFilter (const Sampler::FilterMode mode) in isLinearFilter()
79 inline bool isNearestFilter (const Sampler::FilterMode mode) in isNearestFilter()
84 inline Sampler::FilterMode getLevelFilter (const Sampler::FilterMode mode) in getLevelFilter()
89 inline bool isWrapModeSupported (const Sampler::WrapMode mode) in isWrapModeSupported()
/external/mesa3d/src/mesa/main/
Dpolygon.c54 cull_face(struct gl_context *ctx, GLenum mode, bool no_error) in cull_face()
75 _mesa_CullFace_no_error(GLenum mode) in _mesa_CullFace_no_error()
83 _mesa_CullFace(GLenum mode) in _mesa_CullFace()
106 front_face(struct gl_context *ctx, GLenum mode, bool no_error) in front_face()
126 _mesa_FrontFace_no_error(GLenum mode) in _mesa_FrontFace_no_error()
134 _mesa_FrontFace(GLenum mode) in _mesa_FrontFace()
158 polygon_mode(struct gl_context *ctx, GLenum face, GLenum mode, bool no_error) in polygon_mode()
224 _mesa_PolygonMode_no_error(GLenum face, GLenum mode) in _mesa_PolygonMode_no_error()
232 _mesa_PolygonMode(GLenum face, GLenum mode) in _mesa_PolygonMode()
Ddraw_validate.c361 _mesa_is_valid_prim_mode(const struct gl_context *ctx, GLenum mode) in _mesa_is_valid_prim_mode()
392 _mesa_valid_prim_mode(struct gl_context *ctx, GLenum mode, const char *name) in _mesa_valid_prim_mode()
654 GLenum mode, GLsizei count, GLenum type, in validate_DrawElements_common()
716 GLenum mode, GLsizei count, GLenum type, in _mesa_validate_DrawElements()
731 GLenum mode, const GLsizei *count, in _mesa_validate_MultiDrawElements()
794 _mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode, in _mesa_validate_DrawRangeElements()
857 count_tessellated_primitives(GLenum mode, GLuint count, GLuint num_instances) in count_tessellated_primitives()
910 GLenum mode, GLsizei count, GLsizei numInstances) in validate_draw_arrays()
947 _mesa_validate_DrawArrays(struct gl_context *ctx, GLenum mode, GLsizei count) in _mesa_validate_DrawArrays()
954 _mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first, in _mesa_validate_DrawArraysInstanced()
[all …]
/external/python/cpython3/Modules/
D_stat.c88 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) argument
92 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) argument
96 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) argument
100 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) argument
104 # define S_ISDOOR(mode) 0 argument
108 # define S_ISPORT(mode) 0 argument
112 # define S_ISWHT(mode) 0 argument
251 mode_t mode; in _PyLong_AsMode_t() local
324 mode_t mode = _PyLong_AsMode_t(omode); in stat_S_IMODE() local
337 mode_t mode = _PyLong_AsMode_t(omode); in stat_S_IFMT() local
[all …]
/external/python/cpython3/Lib/
Dstat.py21 def S_IMODE(mode): argument
27 def S_IFMT(mode): argument
50 def S_ISDIR(mode): argument
54 def S_ISCHR(mode): argument
58 def S_ISBLK(mode): argument
62 def S_ISREG(mode): argument
66 def S_ISFIFO(mode): argument
70 def S_ISLNK(mode): argument
74 def S_ISSOCK(mode): argument
78 def S_ISDOOR(mode): argument
[all …]
/external/tensorflow/tensorflow/python/keras/distribute/
Ddistributed_training_utils.py140 def unwrap_output_dict(strategy, grouped_outputs, mode): argument
457 mode, argument
477 mode=None): argument
624 def _prepare_feed_values(model, inputs, targets, sample_weights, mode): argument
707 def _build_network_on_replica(model, mode, inputs=None, targets=None): argument
777 def _build_distributed_network(model, strategy, mode, inputs=None, argument
787 def _clone_and_build_model(model, mode, inputs=None, targets=None): argument
829 def clone_model_on_replicas(model, strategy, mode, inputs=None, targets=None): argument
839 def _make_execution_function(model, mode): argument
853 def _make_execution_function_without_cloning(model, mode): argument
[all …]
/external/deqp-deps/amber/src/
Dtype.h38 static bool IsSignedInt(FormatMode mode) { in IsSignedInt()
43 static bool IsUnsignedInt(FormatMode mode) { in IsUnsignedInt()
48 static bool IsInt(FormatMode mode) { in IsInt()
52 static bool IsFloat(FormatMode mode) { in IsFloat()
56 static bool IsInt8(FormatMode mode, uint32_t num_bits) { in IsInt8()
59 static bool IsInt16(FormatMode mode, uint32_t num_bits) { in IsInt16()
62 static bool IsInt32(FormatMode mode, uint32_t num_bits) { in IsInt32()
65 static bool IsInt64(FormatMode mode, uint32_t num_bits) { in IsInt64()
69 static bool IsUint8(FormatMode mode, uint32_t num_bits) { in IsUint8()
72 static bool IsUint16(FormatMode mode, uint32_t num_bits) { in IsUint16()
[all …]
/external/skia/src/gpu/effects/
DGrXfermodeFragmentProcessor.cpp20 static inline bool does_cpu_blend_impl_match_gpu(SkBlendMode mode) { in does_cpu_blend_impl_match_gpu()
34 SkBlendMode mode) { in Make()
62 SkBlendMode mode) in ComposeTwoFragmentProcessor()
72 const GrFragmentProcessor* dst, SkBlendMode mode) { in OptFlags()
189 SkBlendMode mode; in TestCreate() local
228 SkBlendMode mode = cs.getMode(); in emitCode() local
245 SkBlendMode mode) { in MakeFromTwoProcessors()
269 SkBlendMode mode, Child child) { in Make()
296 SkBlendMode mode() const { return fMode; } in mode() function in ComposeOneFragmentProcessor
301 OptimizationFlags OptFlags(const GrFragmentProcessor* fp, SkBlendMode mode, Child child) { in OptFlags()
[all …]
/external/skqp/src/gpu/effects/
DGrXfermodeFragmentProcessor.cpp20 static inline bool does_cpu_blend_impl_match_gpu(SkBlendMode mode) { in does_cpu_blend_impl_match_gpu()
34 SkBlendMode mode) { in Make()
62 SkBlendMode mode) in ComposeTwoFragmentProcessor()
72 const GrFragmentProcessor* dst, SkBlendMode mode) { in OptFlags()
189 SkBlendMode mode; in TestCreate() local
230 SkBlendMode mode = cs.getMode(); in emitCode() local
247 SkBlendMode mode) { in MakeFromTwoProcessors()
271 SkBlendMode mode, Child child) { in Make()
298 SkBlendMode mode() const { return fMode; } in mode() function in ComposeOneFragmentProcessor
303 OptimizationFlags OptFlags(const GrFragmentProcessor* fp, SkBlendMode mode, Child child) { in OptFlags()
[all …]
/external/igt-gpu-tools/lib/
Digt_psr.c28 static bool psr_active_check(int debugfs_fd, enum psr_mode mode) in psr_active_check()
39 static inline const char *psr_active_state_get(enum psr_mode mode) in psr_active_state_get()
47 bool psr_wait_entry(int debugfs_fd, enum psr_mode mode) in psr_wait_entry()
52 bool psr_wait_update(int debugfs_fd, enum psr_mode mode) in psr_wait_update()
57 bool psr_long_wait_update(int debugfs_fd, enum psr_mode mode) in psr_long_wait_update()
108 static bool psr_set(int debugfs_fd, int mode) in psr_set()
155 bool psr_enable(int debugfs_fd, enum psr_mode mode) in psr_enable()
166 bool psr_sink_support(int debugfs_fd, enum psr_mode mode) in psr_sink_support()
/external/python/cpython2/Lib/
Dstat.py21 def S_IMODE(mode): argument
24 def S_IFMT(mode): argument
40 def S_ISDIR(mode): argument
43 def S_ISCHR(mode): argument
46 def S_ISBLK(mode): argument
49 def S_ISREG(mode): argument
52 def S_ISFIFO(mode): argument
55 def S_ISLNK(mode): argument
58 def S_ISSOCK(mode): argument
/external/strace/
Dprintmode.c41 print_symbolic_mode_t(const unsigned int mode) in print_symbolic_mode_t()
64 print_numeric_umode_t(const unsigned short mode) in print_numeric_umode_t()
70 print_numeric_long_umask(const unsigned long mode) in print_numeric_long_umask()
/external/u-boot/arch/arm/mach-versal/
Dmp.c28 void set_r5_halt_mode(u8 halt, u8 mode) in set_r5_halt_mode()
49 void set_r5_tcm_mode(u8 mode) in set_r5_tcm_mode()
67 void release_r5_reset(u8 mode) in release_r5_reset()
91 void initialize_tcm(bool mode) in initialize_tcm()
106 void tcm_init(u8 mode) in tcm_init()
/external/skia/gm/
Dgradients_degenerate.cpp87 static sk_sp<SkShader> make_linear(SkTileMode mode) { in make_linear()
93 static sk_sp<SkShader> make_radial(SkTileMode mode) { in make_radial()
98 static sk_sp<SkShader> make_sweep(SkTileMode mode) { in make_sweep()
105 static sk_sp<SkShader> make_sweep_zero_ang(SkTileMode mode) { in make_sweep_zero_ang()
111 static sk_sp<SkShader> make_2pt_conic(SkTileMode mode) { in make_2pt_conic()
117 static sk_sp<SkShader> make_2pt_conic_zero_rad(SkTileMode mode) { in make_2pt_conic_zero_rad()
/external/skqp/gm/
Dgradients_degenerate.cpp75 static sk_sp<SkShader> make_linear(SkShader::TileMode mode) { in make_linear()
81 static sk_sp<SkShader> make_radial(SkShader::TileMode mode) { in make_radial()
86 static sk_sp<SkShader> make_sweep(SkShader::TileMode mode) { in make_sweep()
93 static sk_sp<SkShader> make_sweep_zero_ang(SkShader::TileMode mode) { in make_sweep_zero_ang()
99 static sk_sp<SkShader> make_2pt_conic(SkShader::TileMode mode) { in make_2pt_conic()
105 static sk_sp<SkShader> make_2pt_conic_zero_rad(SkShader::TileMode mode) { in make_2pt_conic_zero_rad()
/external/OpenCL-CTS/test_common/harness/
Dfpcontrol.h35 static inline void ForceFTZ( FPU_mode_type *mode ) in ForceFTZ()
60 static inline void DisableFTZ( FPU_mode_type *mode ) in DisableFTZ()
85 static inline void RestoreFPState( FPU_mode_type *mode ) in RestoreFPState()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_mode_setting.cpp78 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
96 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
118 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
135 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
151 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
169 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
189 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
257 const auto mode = inst->GetOperandAs<SpvExecutionMode>(1); in ValidateExecutionMode() local
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_mode_setting.cpp78 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
96 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
118 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
135 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
151 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
169 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
189 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
257 const auto mode = inst->GetOperandAs<SpvExecutionMode>(1); in ValidateExecutionMode() local
/external/angle/third_party/spirv-tools/src/source/val/
Dvalidate_mode_setting.cpp78 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
96 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
118 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
135 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
151 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
169 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
189 [](const SpvExecutionMode& mode) { in ValidateEntryPoint()
257 const auto mode = inst->GetOperandAs<SpvExecutionMode>(1); in ValidateExecutionMode() local
/external/skqp/src/core/
DSkXfermode.cpp30 SkProcCoeffXfermode(SkBlendMode mode) : fMode(mode) {} in SkProcCoeffXfermode()
67 const char* SkBlendMode_Name(SkBlendMode mode) { in SkBlendMode_Name()
80 sk_sp<SkXfermode> SkXfermode::Make(SkBlendMode mode) { in Make()
109 bool SkXfermode::IsOpaque(SkBlendMode mode, SrcColorOpacity opacityType) { in IsOpaque()
142 const GrXPFactory* SkBlendMode_AsXPFactory(SkBlendMode mode) { in SkBlendMode_AsXPFactory()

12345678910>>...133