Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 6819) sorted by relevance

12345678910>>...273

/third_party/openssl/test/recipes/30-test_evp_data/
Devpkdf_tls13_kdf.txt22 Ctrl.mode = mode:EXTRACT_ONLY
28 Ctrl.mode = mode:EXPAND_ONLY
37 Ctrl.mode = mode:EXPAND_ONLY
46 Ctrl.mode = mode:EXTRACT_ONLY
55 Ctrl.mode = mode:EXPAND_ONLY
64 Ctrl.mode = mode:EXPAND_ONLY
73 Ctrl.mode = mode:EXTRACT_ONLY
81 Ctrl.mode = mode:EXPAND_ONLY
90 Ctrl.mode = mode:EXPAND_ONLY
99 Ctrl.mode = mode:EXPAND_ONLY
[all …]
/third_party/mesa3d/src/glx/
Dglxconfig.c52 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->greenBits; in glx_config_get()
71 *value_return = mode->blueBits; in glx_config_get()
74 *value_return = mode->alphaBits; in glx_config_get()
77 *value_return = mode->doubleBufferMode; in glx_config_get()
80 *value_return = mode->stereoMode; in glx_config_get()
83 *value_return = mode->numAuxBuffers; in glx_config_get()
[all …]
/third_party/openssl/engines/asm/
De_padlock-x86_64.pl284 my ($mode,$opcode) = @_;
288 .globl padlock_${mode}_encrypt
289 .type padlock_${mode}_encrypt,\@function,4
291 padlock_${mode}_encrypt:
297 jnz .L${mode}_abort
299 jnz .L${mode}_abort
308 jnz .L${mode}_aligned
314 jnz .L${mode}_aligned
329 $code.=<<___ if ($mode eq "ctr32");
330 .L${mode}_reenter:
[all …]
De_padlock-x86.pl185 my ($mode,$opcode) = @_;
188 &function_begin("padlock_${mode}_encrypt");
194 &jnz (&label("${mode}_abort"));
196 &jnz (&label("${mode}_abort"));
198 &DWP(&label("padlock_saved_context")."-".&label("${mode}_pic_point")));
202 &set_label("${mode}_pic_point");
205 if ($mode eq "ctr32") {
210 &jnz (&label("${mode}_aligned"));
216 &jnz (&label("${mode}_aligned"));
235 if ($PADLOCK_PREFETCH{$mode}) {
[all …]
/third_party/rust/crates/syn/src/
Dcustom_punctuation.rs237 ($mode:ident, +) => { 1 };
238 ($mode:ident, +=) => { 2 };
239 ($mode:ident, &) => { 1 };
240 ($mode:ident, &&) => { 2 };
241 ($mode:ident, &=) => { 2 };
242 ($mode:ident, @) => { 1 };
243 ($mode:ident, !) => { 1 };
244 ($mode:ident, ^) => { 1 };
245 ($mode:ident, ^=) => { 2 };
246 ($mode:ident, :) => { 1 };
[all …]
/third_party/python/Modules/
D_stat.c92 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) argument
96 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) argument
100 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) argument
104 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) argument
108 # define S_ISDOOR(mode) 0 argument
112 # define S_ISPORT(mode) 0 argument
116 # define S_ISWHT(mode) 0 argument
255 mode_t mode; in _PyLong_AsMode_t() local
261 mode = (mode_t)value; in _PyLong_AsMode_t()
262 if ((unsigned long)mode != value) { in _PyLong_AsMode_t()
[all …]
/third_party/typescript/tests/baselines/reference/
DstrictModeReservedWordInClassDeclaration.errors.txt1 …xpected. 'private' is a reserved word in strict mode. Class definitions are automatically in stric…
2 …expected. 'public' is a reserved word in strict mode. Class definitions are automatically in stric…
3 …expected. 'static' is a reserved word in strict mode. Class definitions are automatically in stric…
4 …xpected. 'private' is a reserved word in strict mode. Class definitions are automatically in stric…
5 …expected. 'public' is a reserved word in strict mode. Class definitions are automatically in stric…
6 …expected. 'static' is a reserved word in strict mode. Class definitions are automatically in stric…
7 …expected. 'public' is a reserved word in strict mode. Class definitions are automatically in stric…
8 …expected. 'public' is a reserved word in strict mode. Class definitions are automatically in stric…
9 …er expected. 'let' is a reserved word in strict mode. Class definitions are automatically in stric…
10 …xpected. 'private' is a reserved word in strict mode. Class definitions are automatically in stric…
[all …]
/third_party/vk-gl-cts/framework/common/
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 =… 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 == … in isLinearMipmapFilter()
79 inline bool isMipmapFilter(const Sampler::FilterMode mode) in isMipmapFilter() argument
81 return isNearestMipmapFilter(mode) || isLinearMipmapFilter(mode); in isMipmapFilter()
84 inline bool isNearestFilter(const Sampler::FilterMode mode) in isNearestFilter() argument
86 …return mode == Sampler::NEAREST || mode == Sampler::NEAREST_MIPMAP_NEAREST || mode == Sampler::NEA… in isNearestFilter()
89 inline bool isLinearFilter(const Sampler::FilterMode mode) in isLinearFilter() argument
91 …return mode == Sampler::LINEAR || mode == Sampler::LINEAR_MIPMAP_NEAREST || mode == Sampler::LINEA… in isLinearFilter()
[all …]
/third_party/flutter/glfw/tests/
Dmonitors.c52 static const char* format_mode(const GLFWvidmode* mode) in format_mode() argument
58 mode->width, mode->height, in format_mode()
59 mode->redBits + mode->greenBits + mode->blueBits, in format_mode()
60 mode->redBits, mode->greenBits, mode->blueBits, in format_mode()
61 mode->refreshRate); in format_mode()
88 const GLFWvidmode* mode = glfwGetVideoMode(monitor); in list_modes() local
97 printf("Current mode: %s\n", format_mode(mode)); in list_modes()
101 widthMM, heightMM, mode->width * 25.4f / widthMM); in list_modes()
109 if (memcmp(mode, modes + i, sizeof(GLFWvidmode)) == 0) in list_modes()
124 const GLFWvidmode* mode = modes + i; in test_modes() local
[all …]
/third_party/python/Lib/
Dtty.py20 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[CFLAG] | CS8
25 mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG)
26 mode[CC][VMIN] = 1
27 mode[CC][VTIME] = 0
28 tcsetattr(fd, when, mode)
32 mode = tcgetattr(fd)
[all …]
Dstat.py21 def S_IMODE(mode): argument
25 return mode & 0o7777
27 def S_IFMT(mode): argument
31 return mode & 0o170000
50 def S_ISDIR(mode): argument
52 return S_IFMT(mode) == S_IFDIR
54 def S_ISCHR(mode): argument
56 return S_IFMT(mode) == S_IFCHR
58 def S_ISBLK(mode): argument
60 return S_IFMT(mode) == S_IFBLK
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
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 != HOSTAPD_MODE_IEEE80211A) in get_center_80mhz()
65 static enum chan_allowed verify_80mhz(struct hostapd_hw_modes *mode, u8 channel) in verify_80mhz() argument
[all …]
/third_party/ltp/tools/sparse/sparse-src/
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 &= (U_SELF | (U_SELF << U_SHIFT)); in fix_mode()
100 if (mode & U_MASK) in fix_mode()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
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, u8 channel, in get_center_80mhz() argument
[all …]
/third_party/ltp/testcases/kernel/syscalls/open/
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 = 0644,
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_modes.c49 SDL_DisplayMode mode; in EnumModesCallback() local
51 mode.w = width; in EnumModesCallback()
52 mode.h = height; in EnumModesCallback()
53 mode.refresh_rate = 0; in EnumModesCallback()
54 mode.driverdata = NULL; in EnumModesCallback()
55 mode.format = SDL_PIXELFORMAT_UNKNOWN; in EnumModesCallback()
58 modedata->modelist[modedata->nummodes++] = mode; in EnumModesCallback()
93 …ckSetDisplayMode(_THIS, SDL_VideoDisplay * display, DFB_DisplayData * data, SDL_DisplayMode * mode) in CheckSetDisplayMode() argument
101 config.width = mode->w; in CheckSetDisplayMode()
102 config.height = mode->h; in CheckSetDisplayMode()
[all …]
/third_party/mesa3d/src/mesa/main/
Dpolygon.c57 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, true); in _mesa_CullFace_no_error()
84 _mesa_CullFace(GLenum mode) in _mesa_CullFace() argument
89 _mesa_debug(ctx, "glCullFace %s\n", _mesa_enum_to_string(mode)); in _mesa_CullFace()
91 cull_face(ctx, mode, false); in _mesa_CullFace()
107 front_face(struct gl_context *ctx, GLenum mode, bool no_error) in front_face() argument
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsmodes.c35 SDL_DisplayMode *mode; member
57 hsize = data->mode->w / data->mode_data->HorzDPI; in WIN_GetMonitorDPI()
58 vsize = data->mode->h / data->mode_data->VertDPI; in WIN_GetMonitorDPI()
60 data->mode_data->DiagDPI = SDL_ComputeDiagonalDPI( data->mode->w, in WIN_GetMonitorDPI()
61 data->mode->h, in WIN_GetMonitorDPI()
74 WIN_UpdateDisplayMode(_THIS, LPCTSTR deviceName, DWORD index, SDL_DisplayMode * mode) in WIN_UpdateDisplayMode() argument
77 SDL_DisplayModeData *data = (SDL_DisplayModeData *) mode->driverdata; in WIN_UpdateDisplayMode()
94 mode->w = logical_width; in WIN_UpdateDisplayMode()
95 mode->h = logical_height; in WIN_UpdateDisplayMode()
104 dpi_data.mode = mode; in WIN_UpdateDisplayMode()
[all …]
/third_party/libwebsockets/win32port/zlib/
Dgzlib.c74 if (state->mode == GZ_READ) { /* for reading ... */
87 local gzFile gz_open(path, fd, mode) in gz_open() argument
90 const char *mode;
103 state->mode = GZ_NONE;
106 while (*mode) {
107 if (*mode >= '0' && *mode <= '9')
108 state->level = *mode - '0';
110 switch (*mode) {
112 state->mode = GZ_READ;
116 state->mode = GZ_WRITE;
[all …]
/third_party/flutter/skia/src/core/
DSkModeColorFilter.cpp26 SkModeColorFilter::SkModeColorFilter(SkColor color, SkBlendMode mode) { in SkModeColorFilter() argument
28 fMode = mode; in SkModeColorFilter()
31 bool SkModeColorFilter::onAsAColorMode(SkColor* color, SkBlendMode* mode) const { in onAsAColorMode()
35 if (mode) { in onAsAColorMode()
36 *mode = fMode; in onAsAColorMode()
60 SkBlendMode mode = (SkBlendMode)buffer.readUInt(); in CreateProc() local
61 return SkColorFilters::Blend(color, mode); in CreateProc()
107 sk_sp<SkColorFilter> SkColorFilters::Blend(SkColor color, SkBlendMode mode) { in Blend() argument
108 if (!SkIsValidMode(mode)) { in Blend()
116 if (SkBlendMode::kClear == mode) { in Blend()
[all …]
DSkXfermode.cpp30 SkProcCoeffXfermode(SkBlendMode mode) : fMode(mode) {} in SkProcCoeffXfermode() argument
67 const char* SkBlendMode_Name(SkBlendMode mode) { in SkBlendMode_Name() argument
68 SkASSERT((unsigned) mode <= (unsigned)SkBlendMode::kLastMode); in SkBlendMode_Name()
76 return gModeStrings[(int)mode]; in SkBlendMode_Name()
80 sk_sp<SkXfermode> SkXfermode::Make(SkBlendMode mode) { in Make() argument
81 if ((unsigned)mode > (unsigned)SkBlendMode::kLastMode) { in Make()
88 if (SkBlendMode::kSrcOver == mode) { in Make()
97 once[(int)mode]([mode] { in Make()
98 if (auto xfermode = SkOpts::create_xfermode(mode)) { in Make()
99 cached[(int)mode] = xfermode; in Make()
[all …]
/third_party/mesa3d/src/compiler/spirv/
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() argument
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 == vtn_variable_mode_ubo || in vtn_pointer_is_external_block()
[all …]
/third_party/skia/src/core/
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()
87 if (SkBlendMode::kSrcOver == mode) { in Make()
96 once[(int)mode]([mode] { in Make()
97 if (auto xfermode = SkOpts::create_xfermode(mode)) { in Make()
98 cached[(int)mode] = xfermode; in Make()
[all …]
/third_party/node/deps/zlib/
Dgzlib.c79 if (state->mode == GZ_READ) { /* for reading ... */
91 local gzFile gz_open(path, fd, mode) in gz_open() argument
94 const char *mode;
119 state->mode = GZ_NONE;
123 while (*mode) {
124 if (*mode >= '0' && *mode <= '9')
125 state->level = *mode - '0';
127 switch (*mode) {
129 state->mode = GZ_READ;
133 state->mode = GZ_WRITE;
[all …]
/third_party/flutter/skia/third_party/externals/zlib/
Dgzlib.c79 if (state->mode == GZ_READ) { /* for reading ... */
91 local gzFile gz_open(path, fd, mode) in gz_open() argument
94 const char *mode;
119 state->mode = GZ_NONE;
123 while (*mode) {
124 if (*mode >= '0' && *mode <= '9')
125 state->level = *mode - '0';
127 switch (*mode) {
129 state->mode = GZ_READ;
133 state->mode = GZ_WRITE;
[all …]

12345678910>>...273