Home
last modified time | relevance | path

Searched refs:mode (Results 1 - 25 of 4715) sorted by relevance

12345678910>>...189

/third_party/python/Modules/
H A D_stat.c92 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
96 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO)
100 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
104 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
108 # define S_ISDOOR(mode) 0
112 # define S_ISPORT(mode)
255 mode_t mode; _PyLong_AsMode_t() local
328 mode_t mode = _PyLong_AsMode_t(omode); stat_S_IMODE() local
341 mode_t mode = _PyLong_AsMode_t(omode); stat_S_IFMT() local
351 filetype(mode_t mode) filetype() argument
371 fileperm(mode_t mode, char *buf) fileperm() argument
403 mode_t mode; stat_filemode() local
[all...]
/third_party/glfw/tests/
H A Dmonitors.c26 // This test prints monitor and video mode information or verifies video
59 static const char* format_mode(const GLFWvidmode* mode) in format_mode() argument
62 const int gcd = euclid(mode->width, mode->height); in format_mode()
67 mode->width, mode->height, in format_mode()
68 mode->redBits + mode->greenBits + mode->blueBits, in format_mode()
69 mode in format_mode()
101 const GLFWvidmode* mode = glfwGetVideoMode(monitor); list_modes() local
142 const GLFWvidmode* mode = modes + i; test_modes() local
224 int ch, i, count, mode = LIST_MODE; main() local
[all...]
/third_party/mesa3d/src/glx/
H A Dglxconfig.c45 * \param mode GL context mode whose data is to be returned.
46 * \param attribute Attribute of \c mode that is to be returned.
47 * \param value_return Location to store the data member of \c mode.
48 * \return If \c attribute is a valid attribute of \c mode, zero is
52 glx_config_get(struct glx_config * mode, int attribute, int *value_return) in glx_config_get() argument
59 *value_return = mode->rgbBits; in glx_config_get()
62 *value_return = !(mode->renderType & GLX_COLOR_INDEX_BIT); in glx_config_get()
65 *value_return = mode->redBits; in glx_config_get()
68 *value_return = mode in glx_config_get()
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dreloc-info.h29 // to which the relocation information applies, the relocation mode
30 // (rmode), and an optional data field. The relocation mode may be
96 // This is not an actual reloc mode, but used to encode a long pc jump that
127 static constexpr bool IsRealRelocMode(Mode mode) { in IsRealRelocMode() argument
128 return mode >= FIRST_REAL_RELOC_MODE && mode <= LAST_REAL_RELOC_MODE; in IsRealRelocMode()
130 // Is the relocation mode affected by GC?
131 static constexpr bool IsGCRelocMode(Mode mode) { in IsGCRelocMode() argument
132 return mode <= LAST_GCED_ENUM; in IsGCRelocMode()
134 static constexpr bool IsShareableRelocMode(Mode mode) { in IsShareableRelocMode() argument
138 IsCodeTarget(Mode mode) IsCodeTarget() argument
139 IsCodeTargetMode(Mode mode) IsCodeTargetMode() argument
142 IsRelativeCodeTarget(Mode mode) IsRelativeCodeTarget() argument
145 IsFullEmbeddedObject(Mode mode) IsFullEmbeddedObject() argument
148 IsCompressedEmbeddedObject(Mode mode) IsCompressedEmbeddedObject() argument
151 IsDataEmbeddedObject(Mode mode) IsDataEmbeddedObject() argument
154 IsEmbeddedObjectMode(Mode mode) IsEmbeddedObjectMode() argument
159 IsRuntimeEntry(Mode mode) IsRuntimeEntry() argument
162 IsWasmCall(Mode mode) IsWasmCall() argument
163 IsWasmReference(Mode mode) IsWasmReference() argument
164 IsWasmStubCall(Mode mode) IsWasmStubCall() argument
167 IsConstPool(Mode mode) IsConstPool() argument
168 IsVeneerPool(Mode mode) IsVeneerPool() argument
169 IsDeoptPosition(Mode mode) IsDeoptPosition() argument
172 IsDeoptReason(Mode mode) IsDeoptReason() argument
175 IsDeoptId(Mode mode) IsDeoptId() argument
176 IsLiteralConstant(Mode mode) IsLiteralConstant() argument
179 IsDeoptNodeId(Mode mode) IsDeoptNodeId() argument
182 IsExternalReference(Mode mode) IsExternalReference() argument
185 IsInternalReference(Mode mode) IsInternalReference() argument
188 IsInternalReferenceEncoded(Mode mode) IsInternalReferenceEncoded() argument
191 IsOffHeapTarget(Mode mode) IsOffHeapTarget() argument
194 IsNoInfo(Mode mode) IsNoInfo() argument
196 IsOnlyForSerializer(Mode mode) IsOnlyForSerializer() argument
209 ModeMask(Mode mode) ModeMask() argument
315 Mode mode = rmode(); Visit() local
483 SetMode(RelocInfo::Mode mode) SetMode() argument
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuTexVerifierUtil.hpp69 inline bool isNearestMipmapFilter(const Sampler::FilterMode mode) in isNearestMipmapFilter() argument
71 return mode == Sampler::NEAREST_MIPMAP_NEAREST || mode == Sampler::LINEAR_MIPMAP_NEAREST || mode == Sampler::CUBIC_MIPMAP_NEAREST; in isNearestMipmapFilter()
74 inline bool isLinearMipmapFilter(const Sampler::FilterMode mode) in isLinearMipmapFilter() argument
76 return mode == Sampler::NEAREST_MIPMAP_LINEAR || mode == Sampler::LINEAR_MIPMAP_LINEAR || mode == Sampler::CUBIC_MIPMAP_LINEAR; in isLinearMipmapFilter()
79 inline bool isMipmapFilter(const Sampler::FilterMode mode) in isMipmapFilter() argument
81 return isNearestMipmapFilter(mode) || isLinearMipmapFilte in isMipmapFilter()
84 isNearestFilter(const Sampler::FilterMode mode) isNearestFilter() argument
89 isLinearFilter(const Sampler::FilterMode mode) isLinearFilter() argument
94 isCubicFilter(const Sampler::FilterMode mode) isCubicFilter() argument
99 getLevelFilter(const Sampler::FilterMode mode) getLevelFilter() argument
108 isWrapModeSupported(const Sampler::WrapMode mode) isWrapModeSupported() argument
[all...]
/third_party/python/Lib/
H A Dtty.py19 """Put terminal into a raw mode."""
20 mode = tcgetattr(fd)
21 mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON)
22 mode[OFLAG] = mode[OFLAG] & ~(OPOST)
23 mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB)
24 mode[CFLAG] = mode[CFLA
[all...]
H A Dstat.py19 # Extract bits from the mode
21 def S_IMODE(mode):
22 """Return the portion of the file's mode that can be set by
25 return mode & 0o7777
27 def S_IFMT(mode):
28 """Return the portion of the file's mode that describes the
31 return mode & 0o170000
50 def S_ISDIR(mode):
51 """Return True if mode is from a directory."""
52 return S_IFMT(mode)
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Ddissect.c63 *do_expression(usage_t mode, struct expression *expr),
64 *do_statement(usage_t mode, struct statement *stmt);
71 static inline usage_t u_rval(usage_t mode) in u_rval() argument
73 return mode & (U_R_VAL | (U_MASK << U_SHIFT)) in u_rval()
77 static inline usage_t u_addr(usage_t mode) in u_addr() argument
79 return mode = mode & U_MASK in u_addr()
80 ? U_R_AOF | (mode & U_W_AOF) : 0; in u_addr()
90 static usage_t fix_mode(struct symbol *type, usage_t mode) in fix_mode() argument
92 mode in fix_mode()
122 report_member(usage_t mode, struct position *pos, struct symbol *type, struct symbol *mem) report_member() argument
133 report_implicit(usage_t mode, struct position *pos, struct symbol *type) report_implicit() argument
165 report_symbol(usage_t mode, struct expression *expr) report_symbol() argument
333 do_expression(usage_t mode, struct expression *expr) do_expression() argument
492 do_asm_xputs(usage_t mode, struct asm_operand_list *xputs) do_asm_xputs() argument
497 do_statement(usage_t mode, struct statement *stmt) do_statement() argument
[all...]
/third_party/vk-gl-cts/external/amber/src/src/
H A Dtype.h38 static bool IsSignedInt(FormatMode mode) { in IsSignedInt() argument
39 return mode == FormatMode::kSInt || mode == FormatMode::kSNorm || in IsSignedInt()
40 mode == FormatMode::kSScaled; in IsSignedInt()
43 static bool IsUnsignedInt(FormatMode mode) { in IsUnsignedInt() argument
44 return mode == FormatMode::kUInt || mode == FormatMode::kUNorm || in IsUnsignedInt()
45 mode == FormatMode::kUScaled || mode == FormatMode::kSRGB; in IsUnsignedInt()
48 static bool IsInt(FormatMode mode) { in IsInt() argument
52 IsFloat(FormatMode mode) IsFloat() argument
56 IsInt8(FormatMode mode, uint32_t num_bits) IsInt8() argument
59 IsInt16(FormatMode mode, uint32_t num_bits) IsInt16() argument
62 IsInt32(FormatMode mode, uint32_t num_bits) IsInt32() argument
65 IsInt64(FormatMode mode, uint32_t num_bits) IsInt64() argument
69 IsUint8(FormatMode mode, uint32_t num_bits) IsUint8() argument
72 IsUint16(FormatMode mode, uint32_t num_bits) IsUint16() argument
75 IsUint32(FormatMode mode, uint32_t num_bits) IsUint32() argument
78 IsUint64(FormatMode mode, uint32_t num_bits) IsUint64() argument
82 IsFloat16(FormatMode mode, uint32_t num_bits) IsFloat16() argument
85 IsFloat32(FormatMode mode, uint32_t num_bits) IsFloat32() argument
88 IsFloat64(FormatMode mode, uint32_t num_bits) IsFloat64() argument
181 FormatMode mode = FormatMode::kSInt; global() member
216 AddMember(FormatComponentType name, FormatMode mode, uint32_t num_bits) AddMember() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dop_classes.c19 static enum chan_allowed allow_channel(struct hostapd_hw_modes *mode, u8 chan, in allow_channel() argument
24 for (i = 0; i < mode->num_channels; i++) { in allow_channel()
25 if (mode->channels[i].chan == chan) in allow_channel()
29 if (i == mode->num_channels || in allow_channel()
30 (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)) in allow_channel()
34 *flags = mode->channels[i].flag; in allow_channel()
36 if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR) in allow_channel()
43 static int get_center_80mhz(struct hostapd_hw_modes *mode, u8 channel) in get_center_80mhz() argument
48 if (mode->mode ! in get_center_80mhz()
65 verify_80mhz(struct hostapd_hw_modes *mode, u8 channel) verify_80mhz() argument
100 get_center_160mhz(struct hostapd_hw_modes *mode, u8 channel) get_center_160mhz() argument
122 verify_160mhz(struct hostapd_hw_modes *mode, u8 channel) verify_160mhz() argument
162 verify_channel(struct hostapd_hw_modes *mode, u8 channel, u8 bw) verify_channel() argument
216 struct hostapd_hw_modes *mode; wpas_op_class_supported() local
[all...]
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_variables.c56 nir_address_format addr_format = vtn_mode_to_address_format(b, ptr->mode); in vtn_align_pointer()
180 enum vtn_variable_mode mode) in vtn_mode_is_cross_invocation()
182 return mode == vtn_variable_mode_ssbo || in vtn_mode_is_cross_invocation()
183 mode == vtn_variable_mode_ubo || in vtn_mode_is_cross_invocation()
184 mode == vtn_variable_mode_phys_ssbo || in vtn_mode_is_cross_invocation()
185 mode == vtn_variable_mode_push_constant || in vtn_mode_is_cross_invocation()
186 mode == vtn_variable_mode_workgroup || in vtn_mode_is_cross_invocation()
187 mode == vtn_variable_mode_cross_workgroup; in vtn_mode_is_cross_invocation()
194 return ptr->mode == vtn_variable_mode_ssbo || in vtn_pointer_is_external_block()
195 ptr->mode in vtn_pointer_is_external_block()
179 vtn_mode_is_cross_invocation(struct vtn_builder *b, enum vtn_variable_mode mode) vtn_mode_is_cross_invocation() argument
215 vk_desc_type_for_mode(struct vtn_builder *b, enum vtn_variable_mode mode) vk_desc_type_for_mode() argument
262 vtn_resource_reindex(struct vtn_builder *b, enum vtn_variable_mode mode, nir_ssa_def *base_index, nir_ssa_def *offset_index) vtn_resource_reindex() argument
285 vtn_descriptor_load(struct vtn_builder *b, enum vtn_variable_mode mode, nir_ssa_def *desc_index) vtn_descriptor_load() argument
779 set_mode_system_value(struct vtn_builder *b, nir_variable_mode *mode) set_mode_system_value() argument
788 vtn_get_builtin_location(struct vtn_builder *b, SpvBuiltIn builtin, int *location, nir_variable_mode *mode) vtn_get_builtin_location() argument
1226 nir_variable_mode mode = var_data->mode; apply_var_decoration() local
1491 enum vtn_variable_mode mode; vtn_storage_class_to_mode() local
1636 vtn_mode_to_address_format(struct vtn_builder *b, enum vtn_variable_mode mode) vtn_mode_to_address_format() argument
1852 enum vtn_variable_mode mode; vtn_create_variable() local
2313 vtn_mode_to_memory_semantics(enum vtn_variable_mode mode) vtn_mode_to_memory_semantics() argument
2335 vtn_emit_make_visible_barrier(struct vtn_builder *b, SpvMemoryAccessMask access, SpvScope scope, enum vtn_variable_mode mode) vtn_emit_make_visible_barrier() argument
2347 vtn_emit_make_available_barrier(struct vtn_builder *b, SpvMemoryAccessMask access, SpvScope scope, enum vtn_variable_mode mode) vtn_emit_make_available_barrier() argument
2730 enum vtn_variable_mode mode = vtn_handle_variables() local
[all...]
/third_party/ltp/testcases/kernel/syscalls/open/
H A Dopen11.c67 mode_t mode; member
75 .mode = 0644,
82 .mode = 0644,
89 .mode = 0644,
96 .mode = 0644,
103 .mode = 0644,
111 .mode = 0755,
118 .mode = 0755,
125 .mode = 0644,
133 .mode
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dgzlib.c79 if (state->mode == GZ_READ) { /* for reading ... */
91 local gzFile gz_open(path, fd, mode) in gz_open()
94 const char *mode;
118 /* interpret mode */
119 state->mode = GZ_NONE;
123 while (*mode) {
124 if (*mode >= '0' && *mode <= '9')
125 state->level = *mode - '0';
127 switch (*mode) {
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dgzlib.c79 if (state->mode == GZ_READ) { /* for reading ... */
91 local gzFile gz_open(path, fd, mode) in gz_open()
94 const char *mode;
118 /* interpret mode */
119 state->mode = GZ_NONE;
123 while (*mode) {
124 if (*mode >= '0' && *mode <= '9')
125 state->level = *mode - '0';
127 switch (*mode) {
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dop_classes.c20 static enum chan_allowed allow_channel(struct hostapd_hw_modes *mode, in allow_channel() argument
27 for (i = 0; i < mode->num_channels; i++) { in allow_channel()
30 chan_is_6ghz = mode->channels[i].freq >= 5935 && in allow_channel()
31 mode->channels[i].freq <= 7115; in allow_channel()
32 if (is_6ghz == chan_is_6ghz && mode->channels[i].chan == chan) in allow_channel()
36 if (i == mode->num_channels || in allow_channel()
37 (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)) in allow_channel()
41 *flags = mode->channels[i].flag; in allow_channel()
43 if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR) in allow_channel()
50 static int get_center_80mhz(struct hostapd_hw_modes *mode, u argument
72 verify_80mhz(struct hostapd_hw_modes *mode, u8 op_class, u8 channel) verify_80mhz() argument
123 get_center_160mhz(struct hostapd_hw_modes *mode, u8 channel, const u8 *center_channels, size_t num_chan) get_center_160mhz() argument
145 verify_160mhz(struct hostapd_hw_modes *mode, u8 op_class, u8 channel) verify_160mhz() argument
199 verify_channel(struct hostapd_hw_modes *mode, u8 op_class, u8 channel, u8 bw) verify_channel() argument
258 struct hostapd_hw_modes *mode; wpas_op_class_supported() local
[all...]
/third_party/skia/src/core/
H A DSkXfermode.cpp29 SkProcCoeffXfermode(SkBlendMode mode) : fMode(mode) {} in SkProcCoeffXfermode() argument
66 const char* SkBlendMode_Name(SkBlendMode mode) { in SkBlendMode_Name() argument
67 SkASSERT((unsigned) mode <= (unsigned)SkBlendMode::kLastMode); in SkBlendMode_Name()
75 return gModeStrings[(int)mode]; in SkBlendMode_Name()
79 sk_sp<SkXfermode> SkXfermode::Make(SkBlendMode mode) { in Make() argument
80 if ((unsigned)mode > (unsigned)SkBlendMode::kLastMode) { in Make()
85 // Skia's "default" mode is srcover. nullptr in SkPaint is interpreted as srcover in Make()
87 if (SkBlendMode::kSrcOver == mode) { in Make()
96 once[(int)mode]([mod in Make()
108 IsOpaque(SkBlendMode mode, SrcColorOpacity opacityType) IsOpaque() argument
141 SkBlendMode_AsXPFactory(SkBlendMode mode) SkBlendMode_AsXPFactory() argument
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dpolygon.c48 * \param mode culling mode.
57 cull_face(struct gl_context *ctx, GLenum mode, bool no_error) in cull_face() argument
59 if (ctx->Polygon.CullFaceMode == mode) in cull_face()
63 mode != GL_FRONT && mode != GL_BACK && mode != GL_FRONT_AND_BACK) { in cull_face()
71 ctx->Polygon.CullFaceMode = mode; in cull_face()
76 _mesa_CullFace_no_error(GLenum mode) in _mesa_CullFace_no_error() argument
79 cull_face(ctx, mode, tru in _mesa_CullFace_no_error()
84 _mesa_CullFace(GLenum mode) _mesa_CullFace() argument
107 front_face(struct gl_context *ctx, GLenum mode, bool no_error) front_face() argument
125 _mesa_FrontFace_no_error(GLenum mode) _mesa_FrontFace_no_error() argument
133 _mesa_FrontFace(GLenum mode) _mesa_FrontFace() argument
157 polygon_mode(struct gl_context *ctx, GLenum face, GLenum mode, bool no_error) polygon_mode() argument
231 _mesa_PolygonMode_no_error(GLenum face, GLenum mode) _mesa_PolygonMode_no_error() argument
239 _mesa_PolygonMode(GLenum face, GLenum mode) _mesa_PolygonMode() argument
[all...]
H A Ddraw.c148 * Is 'mode' a valid value for glBegin(), glDrawArrays(), glDrawElements(),
155 valid_prim_mode_custom(struct gl_context *ctx, GLenum mode, in valid_prim_mode_custom() argument
169 if (mode >= 32 || !((1u << mode) & valid_prim_mask)) { in valid_prim_mode_custom()
173 return mode >= 32 || !((1u << mode) & ctx->SupportedPrimMask) ? in valid_prim_mode_custom()
181 _mesa_valid_prim_mode(struct gl_context *ctx, GLenum mode) in _mesa_valid_prim_mode() argument
183 return valid_prim_mode_custom(ctx, mode, ctx->ValidPrimMask); in _mesa_valid_prim_mode()
187 valid_prim_mode_indexed(struct gl_context *ctx, GLenum mode) in valid_prim_mode_indexed() argument
189 return valid_prim_mode_custom(ctx, mode, ct in valid_prim_mode_indexed()
231 validate_DrawElements_common(struct gl_context *ctx, GLenum mode, GLsizei count, GLsizei numInstances, GLenum type) validate_DrawElements_common() argument
250 _mesa_validate_DrawElements(struct gl_context *ctx, GLenum mode, GLsizei count, GLenum type) _mesa_validate_DrawElements() argument
267 _mesa_validate_MultiDrawElements(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount) _mesa_validate_MultiDrawElements() argument
329 _mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type) _mesa_validate_DrawRangeElements() argument
396 count_tessellated_primitives(GLenum mode, GLuint count, GLuint num_instances) count_tessellated_primitives() argument
448 validate_draw_arrays(struct gl_context *ctx, GLenum mode, GLsizei count, GLsizei numInstances) validate_draw_arrays() argument
477 _mesa_validate_DrawArrays(struct gl_context *ctx, GLenum mode, GLsizei count) _mesa_validate_DrawArrays() argument
489 _mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first, GLsizei count, GLsizei numInstances) _mesa_validate_DrawArraysInstanced() argument
514 _mesa_validate_MultiDrawArrays(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLsizei primcount) _mesa_validate_MultiDrawArrays() argument
561 _mesa_validate_DrawElementsInstanced(struct gl_context *ctx, GLenum mode, GLsizei count, GLenum type, GLsizei numInstances) _mesa_validate_DrawElementsInstanced() argument
576 _mesa_validate_DrawTransformFeedback(struct gl_context *ctx, GLenum mode, struct gl_transform_feedback_object *obj, GLuint stream, GLsizei numInstances) _mesa_validate_DrawTransformFeedback() argument
607 valid_draw_indirect(struct gl_context *ctx, GLenum mode, const GLvoid *indirect, GLsizei size) valid_draw_indirect() argument
686 valid_draw_indirect_elements(struct gl_context *ctx, GLenum mode, GLenum type, const GLvoid *indirect, GLsizeiptr size) valid_draw_indirect_elements() argument
738 _mesa_validate_DrawArraysIndirect(struct gl_context *ctx, GLenum mode, const GLvoid *indirect) _mesa_validate_DrawArraysIndirect() argument
754 _mesa_validate_DrawElementsIndirect(struct gl_context *ctx, GLenum mode, GLenum type, const GLvoid *indirect) _mesa_validate_DrawElementsIndirect() argument
769 _mesa_validate_MultiDrawArraysIndirect(struct gl_context *ctx, GLenum mode, const GLvoid *indirect, GLsizei primcount, GLsizei stride) _mesa_validate_MultiDrawArraysIndirect() argument
797 _mesa_validate_MultiDrawElementsIndirect(struct gl_context *ctx, GLenum mode, GLenum type, const GLvoid *indirect, GLsizei primcount, GLsizei stride) _mesa_validate_MultiDrawElementsIndirect() argument
861 _mesa_validate_MultiDrawArraysIndirectCount(struct gl_context *ctx, GLenum mode, GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride) _mesa_validate_MultiDrawArraysIndirectCount() argument
894 _mesa_validate_MultiDrawElementsIndirectCount(struct gl_context *ctx, GLenum mode, GLenum type, GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride) _mesa_validate_MultiDrawElementsIndirectCount() argument
1078 _mesa_draw_gallium_multimode_fallback(struct gl_context *ctx, struct pipe_draw_info *info, const struct pipe_draw_start_count_bias *draws, const unsigned char *mode, unsigned num_draws) _mesa_draw_gallium_multimode_fallback() argument
1218 print_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, GLsizei count) print_draw_arrays() argument
1289 _mesa_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, GLsizei count, GLuint numInstances, GLuint baseInstance) _mesa_draw_arrays() argument
1396 _mesa_EvalMesh1(GLenum mode, GLint i1, GLint i2) _mesa_EvalMesh1() argument
1435 _mesa_EvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2) _mesa_EvalMesh2() argument
1515 _mesa_DrawArrays(GLenum mode, GLint start, GLsizei count) _mesa_DrawArrays() argument
1545 _mesa_DrawArraysInstancedARB(GLenum mode, GLint start, GLsizei count, GLsizei numInstances) _mesa_DrawArraysInstancedARB() argument
1576 _mesa_DrawArraysInstancedBaseInstance(GLenum mode, GLint first, GLsizei count, GLsizei numInstances, GLuint baseInstance) _mesa_DrawArraysInstancedBaseInstance() argument
1608 _mesa_MultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount) _mesa_MultiDrawArrays() argument
1728 _mesa_validated_drawrangeelements(struct gl_context *ctx, GLenum mode, bool index_bounds_valid, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex, GLuint numInstances, GLuint baseInstance) _mesa_validated_drawrangeelements() argument
1834 _mesa_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) _mesa_DrawRangeElementsBaseVertex() argument
1927 _mesa_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) _mesa_DrawRangeElements() argument
1939 _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) _mesa_DrawElements() argument
1964 _mesa_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) _mesa_DrawElementsBaseVertex() argument
1989 _mesa_DrawElementsInstancedARB(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei numInstances) _mesa_DrawElementsInstancedARB() argument
2015 _mesa_DrawElementsInstancedBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLsizei numInstances, GLint basevertex) _mesa_DrawElementsInstancedBaseVertex() argument
2044 _mesa_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLuint baseInstance) _mesa_DrawElementsInstancedBaseInstance() argument
2074 _mesa_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex, GLuint baseInstance) _mesa_DrawElementsInstancedBaseVertexBaseInstance() argument
2108 _mesa_validated_multidrawelements(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex) _mesa_validated_multidrawelements() argument
2231 _mesa_MultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount) _mesa_MultiDrawElementsEXT() argument
2254 _mesa_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLsizei *basevertex) _mesa_MultiDrawElementsBaseVertex() argument
2288 _mesa_draw_transform_feedback(struct gl_context *ctx, GLenum mode, struct gl_transform_feedback_object *obj, GLuint stream, GLuint numInstances) _mesa_draw_transform_feedback() argument
2326 _mesa_DrawTransformFeedback(GLenum mode, GLuint name) _mesa_DrawTransformFeedback() argument
2337 _mesa_DrawTransformFeedbackStream(GLenum mode, GLuint name, GLuint stream) _mesa_DrawTransformFeedbackStream() argument
2348 _mesa_DrawTransformFeedbackInstanced(GLenum mode, GLuint name, GLsizei primcount) _mesa_DrawTransformFeedbackInstanced() argument
2360 _mesa_DrawTransformFeedbackStreamInstanced(GLenum mode, GLuint name, GLuint stream, GLsizei primcount) _mesa_DrawTransformFeedbackStreamInstanced() argument
2373 _mesa_validated_multidrawarraysindirect(struct gl_context *ctx, GLenum mode, GLintptr indirect, GLintptr drawcount_offset, GLsizei drawcount, GLsizei stride, struct gl_buffer_object *drawcount_buffer) _mesa_validated_multidrawarraysindirect() argument
2393 _mesa_validated_multidrawelementsindirect(struct gl_context *ctx, GLenum mode, GLenum type, GLintptr indirect, GLintptr drawcount_offset, GLsizei drawcount, GLsizei stride, struct gl_buffer_object *drawcount_buffer) _mesa_validated_multidrawelementsindirect() argument
2427 _mesa_DrawArraysIndirect(GLenum mode, const GLvoid *indirect) _mesa_DrawArraysIndirect() argument
2466 _mesa_DrawElementsIndirect(GLenum mode, GLenum type, const GLvoid *indirect) _mesa_DrawElementsIndirect() argument
2526 _mesa_MultiDrawArraysIndirect(GLenum mode, const GLvoid *indirect, GLsizei primcount, GLsizei stride) _mesa_MultiDrawArraysIndirect() argument
2602 _mesa_MultiDrawElementsIndirect(GLenum mode, GLenum type, const GLvoid *indirect, GLsizei primcount, GLsizei stride) _mesa_MultiDrawElementsIndirect() argument
2698 _mesa_MultiDrawArraysIndirectCountARB(GLenum mode, GLintptr indirect, GLintptr drawcount_offset, GLsizei maxdrawcount, GLsizei stride) _mesa_MultiDrawArraysIndirectCountARB() argument
2728 _mesa_MultiDrawElementsIndirectCountARB(GLenum mode, GLenum type, GLintptr indirect, GLintptr drawcount_offset, GLsizei maxdrawcount, GLsizei stride) _mesa_MultiDrawElementsIndirectCountARB() argument
2761 _mesa_MultiModeDrawArraysIBM( const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride ) _mesa_MultiModeDrawArraysIBM() argument
2779 _mesa_MultiModeDrawElementsIBM( const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride ) _mesa_MultiModeDrawElementsIBM() argument
[all...]
H A Dhint.c38 _mesa_Hint( GLenum target, GLenum mode ) in _mesa_Hint()
45 _mesa_enum_to_string(mode)); in _mesa_Hint()
47 if (mode != GL_NICEST && mode != GL_FASTEST && mode != GL_DONT_CARE) { in _mesa_Hint()
48 _mesa_error(ctx, GL_INVALID_ENUM, "glHint(mode)"); in _mesa_Hint()
56 if (ctx->Hint.Fog == mode) in _mesa_Hint()
59 ctx->Hint.Fog = mode; in _mesa_Hint()
64 if (ctx->Hint.LineSmooth == mode) in _mesa_Hint()
67 ctx->Hint.LineSmooth = mode; in _mesa_Hint()
[all...]
/third_party/vk-gl-cts/framework/delibs/deutil/
H A DdeFile.c66 static int mapOpenMode (deFileMode mode) in mapOpenMode() argument
71 DE_ASSERT((mode & DE_FILEMODE_READ) != 0 || ((mode & DE_FILEMODE_WRITE) != 0)); in mapOpenMode()
73 /* Create, open or create and open mode is required. */ in mapOpenMode()
74 DE_ASSERT((mode & DE_FILEMODE_OPEN) != 0 || ((mode & DE_FILEMODE_CREATE) != 0)); in mapOpenMode()
77 DE_ASSERT(!(mode & DE_FILEMODE_CREATE) || (mode & DE_FILEMODE_WRITE)); in mapOpenMode()
80 DE_ASSERT(!(mode & DE_FILEMODE_TRUNCATE) || ((mode in mapOpenMode()
100 deFile_create(const char* filename, deUint32 mode) deFile_create() argument
241 deFile_create(const char* filename, deUint32 mode) deFile_create() argument
[all...]
/third_party/node/deps/openssl/openssl/engines/asm/
H A De_padlock-x86_64.pl286 my ($mode,$opcode) = @_;
290 .globl padlock_${mode}_encrypt
291 .type padlock_${mode}_encrypt,\@function,4
293 padlock_${mode}_encrypt:
299 jnz .L${mode}_abort
301 jnz .L${mode}_abort
310 jnz .L${mode}_aligned
316 jnz .L${mode}_aligned
331 $code.=<<___ if ($mode eq "ctr32");
332 .L${mode}_reente
[all...]
/third_party/openssl/engines/asm/
H A De_padlock-x86_64.pl286 my ($mode,$opcode) = @_;
290 .globl padlock_${mode}_encrypt
291 .type padlock_${mode}_encrypt,\@function,4
293 padlock_${mode}_encrypt:
299 jnz .L${mode}_abort
301 jnz .L${mode}_abort
310 jnz .L${mode}_aligned
316 jnz .L${mode}_aligned
331 $code.=<<___ if ($mode eq "ctr32");
332 .L${mode}_reente
[all...]
/third_party/mesa3d/src/glx/apple/
H A Dapple_visual.c78 apple_visual_create_pfobj(CGLPixelFormatObj * pfobj, const struct glx_config * mode, in apple_visual_create_pfobj() argument
115 if (mode->stereoMode) { in apple_visual_create_pfobj()
123 if (!offscreen && mode->doubleBufferMode) { in apple_visual_create_pfobj()
132 attr[numattr++] = mode->redBits + mode->greenBits + mode->blueBits; in apple_visual_create_pfobj()
134 attr[numattr++] = mode->alphaBits; in apple_visual_create_pfobj()
136 if ((mode->accumRedBits + mode->accumGreenBits + mode in apple_visual_create_pfobj()
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dgzlib.c74 if (state->mode == GZ_READ) { /* for reading ... */
87 local gzFile gz_open(path, fd, mode) in gz_open()
90 const char *mode;
102 /* interpret mode */
103 state->mode = GZ_NONE;
106 while (*mode) {
107 if (*mode >= '0' && *mode <= '9')
108 state->level = *mode - '0';
110 switch (*mode) {
[all...]
/third_party/node/deps/v8/src/heap/
H A Dmarking.h39 template <AccessMode mode = AccessMode::NON_ATOMIC>
42 template <AccessMode mode = AccessMode::NON_ATOMIC>
47 template <AccessMode mode = AccessMode::NON_ATOMIC>
143 template <AccessMode mode>
226 template <AccessMode mode>
227 inline void ConcurrentBitmap<mode>::Clear() { in Clear()
229 if (mode == AccessMode::ATOMIC) { in Clear()
236 template <AccessMode mode>
237 inline void ConcurrentBitmap<mode>::MarkAllBits() { in MarkAllBits()
239 if (mode in MarkAllBits()
[all...]

Completed in 13 milliseconds

12345678910>>...189