Home
last modified time | relevance | path

Searched defs:flags (Results 1 – 25 of 4341) sorted by relevance

12345678910>>...174

/third_party/ffmpeg/libavutil/x86/
Dcpu.h28 #define X86_AMD3DNOW(flags) CPUEXT(flags, AMD3DNOW) argument
29 #define X86_AMD3DNOWEXT(flags) CPUEXT(flags, AMD3DNOWEXT) argument
30 #define X86_MMX(flags) CPUEXT(flags, MMX) argument
31 #define X86_MMXEXT(flags) CPUEXT(flags, MMXEXT) argument
32 #define X86_SSE(flags) CPUEXT(flags, SSE) argument
33 #define X86_SSE2(flags) CPUEXT(flags, SSE2) argument
34 #define X86_SSE2_FAST(flags) CPUEXT_FAST(flags, SSE2) argument
35 #define X86_SSE2_SLOW(flags) CPUEXT_SLOW(flags, SSE2) argument
36 #define X86_SSE3(flags) CPUEXT(flags, SSE3) argument
37 #define X86_SSE3_FAST(flags) CPUEXT_FAST(flags, SSE3) argument
[all …]
/third_party/ffmpeg/libavutil/arm/
Dcpu.h25 #define have_armv5te(flags) CPUEXT(flags, ARMV5TE) argument
26 #define have_armv6(flags) CPUEXT(flags, ARMV6) argument
27 #define have_armv6t2(flags) CPUEXT(flags, ARMV6T2) argument
28 #define have_vfp(flags) CPUEXT(flags, VFP) argument
29 #define have_vfpv3(flags) CPUEXT(flags, VFPV3) argument
30 #define have_neon(flags) CPUEXT(flags, NEON) argument
31 #define have_setend(flags) CPUEXT(flags, SETEND) argument
35 #define have_vfp_vm(flags) \ argument
/third_party/musl/porting/linux/user/include/fortify/
Dfcntl.h44 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in open()
56 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, unsigned modes) in open()
64 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in openat()
76 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) in openat()
85 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in open64()
97 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) in open64()
105 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in openat64()
117 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) in openat64()
/third_party/musl/ndk_musl_include/fortify/
Dfcntl.h44 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in open()
56 int open(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, unsigned modes) in open()
64 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in openat()
76 int openat(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) in openat()
85 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in open64()
97 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) in open64()
105 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) in openat64()
117 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) in openat64()
/third_party/ffmpeg/libavutil/
Dcpu_internal.h26 #define CPUEXT_SUFFIX(flags, suffix, cpuext) \ argument
29 #define CPUEXT_SUFFIX_FAST2(flags, suffix, cpuext, slow_cpuext) \ argument
33 #define CPUEXT_SUFFIX_SLOW2(flags, suffix, cpuext, slow_cpuext) \ argument
37 #define CPUEXT_SUFFIX_FAST(flags, suffix, cpuext) CPUEXT_SUFFIX_FAST2(flags, suffix, cpuext, cpuext) argument
38 #define CPUEXT_SUFFIX_SLOW(flags, suffix, cpuext) CPUEXT_SUFFIX_SLOW2(flags, suffix, cpuext, cpuext) argument
40 #define CPUEXT(flags, cpuext) CPUEXT_SUFFIX(flags, , cpuext) argument
41 #define CPUEXT_FAST(flags, cpuext) CPUEXT_SUFFIX_FAST(flags, , cpuext) argument
42 #define CPUEXT_SLOW(flags, cpuext) CPUEXT_SUFFIX_SLOW(flags, , cpuext) argument
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DLookupFlag.java9 boolean isSet(int flags) { in isSet()
13 int set(int flags) { in set()
17 int clear(int flags) { in clear()
26 static boolean isFlagSet(int flags, int mask) { in isFlagSet()
30 static int setFlag(int flags, int mask) { in setFlag()
34 static int clearFlag(int flags, int mask) { in clearFlag()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DLookupFlag.java9 boolean isSet(int flags) { in isSet()
13 int set(int flags) { in set()
17 int clear(int flags) { in clear()
26 static boolean isFlagSet(int flags, int mask) { in isFlagSet()
30 static int setFlag(int flags, int mask) { in setFlag()
34 static int clearFlag(int flags, int mask) { in clearFlag()
/third_party/python/Lib/
Dre.py187 def match(pattern, string, flags=0): argument
192 def fullmatch(pattern, string, flags=0): argument
197 def search(pattern, string, flags=0): argument
202 def sub(pattern, repl, string, count=0, flags=0): argument
211 def subn(pattern, repl, string, count=0, flags=0): argument
222 def split(pattern, string, maxsplit=0, flags=0): argument
232 def findall(pattern, string, flags=0): argument
242 def finditer(pattern, string, flags=0): argument
249 def compile(pattern, flags=0): argument
258 def template(pattern, flags=0): argument
[all …]
Dsre_compile.py65 def _combine_flags(flags, add_flags, del_flags, argument
71 def _compile(code, pattern, flags): argument
249 def _compile_charset(charset, flags, code): argument
453 def _get_iscased(flags): argument
461 def _get_literal_prefix(pattern, flags): argument
492 def _get_charset_prefix(pattern, flags): argument
536 def _compile_info(code, pattern, flags): argument
598 def _code(p, flags): argument
759 def compile(p, flags=0): argument
/third_party/icu/vendor/double-conversion/upstream/test/cctest/
Dtest-conversions.cc44 int flags = DoubleToStringConverter::UNIQUE_ZERO | in TEST() local
288 int flags = DoubleToStringConverter::UNIQUE_ZERO | in TEST() local
444 int flags = DoubleToStringConverter::EMIT_POSITIVE_EXPONENT_SIGN | in TEST() local
790 int flags = DoubleToStringConverter::EMIT_POSITIVE_EXPONENT_SIGN | in TEST() local
974 int flags = DoubleToStringConverter::EMIT_POSITIVE_EXPONENT_SIGN | in TEST() local
2030 static double StrToD16(const uc16* str16, int length, int flags, in StrToD16()
2043 static double StrToD16(const char* str, int flags, in StrToD16()
2070 static double StrToD(const char* str, int flags, double empty_string_value, in StrToD()
2098 int flags; in TEST() local
2336 int flags; in TEST() local
[all …]
/third_party/openssl/crypto/cms/
Dcms_smime.c19 static BIO *cms_get_text_bio(BIO *out, unsigned int flags) in cms_get_text_bio()
33 static int cms_copy_content(BIO *out, BIO *in, unsigned int flags) in cms_copy_content()
104 int CMS_data(CMS_ContentInfo *cms, BIO *out, unsigned int flags) in CMS_data()
121 CMS_ContentInfo *CMS_data_create_ex(BIO *in, unsigned int flags, in CMS_data_create_ex()
136 CMS_ContentInfo *CMS_data_create(BIO *in, unsigned int flags) in CMS_data_create()
142 unsigned int flags) in CMS_digest_verify()
167 unsigned int flags, OSSL_LIB_CTX *ctx, in CMS_digest_create_ex()
193 unsigned int flags) in CMS_digest_create()
200 BIO *dcont, BIO *out, unsigned int flags) in CMS_EncryptedData_decrypt()
225 size_t keylen, unsigned int flags, in CMS_EncryptedData_encrypt_ex()
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_submit.c67 static int32_t submit_headers_shared(nghttp2_session *session, uint8_t flags, in submit_headers_shared()
143 uint8_t flags, int32_t stream_id, in submit_headers_shared_nva()
182 int32_t nghttp2_submit_headers(nghttp2_session *session, uint8_t flags, in nghttp2_submit_headers()
214 int nghttp2_submit_ping(nghttp2_session *session, uint8_t flags, in nghttp2_submit_ping()
220 int nghttp2_submit_priority(nghttp2_session *session, uint8_t flags, in nghttp2_submit_priority()
268 int nghttp2_submit_rst_stream(nghttp2_session *session, uint8_t flags, in nghttp2_submit_rst_stream()
279 int nghttp2_submit_goaway(nghttp2_session *session, uint8_t flags, in nghttp2_submit_goaway()
304 int nghttp2_submit_settings(nghttp2_session *session, uint8_t flags, in nghttp2_submit_settings()
310 int32_t nghttp2_submit_push_promise(nghttp2_session *session, uint8_t flags, in nghttp2_submit_push_promise()
375 int nghttp2_submit_window_update(nghttp2_session *session, uint8_t flags, in nghttp2_submit_window_update()
[all …]
/third_party/skia/src/core/
DSkTraceEvent.h116 #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \ argument
129 flags, ...) \ argument
174 TraceID(const void* id, unsigned char* flags) in TraceID()
178 TraceID(uint64_t id, unsigned char* flags) in TraceID()
180 TraceID(unsigned int id, unsigned char* flags) in TraceID()
182 TraceID(unsigned short id, unsigned char* flags) in TraceID()
184 TraceID(unsigned char id, unsigned char* flags) in TraceID()
186 TraceID(long long id, unsigned char* flags) in TraceID()
188 TraceID(long id, unsigned char* flags) in TraceID()
190 TraceID(int id, unsigned char* flags) in TraceID()
[all …]
/third_party/flutter/skia/src/core/
DSkTraceEvent.h116 #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \ argument
129 flags, ...) \ argument
174 TraceID(const void* id, unsigned char* flags) in TraceID()
178 TraceID(uint64_t id, unsigned char* flags) in TraceID()
180 TraceID(unsigned int id, unsigned char* flags) in TraceID()
182 TraceID(unsigned short id, unsigned char* flags) in TraceID()
184 TraceID(unsigned char id, unsigned char* flags) in TraceID()
186 TraceID(long long id, unsigned char* flags) in TraceID()
188 TraceID(long id, unsigned char* flags) in TraceID()
190 TraceID(int id, unsigned char* flags) in TraceID()
[all …]
/third_party/nghttp2/lib/
Dnghttp2_submit.c67 static int32_t submit_headers_shared(nghttp2_session *session, uint8_t flags, in submit_headers_shared()
143 uint8_t flags, int32_t stream_id, in submit_headers_shared_nva()
182 int32_t nghttp2_submit_headers(nghttp2_session *session, uint8_t flags, in nghttp2_submit_headers()
215 int nghttp2_submit_ping(nghttp2_session *session, uint8_t flags, in nghttp2_submit_ping()
221 int nghttp2_submit_priority(nghttp2_session *session, uint8_t flags, in nghttp2_submit_priority()
273 int nghttp2_submit_rst_stream(nghttp2_session *session, uint8_t flags, in nghttp2_submit_rst_stream()
284 int nghttp2_submit_goaway(nghttp2_session *session, uint8_t flags, in nghttp2_submit_goaway()
309 int nghttp2_submit_settings(nghttp2_session *session, uint8_t flags, in nghttp2_submit_settings()
315 int32_t nghttp2_submit_push_promise(nghttp2_session *session, uint8_t flags, in nghttp2_submit_push_promise()
380 int nghttp2_submit_window_update(nghttp2_session *session, uint8_t flags, in nghttp2_submit_window_update()
[all …]
/third_party/mksh/
Demacsfn.h23 #define FN(cname,sname,flags) static int x_##cname(int); argument
25 #define FN(cname,sname,flags) XFUNC_##cname, argument
26 #define F0(cname,sname,flags) XFUNC_##cname = 0, argument
28 #define FN(cname,sname,flags) { x_##cname, sname, flags }, argument
/third_party/mesa3d/src/mesa/main/
Dsyncobj.c119 GLbitfield flags, GLuint64 timeout) in __client_wait_sync()
272 fence_sync(struct gl_context *ctx, GLenum condition, GLbitfield flags) in fence_sync()
308 _mesa_FenceSync_no_error(GLenum condition, GLbitfield flags) in _mesa_FenceSync_no_error()
316 _mesa_FenceSync(GLenum condition, GLbitfield flags) in _mesa_FenceSync()
338 GLbitfield flags, GLuint64 timeout) in client_wait_sync()
369 _mesa_ClientWaitSync_no_error(GLsync sync, GLbitfield flags, GLuint64 timeout) in _mesa_ClientWaitSync_no_error()
379 _mesa_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout) in _mesa_ClientWaitSync()
404 GLbitfield flags, GLuint64 timeout) in wait_sync()
437 _mesa_WaitSync_no_error(GLsync sync, GLbitfield flags, GLuint64 timeout) in _mesa_WaitSync_no_error()
447 _mesa_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout) in _mesa_WaitSync()
/third_party/ltp/testcases/kernel/syscalls/sendmmsg/
Dsendmmsg_var.h13 unsigned int vlen, unsigned int flags) in libc_sendmmsg()
24 unsigned int vlen, unsigned int flags) in sys_sendmmsg()
30 unsigned int vlen, unsigned int flags, void *timeout) in libc_recvmmsg()
41 unsigned int vlen, unsigned int flags, void *timeout) in sys_recvmmsg()
47 unsigned int vlen, unsigned int flags, void *timeout) in sys_recvmmsg64()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJDecompressor.java379 int flags) throws TJException { in decompress()
390 flags); in decompress() local
408 int desiredHeight, int pixelFormat, int flags) in decompress()
439 int pixelFormat, int flags) throws TJException { in decompress()
476 public void decompressToYUV(YUVImage dstImage, int flags) in decompressToYUV()
502 public void decompressToYUV(byte[] dstBuf, int flags) throws TJException { in decompressToYUV()
548 int flags) throws TJException { in decompressToYUV()
601 int flags) throws TJException { in decompressToYUV()
624 public byte[] decompressToYUV(int flags) throws TJException { in decompressToYUV()
698 int flags) throws TJException { in decompress()
[all …]
/third_party/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJDecompressor.java388 int flags) throws TJException { in decompress()
399 flags); in decompress() local
417 int desiredHeight, int pixelFormat, int flags) in decompress()
448 int pixelFormat, int flags) throws TJException { in decompress()
485 public void decompressToYUV(YUVImage dstImage, int flags) in decompressToYUV()
511 public void decompressToYUV(byte[] dstBuf, int flags) throws TJException { in decompressToYUV()
557 int flags) throws TJException { in decompressToYUV()
610 int flags) throws TJException { in decompressToYUV()
633 public byte[] decompressToYUV(int flags) throws TJException { in decompressToYUV()
707 int flags) throws TJException { in decompress()
[all …]
/third_party/skia/src/gpu/geometry/
DGrShape.cpp55 bool GrShape::simplifyPath(unsigned flags) { in simplifyPath()
98 bool GrShape::simplifyArc(unsigned flags) { in simplifyArc()
152 unsigned flags) { in simplifyRRect()
169 unsigned flags) { in simplifyRect()
202 void GrShape::simplifyLine(const SkPoint& p1, const SkPoint& p2, unsigned flags) { in simplifyLine()
227 void GrShape::simplifyPoint(const SkPoint& point, unsigned flags) { in simplifyPoint()
239 bool GrShape::simplify(unsigned flags) { in simplify()
/third_party/typescript/tests/baselines/reference/JSDocParsing/
DTypeExpressions.parsesCorrectly.arrayType3.json5 "flags": "JSDoc", string
12 "flags": "JSDoc", string
19 "flags": "JSDoc", string
26 "flags": "JSDoc", string
33 "flags": "JSDoc", string
40 "flags": "JSDoc", string
DTypeExpressions.parsesCorrectly.newType1.json5 "flags": "JSDoc", string
13 "flags": "JSDoc", string
20 "flags": "JSDoc", string
30 "flags": "JSDoc", string
37 "flags": "JSDoc", string
44 "flags": "JSDoc", string
53 "flags": "JSDoc", string
DTypeExpressions.parsesCorrectly.recordType7.json5 "flags": "JSDoc", string
13 "flags": "JSDoc", string
20 "flags": "JSDoc", string
29 "flags": "JSDoc", string
38 "flags": "JSDoc", string
45 "flags": "JSDoc", string
54 "flags": "JSDoc", string
DTypeExpressions.parsesCorrectly.thisType1.json5 "flags": "JSDoc", string
13 "flags": "JSDoc", string
20 "flags": "JSDoc", string
30 "flags": "JSDoc", string
37 "flags": "JSDoc", string
44 "flags": "JSDoc", string
53 "flags": "JSDoc", string

12345678910>>...174