/third_party/vulkan-loader/scripts/ |
D | loader_extension_generator.py | 305 protect=self.featureExtraProtect, 371 protect=self.featureExtraProtect, 382 protect=self.featureExtraProtect, 395 protect=self.featureExtraProtect, 407 protect=self.featureExtraProtect, 539 if cur_cmd.protect is not None: 540 table += '#ifdef %s\n' % cur_cmd.protect 544 if cur_cmd.protect is not None: 545 table += '#endif // %s\n' % cur_cmd.protect 582 if cur_cmd.protect is not None: [all …]
|
D | common_codegen.py | 71 protect = None 73 protect = platform_dict[platform] 74 return protect
|
D | loader_genvk.py | 66 protect = args.protect 115 protectFeature = protect
|
/third_party/python/Doc/distutils/ |
D | commandref.rst | 9 .. % \section{Building modules: the \protect\command{build} command family} 11 .. % \subsubsection{\protect\command{build}} 13 .. % \subsubsection{\protect\command{build\_py}} 15 .. % \subsubsection{\protect\command{build\_ext}} 17 .. % \subsubsection{\protect\command{build\_clib}} 30 .. % \subsubsection{\protect\command{install\_lib}} 49 .. % \subsection{Cleaning up: the \protect\command{clean} command} 98 .. % \protect\command{bdist} command family} 101 .. % \subsection{\protect\command{bdist}} 102 .. % \subsection{\protect\command{bdist\_dumb}} [all …]
|
/third_party/openssl/providers/common/ |
D | securitycheck.c | 31 int protect = 0; in ossl_rsa_check_key() local 35 protect = 1; in ossl_rsa_check_key() 41 protect = 1; in ossl_rsa_check_key() 64 if (protect ? (sz < 2048) : (sz < 1024)) { in ossl_rsa_check_key() 72 (void)protect; in ossl_rsa_check_key() 92 int ossl_ec_check_key(OSSL_LIB_CTX *ctx, const EC_KEY *ec, int protect) in ossl_ec_check_key() argument 133 if (protect && strength < 112) { in ossl_ec_check_key()
|
/third_party/iowow/src/platform/win32/mman/ |
D | mman.c | 23 DWORD protect = 0; in __map_mmap_prot_page() local 25 return protect; in __map_mmap_prot_page() 28 protect = ((prot & PROT_WRITE)) ? PAGE_EXECUTE_READWRITE : PAGE_EXECUTE_READ; in __map_mmap_prot_page() 30 protect = ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE)) ? PAGE_READWRITE : PAGE_READONLY; in __map_mmap_prot_page() 32 return protect; in __map_mmap_prot_page() 68 const DWORD protect = __map_mmap_prot_page(prot, flags); in mmap() local 89 fm = CreateFileMapping(fh, NULL, protect, dwMaxSizeHigh, dwMaxSizeLow, NULL); in mmap()
|
/third_party/flutter/skia/third_party/externals/libpng/scripts/ |
D | options.awk | 82 protect = "" 236 protect = $4 237 if (protect != "") { 238 print start "#ifndef", protect end >out 239 print start "#define", protect end >out 895 if (protect != "") { 896 print start "#endif", "/*", protect, "*/" end >out
|
/third_party/skia/third_party/externals/libpng/scripts/ |
D | options.awk | 82 protect = "" 236 protect = $4 237 if (protect != "") { 238 print start "#ifndef", protect end >out 239 print start "#define", protect end >out 895 if (protect != "") { 896 print start "#endif", "/*", protect, "*/" end >out
|
/third_party/skia/third_party/externals/egl-registry/api/ |
D | genheaders.py | 31 protect = True variable 53 protect = False variable 269 protectFile = protect 270 protectFeature = protect 271 protectProto = protect
|
/third_party/skia/third_party/externals/opengl-registry/xml/ |
D | genheaders.py | 31 protect = True variable 53 protect = False variable 267 protectFile = protect 268 protectFeature = protect 269 protectProto = protect
|
D | genglvnd.py | 31 protect = True variable 53 protect = False variable 268 protectFile = protect 269 protectFeature = protect 270 protectProto = protect
|
/third_party/openGLES/xml/ |
D | genheaders.py | 20 protect = True variable 189 protectFile = protect 190 protectFeature = protect 191 protectProto = protect 521 protect = False variable
|
D | genglvnd.py | 20 protect = True variable 42 protect = False variable 238 protectFile = protect 239 protectFeature = protect 240 protectProto = protect
|
/third_party/EGL/api/ |
D | genheaders.py | 20 protect = True variable 194 protectFile = protect 195 protectFeature = protect 196 protectProto = protect 563 protect = False variable
|
D | registry.rnc | 176 # protect - additional #ifdef symbol to place around the feature 185 attribute protect { text } ?, 215 attribute protect { text } ?,
|
/third_party/skia/fuzz/ |
D | FuzzCreateDDL.cpp | 140 GrProtected protect = GrProtected::kNo; in make_characterization() local 142 fuzz->nextEnum(&protect, GrProtected::kYes); in make_characterization() 149 false, true, protect); in make_characterization()
|
/third_party/vulkan-headers/registry/ |
D | generator.py | 649 protect = elem.get('protect') 650 if protect is not None: 651 body += '#ifdef {}\n'.format(protect) 674 if protect is not None: 742 protect = elem.get('protect') 743 if protect is not None: 744 decl += '#ifdef {}\n'.format(protect) 753 if protect is not None:
|
/third_party/openssl/doc/man3/ |
D | RSA_blinding_on.pod | 5 RSA_blinding_on, RSA_blinding_off - protect the RSA operation from timing attacks 25 must be used to protect the RSA operation from that attack.
|
/third_party/python/Lib/test/ |
D | test_sys_setprofile.py | 389 def protect(f, p): function 393 protect_ident = ident(protect) 405 protect(callable, p)
|
/third_party/vk-gl-cts/scripts/khr_util/ |
D | registry.py | 439 protect = eExtension.get('protect') 440 if protect is not None and protect not in available: 441 warnElem(eExtension, "Unavailable dependency %s", protect)
|
/third_party/openssl/providers/common/include/prov/ |
D | securitycheck.h | 14 int ossl_ec_check_key(OSSL_LIB_CTX *ctx, const EC_KEY *ec, int protect);
|
/third_party/openssl/doc/internal/man3/ |
D | ossl_cmp_certreq_new.pod | 76 The function does not protect the message if the B<status> value in I<si> 123 It does not protect the message if the B<status> value in I<si> is B<rejected> 148 The function does not protect the message if I<unprotectedErrors> is nonzero.
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-threads/ |
D | README.md | 9 It also demonstrates how to protect a shared data area between the
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-basicauth/ |
D | README.md | 3 This demonstrates how to protect a mount using a password
|
/third_party/mesa3d/src/glx/apple/ |
D | TODO | 24 Where 2 threads are doing the same sort of path of create and destroy. The locking should protect
|