Home
last modified time | relevance | path

Searched +refs:check +refs:flags (Results 1 – 25 of 1062) sorted by relevance

12345678910>>...43

/third_party/boost/tools/build/src/tools/
Dflags.jam6 # defines the check-has-flag rule.
15 import toolset : flags ;
24 project /check/flags ;
29 project : requirements <flags.check>on ;
48 # [ check-has-flag <cxxflags>-std=c++11 : <cxxflags>-std=c++11 ] ;
50 rule check-has-flag ( option message ? : true-properties * : false-properties * )
65 errors.user-error "Don't know how to check $(option:G)" ;
71 return [ check-target-builds /check/flags//flags_$(id) $(message)
75 IMPORT $(__name__) : check-has-flag : : check-has-flag ;
77 feature flags.check : on : optional composite ;
[all …]
Dqcc.jam25 toolset.inherit-flags qcc : unix ;
40 local condition = [ common.check-init-parameters qcc : version $(version) ] ;
54 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>/<address-model> : NA ;
57 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>x86/<address-model>32 : -Vgcc_ntox86 ;
58 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>arm/<address-model>32 : -Vgcc_ntoarmv7le ;
61 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>x86/<address-model>64 : -Vgcc_ntox86_64 ;
62 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>arm/<address-model>64 : -Vgcc_ntoaarch64le ;
65 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>power/<address-model>32 : -Vgcc_ntoppcbe ;
66 toolset.flags qcc QCC-TARGET-PLATFORM <architecture>mips1/<address-model>32 : -Vgcc_ntomipsle ;
69 # toolset.flags qcc QCC-TARGET-PLATFORM <architecture>arm/<address-model>32 : -Vgcc_ntoarmle ;
[all …]
/third_party/ltp/testcases/kernel/mce-test/tsrc/
Dtsoftinj.c41 void *checked_mmap(void *addr, size_t length, int prot, int flags, in checked_mmap() argument
44 void *p = mmap(addr, length, prot, flags, fd, offset); in checked_mmap()
92 void disk_backed(char *name, int flags) in disk_backed() argument
101 MAP_SHARED|flags, fd, 0); in disk_backed()
107 void anonymous(char *name, int flags) in anonymous() argument
111 MAP_PRIVATE|MAP_ANONYMOUS|flags, 0, 0); in anonymous()
119 void shm_hugepage(char *name, int flags) in shm_hugepage() argument
133 void anonymous_hugepage(char *name, int flags) in anonymous_hugepage() argument
144 void filebacked_hugepage(char *name, int flags) in filebacked_hugepage() argument
159 void check(unsigned *count, char *name, unsigned expected) in check() function
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
DvktMemoryRequirementsTests.cpp54 …const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsa… in makeBuffer() argument
60 flags, // VkBufferCreateFlags flags; in makeBuffer()
70 …const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsa… in getBufferMemoryRequirements() argument
72 const Unique<VkBuffer> buffer(makeBuffer(vk, device, size, flags, usage)); in getBufferMemoryRequirements()
76 …const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsa… in getBufferMemoryRequirements2() argument
78 const Unique<VkBuffer> buffer (makeBuffer(vk, device, size, flags, usage)); in getBufferMemoryRequirements2()
97 …const VkDevice device, const VkDeviceSize size, const VkBufferCreateFlags flags, const VkBufferUsa… in getBufferCreateInfoMemoryRequirementsKHR() argument
103 flags, // VkBufferCreateFlags flags; in getBufferCreateInfoMemoryRequirementsKHR()
265 const VkBufferCreateFlags flags,
296 const VkBufferCreateFlags flags,
[all …]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkRefUtil.cpp39 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createGraphicsPipeline()
50 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createComputePipeline()
61 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createRayTracingPipelineNV()
73 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createRayTracingPipelineKHR()
81 …return Move<VkCommandBuffer>(check<VkCommandBuffer>(object), Deleter<VkCommandBuffer>(vk, device, … in allocateCommandBuffer()
89 …return Move<VkDescriptorSet>(check<VkDescriptorSet>(object), Deleter<VkDescriptorSet>(vk, device, … in allocateDescriptorSet()
94 VkSemaphoreCreateFlags flags, in createSemaphore() argument
102 flags in createSemaphore()
111 VkSemaphoreCreateFlags flags, in createSemaphoreType() argument
128 flags in createSemaphoreType()
[all …]
/third_party/python/Lib/test/
D_test_embed_set_config.py30 def check(self, **kwargs): member in SetConfigTests
162 self.assertEqual(getattr(sys.flags, sys_attr), value)
165 self.assertEqual(sys.flags.dont_write_bytecode, True)
169 self.assertEqual(sys.flags.dont_write_bytecode, False)
173 self.assertEqual(sys.flags.no_user_site, 1)
175 self.assertEqual(sys.flags.no_user_site, 0)
178 self.assertEqual(sys.flags.no_site, 1)
180 self.assertEqual(sys.flags.no_site, 0)
183 self.assertEqual(sys.flags.dev_mode, False)
185 self.assertEqual(sys.flags.dev_mode, True)
[all …]
/third_party/zlib/
Dinflate.c133 state->flags = -1;
451 # define UPDATE_CHECK(check, buf, len) \ argument
452 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
454 # define UPDATE_CHECK(check, buf, len) adler32(check, buf, len) argument
459 # define CRC2(check, word) \ argument
463 check = crc32(check, hbuf, 2); \
466 # define CRC4(check, word) \ argument
472 check = crc32(check, hbuf, 4); \
668 state->check = crc32(0L, Z_NULL, 0);
669 CRC2(state->check, hold);
[all …]
/third_party/libpsl/contrib/
Dcheck-hard51 make -s check -j$CORES
55 for flags in --enable-ubsan --enable-asan; do
58 echo " *** CC=$CC ./configure $DISTCHECK_CONFIGURE_FLAGS $flags"
59 ./configure $DISTCHECK_CONFIGURE_FLAGS $flags CFLAGS="$CFLAGS"
62 make -s check -j$CORES
72 echo " *** TESTS_ENVIRONMENT=\"$TESTS_ENVIRONMENT\"" make check -j$CORES
74 make -s check -j$CORES
84 make -s check -j$CORES
/third_party/libwebsockets/win32port/zlib/
Dinflate.c412 # define UPDATE(check, buf, len) \ argument
413 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
415 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
420 # define CRC2(check, word) \ argument
424 check = crc32(check, hbuf, 2); \
427 # define CRC4(check, word) \ argument
433 check = crc32(check, hbuf, 4); \
632 state->check = crc32(0L, Z_NULL, 0);
633 CRC2(state->check, hold);
638 state->flags = 0; /* expect zlib header */
[all …]
/third_party/curl/CMake/
DCurlTests.c67 int flags = 0; in main() local
68 if(0 != fcntl(0, F_SETFL, flags | O_NONBLOCK)) in main()
245 unsigned long flags = ioctlsocket(socket, FIONBIO, &flags); in main() local
300 long flags = 0; in main() local
301 if(0 != IoctlSocket(0, FIONBIO, &flags)) in main()
327 int flags = 0; in main() local
328 if(0 != ioctlsocket(0, FIONBIO, &flags)) in main()
358 int flags = 0; in main() local
359 if(0 != ioctl(0, FIONBIO, &flags)) in main()
434 void check(char c) {} in check() function
[all …]
/third_party/node/deps/zlib/
Dinflate.c231 state->check = 1L; /* 1L is the result of adler32() zero length data */
451 # define UPDATE(check, buf, len) \ argument
452 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
454 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
459 # define CRC2(check, word) \ argument
463 check = crc32(check, hbuf, 2); \
466 # define CRC4(check, word) \ argument
472 check = crc32(check, hbuf, 4); \
668 state->check = crc32(0L, Z_NULL, 0);
669 CRC2(state->check, hold);
[all …]
/third_party/skia/third_party/externals/zlib/
Dinflate.c231 state->check = 1L; /* 1L is the result of adler32() zero length data */
451 # define UPDATE(check, buf, len) \ argument
452 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
454 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
459 # define CRC2(check, word) \ argument
463 check = crc32(check, hbuf, 2); \
466 # define CRC4(check, word) \ argument
472 check = crc32(check, hbuf, 4); \
668 state->check = crc32(0L, Z_NULL, 0);
669 CRC2(state->check, hold);
[all …]
/third_party/flutter/skia/third_party/externals/zlib/
Dinflate.c231 state->check = 1L; /* 1L is the result of adler32() zero length data */
451 # define UPDATE(check, buf, len) \ argument
452 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
454 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
459 # define CRC2(check, word) \ argument
463 check = crc32(check, hbuf, 2); \
466 # define CRC4(check, word) \ argument
472 check = crc32(check, hbuf, 4); \
668 state->check = crc32(0L, Z_NULL, 0);
669 CRC2(state->check, hold);
[all …]
/third_party/flutter/skia/third_party/externals/zlib/contrib/optimizations/
Dinflate.c232 state->check = 1L; /* 1L is the result of adler32() zero length data */
462 # define UPDATE(check, buf, len) \ argument
463 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
465 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
470 # define CRC2(check, word) \ argument
474 check = crc32(check, hbuf, 2); \
477 # define CRC4(check, word) \ argument
483 check = crc32(check, hbuf, 4); \
679 state->check = crc32(0L, Z_NULL, 0);
680 CRC2(state->check, hold);
[all …]
/third_party/node/deps/zlib/contrib/optimizations/
Dinflate.c232 state->check = 1L; /* 1L is the result of adler32() zero length data */
462 # define UPDATE(check, buf, len) \ argument
463 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
465 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
470 # define CRC2(check, word) \ argument
474 check = crc32(check, hbuf, 2); \
477 # define CRC4(check, word) \ argument
483 check = crc32(check, hbuf, 4); \
679 state->check = crc32(0L, Z_NULL, 0);
680 CRC2(state->check, hold);
[all …]
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
Dinflate.c232 state->check = 1L; /* 1L is the result of adler32() zero length data */
462 # define UPDATE(check, buf, len) \ argument
463 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
465 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
470 # define CRC2(check, word) \ argument
474 check = crc32(check, hbuf, 2); \
477 # define CRC4(check, word) \ argument
483 check = crc32(check, hbuf, 4); \
679 state->check = crc32(0L, Z_NULL, 0);
680 CRC2(state->check, hold);
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/
Dinflate.c450 # define UPDATE(check, buf, len) \ argument
451 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
453 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
458 # define CRC2(check, word) \ argument
462 check = crc32(check, hbuf, 2); \
465 # define CRC4(check, word) \ argument
471 check = crc32(check, hbuf, 4); \
667 state->check = crc32(0L, Z_NULL, 0);
668 CRC2(state->check, hold);
673 state->flags = 0; /* expect zlib header */
[all …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/
Dinflate.c450 # define UPDATE(check, buf, len) \ argument
451 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
453 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
458 # define CRC2(check, word) \ argument
462 check = crc32(check, hbuf, 2); \
465 # define CRC4(check, word) \ argument
471 check = crc32(check, hbuf, 4); \
667 state->check = crc32(0L, Z_NULL, 0);
668 CRC2(state->check, hold);
673 state->flags = 0; /* expect zlib header */
[all …]
/third_party/libsoup/tests/
Dchunk-test.c144 RequestTestFlags flags = GPOINTER_TO_UINT (data); in do_request_test() local
149 GChecksum *check; in do_request_test() local
152 if (flags & RESTART) in do_request_test()
159 ptd.streaming = flags & (HACKY_STREAMING | PROPER_STREAMING); in do_request_test()
161 check = g_checksum_new (G_CHECKSUM_MD5); in do_request_test()
164 g_checksum_update (check, (guchar *)ptd.chunks[i]->data, in do_request_test()
168 client_md5 = g_checksum_get_string (check); in do_request_test()
173 if (flags & HACKY_STREAMING) { in do_request_test()
176 if (flags & RESTART) { in do_request_test()
185 if (flags & PROPER_STREAMING) { in do_request_test()
[all …]
/third_party/ffmpeg/tools/
Dffhash.c76 static int check(char *file) in check() function
79 int fd, flags = O_RDONLY; in check() local
83 flags |= O_BINARY; in check()
85 if (file) fd = open(file, flags); in check()
144 ret |= check(argv[i]); in main()
147 ret |= check(NULL); in main()
/third_party/skia/third_party/externals/expat/expat/conftools/
Dax-append-link-flags.m414 # If FLAGS-VARIABLE is not specified, the linker's flags (LDFLAGS) is
15 # used. During the check the flag is always added to the linker's flags.
17 # If EXTRA-FLAGS is defined, it is added to the linker's default flags
18 # when the check is done. The check is thus made with the flags: "LDFLAGS
Dax-append-compile-flags.m414 # If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
15 # CFLAGS) is used. During the check the flag is always added to the
16 # current language's flags.
19 # flags (e.g. CFLAGS) when the check is done. The check is thus made with
20 # the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-hugeurl/
Dminimal-secure-streams.c21 static char *hugeurl, *check; variable
193 memcpy(check + m->comp, p, l); in lws_httpbin_json_cb()
202 myss_rx(void *userobj, const uint8_t *buf, size_t len, int flags) in myss_rx() argument
206 if (flags & LWSSS_FLAG_SOM) in myss_rx()
222 if (flags & LWSSS_FLAG_EOM) { in myss_rx()
236 if (memcmp(hugeurl, check, hugeurl_size)) { in myss_rx()
272 check = malloc(hugeurl_size + 1); in myss_state()
273 if (!check) { in myss_state()
439 if (check) in main()
440 free(check); in main()
/third_party/glib/glib/
Dgbsearcharray.h52 guint flags; member
130 if (bconfig->flags & G_BSEARCH_ARRAY_ALIGN_POWER2) in g_bsearch_array_create()
149 guint8 *check = NULL, *nodes = G_BSEARCH_ARRAY_NODES (barray); in g_bsearch_array_lookup_fuzzy() local
158 check = nodes + i * sizeof_node; in g_bsearch_array_lookup_fuzzy()
159 cmp = cmp_nodes (key_node, check); in g_bsearch_array_lookup_fuzzy()
161 return sibling_or_after > 1 ? NULL : check; in g_bsearch_array_lookup_fuzzy()
169 …IKELY (!sibling_or_after) ? NULL : (sibling_or_after > 1 && cmp > 0) ? check + sizeof_node : check; in g_bsearch_array_lookup_fuzzy()
204 if (G_UNLIKELY (bconfig->flags & G_BSEARCH_ARRAY_ALIGN_POWER2)) in g_bsearch_array_grow()
271 if (G_UNLIKELY (bconfig->flags & G_BSEARCH_ARRAY_AUTO_SHRINK)) in g_bsearch_array_remove()
276 if (G_UNLIKELY (bconfig->flags & G_BSEARCH_ARRAY_ALIGN_POWER2)) in g_bsearch_array_remove()
/third_party/skia/third_party/externals/expat/expat/
Dacinclude.m45 m4_include(conftools/ax-check-compile-flag.m4)
6 m4_include(conftools/ax-check-link-flag.m4)
8 m4_include(conftools/ax-append-compile-flags.m4)
9 m4_include(conftools/ax-append-link-flags.m4)

12345678910>>...43