| /third_party/python/Objects/clinic/ |
| D | codeobject.c.h | 3 [clinic start generated code]*/ 6 "code(argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize,\n" 10 "--\n" 12 "Create a code object. Not for the faint of heart."); 17 PyObject *code, PyObject *consts, PyObject *names, 33 PyObject *code; in code_new() local 47 type->tp_init == PyCode_Type.tp_init) && in code_new() 48 !_PyArg_NoKeywords("code", kwargs)) { in code_new() 49 goto exit; in code_new() 51 if (!_PyArg_CheckPositional("code", PyTuple_GET_SIZE(args), 16, 18)) { in code_new() [all …]
|
| /third_party/python/Modules/clinic/ |
| D | fcntlmodule.c.h | 3 [clinic start generated code]*/ 7 "--\n" 19 "corresponding to the return value of the fcntl call in the C code."); 25 fcntl_fcntl_impl(PyObject *module, int fd, int code, PyObject *arg); 32 int code; in fcntl_fcntl() local 36 goto exit; in fcntl_fcntl() 39 goto exit; in fcntl_fcntl() 41 code = _PyLong_AsInt(args[1]); in fcntl_fcntl() 42 if (code == -1 && PyErr_Occurred()) { in fcntl_fcntl() 43 goto exit; in fcntl_fcntl() [all …]
|
| D | pyexpat.c.h | 3 [clinic start generated code]*/ 7 "--\n" 32 goto exit; in pyexpat_xmlparser_Parse() 39 if (isfinal == -1 && PyErr_Occurred()) { in pyexpat_xmlparser_Parse() 40 goto exit; in pyexpat_xmlparser_Parse() 45 exit: in pyexpat_xmlparser_Parse() 51 "--\n" 53 "Parse XML data from file-like object."); 73 goto exit; in pyexpat_xmlparser_ParseFile() 78 exit: in pyexpat_xmlparser_ParseFile() [all …]
|
| /third_party/python/Lib/test/ |
| D | clinic.test | 3 [clinic start generated code]*/ 4 /*[clinic end generated code: output=da39a3ee5e6b4b0d input=3c81ac2402d06a8b]*/ 16 [clinic start generated code]*/ 20 "--\n" 40 goto exit; 44 goto exit; 48 goto exit; 54 exit: 61 /*[clinic end generated code: output=886f4f9b598726b6 input=005e6a8a711a869b]*/ 70 [clinic start generated code]*/ [all …]
|
| /third_party/python/Python/clinic/ |
| D | import.c.h | 3 [clinic start generated code]*/ 7 "--\n" 27 "--\n" 31 "This lock should be used by import hooks to ensure thread-safety when importing\n" 48 "--\n" 67 "_fix_co_filename($module, code, path, /)\n" 68 "--\n" 70 "Changes code.co_filename to specify the passed-in file path.\n" 72 " code\n" 73 " Code object to change.\n" [all …]
|
| /third_party/openhitls/docs/en/5_Developer Guide/ |
| D | 1_Encryption and Integrity Protection Application Development Guide.md | 13 * Random number generation: supports DRBG-HASH, DRBG-CTR, and DRBG-HMAC. 19 …symmetric algorithms. The following uses the SM4-CBC algorithm as an example to describe the sampl… 21 ## Sample Code 32 #include "crypt_errno.h" // Error code list. 64 // Initialize the error code module. 82 …rintf("error code is %x\n", ret); // Output the error code. You can find the error information in … 84 goto EXIT; 89 printf("error code is %x\n", ret); 91 goto EXIT; 97 printf("error code is %x\n", ret); [all …]
|
| /third_party/openhitls/docs/zh/5_开发指南/ |
| D | 1_加密完保应用开发指南.md | 13 * 随机数生成:支持DRBG-HASH, DRBG-CTR, DRBG-HMAC随机数功能。 19 对称加解密功能基于对称算法提供了加解密能力,如下以SM4-CBC算法为例,给出了对称加解密的示例代码,供适配参考。 82 printf("error code is %x\n", ret); // 输出错误码,可借助错误码在crypt_errno.h中找到对应的错误信息 84 goto EXIT; 89 printf("error code is %x\n", ret); 91 goto EXIT; 97 printf("error code is %x\n", ret); 99 goto EXIT; 103 outLen = sizeof(cipherText) - outTotalLen; // cipherText剩余空间 108 printf("error code is %x\n", ret); [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
| D | LoopUnrollRuntime.cpp | 1 //===-- UnrollLoopRuntime.cpp - Runtime Loop unrolling utilities ----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file implements some loop unrolling utilities for loops with run-time 10 // trip counts. See LoopUnroll.cpp for unrolling loops with compile-time 13 // The functions in this file are used to generate extra code when the 14 // run-time trip count modulo the unroll factor is not 0. When this is the 15 // case, we need to generate code to execute these 'left over' iterations. 17 // The current strategy generates an if-then-else sequence prior to the 21 //===----------------------------------------------------------------------===// [all …]
|
| /third_party/jerryscript/jerry-port/default/ |
| D | default-fatal.c | 7 * http://www.apache.org/licenses/LICENSE-2.0 18 #include "jerryscript-port.h" 19 #include "jerryscript-port-default.h" 38 * Default implementation of jerry_port_fatal. Calls 'abort' if exit code is 39 * non-zero, 'exit' otherwise. 41 void jerry_port_fatal (jerry_fatal_code_t code) /**< cause of error */ in jerry_port_fatal() argument 48 jerry_fatal_handler ((int) code); in jerry_port_fatal() 50 if (code != 0 in jerry_port_fatal() 51 && code != ERR_OUT_OF_MEMORY) in jerry_port_fatal() 56 exit ((int) code); in jerry_port_fatal() [all …]
|
| /third_party/skia/m133/infra/bots/recipe_modules/flavor/resources/ |
| D | win_run_and_check_log.ps1 | 2 # Use of this source code is governed by a BSD-style license that can be 6 # Runs the given command, prints the exit code, and prints any application 8 # return exit code 1; if any crashes, return exit code 2; otherwise, return exit 9 # code 0. 13 $begin = Get-Date 16 & $args[0] $args[1..($args.length - 1)] 20 Write-Host "$($args[0]) exited with status $res" 22 # dm sometimes exits with negative exit codes, e.g. -1073741569, which in some 23 # cases cmd treats as 0. Ensure any non-zero are OK for cmd. 24 if ($res -ne 0) { [all …]
|
| /third_party/skia/tools/ |
| D | build_command_buffer.py | 5 # Use of this source code is governed by a BSD-style license that can be 25 parser.add_argument('-c', '--chrome-dir', required=True, help= 27 parser.add_argument('-o', '--output-dir', required=True, 30 parser.add_argument('--make-output-dir', default=False, action='store_true', 32 parser.add_argument('--chrome-out-dir', default='CommandBufferForSkia', 36 parser.add_argument('--extra-gn-args', default='', 39 parser.add_argument('--extra-ninja-args', default='', 42 parser.add_argument('--chrome-revision', default='origin/lkgr', 44 parser.add_argument('--no-sync', action='store_true', default=False, 46 parser.add_argument('--no-hooks', action='store_true', default=False, [all …]
|
| /third_party/skia/infra/bots/recipe_modules/flavor/resources/ |
| D | win_run_and_check_log.ps1 | 2 # Use of this source code is governed by a BSD-style license that can be 6 # Runs the given command, prints the exit code, and prints any application 8 # return exit code 1; if any crashes, return exit code 2; otherwise, return exit 9 # code 0. 13 $begin = Get-Date 16 & $args[0] $args[1..($args.length - 1)] 20 Write-Host "$($args[0]) exited with status $res" 22 # dm sometimes exits with negative exit codes, e.g. -1073741569, which in some 23 # cases cmd treats as 0. Ensure any non-zero are OK for cmd. 24 if ($res -ne 0) { [all …]
|
| /third_party/python/Doc/library/ |
| D | __main__.rst | 1 :mod:`__main__` --- Top-level code environment 5 :synopsis: The environment where top-level code is run. Covers command-line 6 interfaces, import-time behavior, and ``__name__ == '__main__'``. 8 -------------- 12 1. the name of the top-level environment of the program, which can be 19 :ref:`tut-modules` for an introduction. 25 --------------------------- 42 However, if the module is executed in the top-level code environment, 45 What is the "top-level code environment"? 48 ``__main__`` is the name of the environment where top-level code is run. [all …]
|
| /third_party/skia/third_party/externals/icu/source/tools/gensprep/ |
| D | store.c | 6 * Copyright (C) 1999-2014, International Business Machines 11 * encoding: UTF-8 15 * created on: 2003-02-06 39 * StringPrep profile file format ------------------------------------ 41 * The file format prepared and written here contains a 16-bit trie and a mapping table. 55 * Any Unicode code point from 0 to 0x10ffff can be looked up to get 56 * the trie-word, if any, for that code point. This means that the input 57 * to the lookup are 21-bit unsigned integers, with not all of the 58 * 21-bit range used. 63 * int32_t indexes[_SPREP_INDEX_TOP]; -- _SPREP_INDEX_TOP=16, see enum in sprpimpl.h file [all …]
|
| /third_party/icu/icu4c/source/tools/gensprep/ |
| D | store.c | 6 * Copyright (C) 1999-2014, International Business Machines 11 * encoding: UTF-8 15 * created on: 2003-02-06 40 * StringPrep profile file format ------------------------------------ 42 * The file format prepared and written here contains a 16-bit trie and a mapping table. 56 * Any Unicode code point from 0 to 0x10ffff can be looked up to get 57 * the trie-word, if any, for that code point. This means that the input 58 * to the lookup are 21-bit unsigned integers, with not all of the 59 * 21-bit range used. 64 * int32_t indexes[_SPREP_INDEX_TOP]; -- _SPREP_INDEX_TOP=16, see enum in sprpimpl.h file [all …]
|
| /third_party/skia/m133/third_party/externals/icu/source/tools/gensprep/ |
| D | store.c | 6 * Copyright (C) 1999-2014, International Business Machines 11 * encoding: UTF-8 15 * created on: 2003-02-06 40 * StringPrep profile file format ------------------------------------ 42 * The file format prepared and written here contains a 16-bit trie and a mapping table. 56 * Any Unicode code point from 0 to 0x10ffff can be looked up to get 57 * the trie-word, if any, for that code point. This means that the input 58 * to the lookup are 21-bit unsigned integers, with not all of the 59 * 21-bit range used. 64 * int32_t indexes[_SPREP_INDEX_TOP]; -- _SPREP_INDEX_TOP=16, see enum in sprpimpl.h file [all …]
|
| /third_party/python/Modules/_sqlite/ |
| D | util.c | 1 /* util.c - various utility functions 3 * Copyright (C) 2005-2010 Gerhard Häring <gh@ghaering.de> 7 * This software is provided 'as-is', without any express or implied 27 // Returns non-NULL if a new exception should be raised 37 return state->InternalError; in get_exception_class() 53 return state->OperationalError; in get_exception_class() 55 return state->DatabaseError; in get_exception_class() 57 return state->DataError; in get_exception_class() 60 return state->IntegrityError; in get_exception_class() 63 return state->InterfaceError; in get_exception_class() [all …]
|
| /third_party/openssl/util/ |
| D | wrap.pl.in | 1 #! {- $config{HASHBANGPERL} -} 12 require {- 17 -}; 18 OpenSSL::Util->import(); 27 if ($ARGV[0] eq '-fips') { 28 $std_openssl_conf = {- 31 "'" . abs_path(catfile($config{sourcedir}, 'test/fips-and-base.cnf')) . "'"; 32 -}; 38 && -d $std_openssl_conf_include; 42 if ($ENV{OPENSSL_ENGINES} // '') eq '' && -d $std_engines; [all …]
|
| /third_party/ncurses/man/ |
| D | tput.1 | 3 .\" Copyright 2018-2023,2024 Thomas E. Dickey * 4 .\" Copyright 1998-2016,2017 Free Software Foundation, Inc. * 32 .TH @TPUT@ 1 2024-04-20 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "User commands" 50 \fB\%@TPUT@\fP \- 53 \fB@TPUT@\fP [\fB\-T\fP \fIterminal-type\fP] 54 {\fIcap-code\fP [\fIparameter\fP .\|.\|.\&]} .\|.\|. 56 \fB@TPUT@\fP [\fB\-T\fP \fIterminal-type\fP] [\fB\-x\fP] \fBclear\fP 58 \fB@TPUT@\fP [\fB\-T\fP \fIterminal-type\fP] \fBinit\fP 60 \fB@TPUT@\fP [\fB\-T\fP \fIterminal-type\fP] \fB\%reset\fP 62 \fB@TPUT@\fP [\fB\-T\fP \fIterminal-type\fP] \fB\%longname\fP [all …]
|
| /third_party/skia/third_party/externals/icu/source/extra/uconv/ |
| D | uconv.1.in | 1 .\" Hey, Emacs! This is -*-nroff-*- you know... 7 .\" Copyright (C) 2000-2013 IBM, Inc. and others. 11 .TH UCONV 1 "2005-jul-1" "ICU MANPAGE" "ICU @VERSION@ Manual" 14 \- convert data from one encoding to another 21 .BI "\-V\fP, \fB\-\-version" 24 .BI "\-s\fP, \fB\-\-silent" 27 .BI "\-v\fP, \fB\-\-verbose" 30 .BI "\-l\fP, \fB\-\-list" 32 .BI "\-l\fP, \fB\-\-list\-code" " code" 34 .BI "\-\-default-code" [all …]
|
| /third_party/skia/m133/third_party/externals/icu/source/extra/uconv/ |
| D | uconv.1.in | 1 .\" Hey, Emacs! This is -*-nroff-*- you know... 7 .\" Copyright (C) 2000-2013 IBM, Inc. and others. 11 .TH UCONV 1 "2005-jul-1" "ICU MANPAGE" "ICU @VERSION@ Manual" 14 \- convert data from one encoding to another 21 .BI "\-V\fP, \fB\-\-version" 24 .BI "\-s\fP, \fB\-\-silent" 27 .BI "\-v\fP, \fB\-\-verbose" 30 .BI "\-l\fP, \fB\-\-list" 32 .BI "\-l\fP, \fB\-\-list\-code" " code" 34 .BI "\-\-default-code" [all …]
|
| /third_party/icu/icu4c/source/extra/uconv/ |
| D | uconv.1.in | 1 .\" Hey, Emacs! This is -*-nroff-*- you know... 7 .\" Copyright (C) 2000-2013 IBM, Inc. and others. 11 .TH UCONV 1 "2005-jul-1" "ICU MANPAGE" "ICU @VERSION@ Manual" 14 \- convert data from one encoding to another 21 .BI "\-V\fP, \fB\-\-version" 24 .BI "\-s\fP, \fB\-\-silent" 27 .BI "\-v\fP, \fB\-\-verbose" 30 .BI "\-l\fP, \fB\-\-list" 32 .BI "\-l\fP, \fB\-\-list\-code" " code" 34 .BI "\-\-default-code" [all …]
|
| /third_party/rust/rust/src/tools/clippy/.github/ |
| D | deploy.sh | 3 set -ex 6 rm -rf out/master/ || exit 0 10 cp util/gh-pages/index.html out/master 11 cp util/gh-pages/script.js out/master 12 cp util/gh-pages/lints.json out/master 14 if [[ -n $TAG_NAME ]]; then 16 cp -Tr out/master "out/$TAG_NAME" 17 rm -f out/stable 18 ln -s "$TAG_NAME" out/stable 23 cp -r out/master/* out/beta [all …]
|
| /third_party/libwebsockets/lib/misc/ |
| D | daemonize.c | 2 * This code is mainly taken from Doug Potter's page 4 * http://www-theorie.physik.unizh.ch/~dpotter/howto/daemonize 6 * I contacted him 2007-04-16 about the license for the original code, 11 * Copyright (c)2006 - 2013 Andy Green <andy@warmcat.com> 30 #include "private-lib-core.h" 49 exit(0); in child_handler() 55 exit(0); in child_handler() 62 "unable to create lock file %s, code=%d (%s)\n", in child_handler() 64 exit(0); in child_handler() 70 "unable to write pid to lock file %s, code=%d (%s)\n", in child_handler() [all …]
|
| /third_party/skia/third_party/externals/freetype/src/cff/ |
| D | cffparse.c | 7 * Copyright (C) 1996-2021 by 42 FT_UInt code, in cff_parser_init() argument 49 FT_Memory memory = library->memory; /* for FT_NEW_ARRAY */ in cff_parser_init() 56 parser->top = parser->stack; in cff_parser_init() 58 parser->object_code = code; in cff_parser_init() 59 parser->object = object; in cff_parser_init() 60 parser->library = library; in cff_parser_init() 61 parser->num_designs = num_designs; in cff_parser_init() 62 parser->num_axes = num_axes; in cff_parser_init() 65 if ( FT_QNEW_ARRAY( parser->stack, stackSize ) ) in cff_parser_init() [all …]
|