Home
last modified time | relevance | path

Searched +full:- +full:- +full:exit +full:- +full:code (Results 1 – 25 of 1188) sorted by relevance

12345678910>>...48

/third_party/python/Objects/clinic/
Dcodeobject.c.h3 [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 …]
Dfuncobject.c.h3 [clinic start generated code]*/
6 "function(code, globals, name=None, argdefs=None, closure=None)\n"
7 "--\n"
11 " code\n"
12 " a code object\n"
16 " a string that overrides the name from the code object\n"
23 func_new_impl(PyTypeObject *type, PyCodeObject *code, PyObject *globals,
30 static const char * const _keywords[] = {"code", "globals", "name", "argdefs", "closure", NULL}; in func_new()
35 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 2; in func_new()
36 PyCodeObject *code; in func_new() local
[all …]
/third_party/python/Lib/test/
Dclinic.test3 [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/Modules/clinic/
Dfcntlmodule.c.h3 [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 …]
Dpyexpat.c.h3 [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 …]
Doverlapped.c.h3 [clinic start generated code]*/
7 "--\n"
31 goto exit; in _overlapped_CreateIoCompletionPort()
35 exit: in _overlapped_CreateIoCompletionPort()
41 "--\n"
64 goto exit; in _overlapped_GetQueuedCompletionStatus()
68 exit: in _overlapped_GetQueuedCompletionStatus()
74 "--\n"
99 goto exit; in _overlapped_PostQueuedCompletionStatus()
103 exit: in _overlapped_PostQueuedCompletionStatus()
[all …]
/third_party/python/Python/clinic/
Dimport.c.h3 [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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnrollRuntime.cpp1 //===-- 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/skia/tools/
Dbuild_command_buffer.py5 # 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/jerryscript/jerry-port/default/
Ddefault-fatal.c7 * 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/python/Doc/library/
D__main__.rst1 :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/infra/bots/recipe_modules/flavor/resources/
Dwin_run_and_check_log.ps12 # 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/icu/icu4c/source/tools/gensprep/
Dstore.c6 * 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/third_party/externals/icu/source/tools/gensprep/
Dstore.c6 * 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/extra/uconv/
Duconv.1.in1 .\" 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/third_party/externals/icu/source/extra/uconv/
Duconv.1.in1 .\" 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/third_party/externals/freetype/src/cff/
Dcffparse.c7 * 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 …]
/third_party/python/Modules/_sqlite/
Dutil.c1 /* 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/
Dwrap.pl.in1 #! {- $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/icu/icu4c/source/i18n/unicode/
Dplurfmt.h5 * Copyright (C) 2007-2014, International Business Machines Corporation and
39 * <code>PluralFormat</code> supports the creation of internationalized
43 * <code>PluralFormat</code> selects the appropriate message based on
51 * forms of <i>all</i> languages correctly. <code>ChoiceFormat</code>
58 * 14). Thus <code>ChoiceFormat</code> is not adequate.
60 * <code>PluralFormat</code> deals with this by breaking the problem
63 * <li>It uses <code>PluralRules</code> that can define more complex
73 …* https://unicode-org.github.io/cldr-staging/charts/latest/supplemental/language_plural_rules.…
76 * <h4>Usage of <code>PluralFormat</code></h4>
77 * <p>Note: Typically, plural formatting is done via <code>MessageFormat</code>
[all …]
/third_party/libwebsockets/lib/misc/
Ddaemonize.c2 * 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/icu/source/i18n/unicode/
Dplurfmt.h5 * Copyright (C) 2007-2014, International Business Machines Corporation and
39 * <code>PluralFormat</code> supports the creation of internationalized
43 * <code>PluralFormat</code> selects the appropriate message based on
51 * forms of <i>all</i> languages correctly. <code>ChoiceFormat</code>
58 * 14). Thus <code>ChoiceFormat</code> is not adequate.
60 * <code>PluralFormat</code> deals with this by breaking the problem
63 * <li>It uses <code>PluralRules</code> that can define more complex
73 * http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html
76 * <h4>Usage of <code>PluralFormat</code></h4>
77 * <p>Note: Typically, plural formatting is done via <code>MessageFormat</code>
[all …]
/third_party/mbedtls/programs/ssl/
Dssl_mail_client.c5 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
8 /* Enable definition of gethostname() even when compiling with -std=c99. Must
96 " ca_file=%%s default: \"\" (pre-loaded)\n" \
97 " crt_file=%%s default: \"\" (pre-loaded)\n" \
98 " key_file=%%s default: \"\" (pre-loaded)\n"
131 const char *mail_from; /* E-Mail address to use as sender */
132 const char *mail_to; /* E-Mail address to use as recipient */
168 return -1; in do_handshake()
199 mbedtls_x509_crt_info((char *) buf, sizeof(buf) - 1, " ", in do_handshake()
215 return -1; in write_ssl_data()
[all …]
/third_party/libsnd/src/
Dtest_ima_oki_adpcm.c2 ** Copyright (C) 2007-2011 Erik de Castro Lopo <erikd@mega-nerd.com>
17 ** Fifth Floor, 51 Franklin Street, Boston, MA 02111-1301, USA.
38 { 32, 0, 32, 0, 32, 320, 880, -336, 2304, 4192, -992, 10128, 5360, -16352,
39 30208, 2272, -31872, 14688, -7040, -32432, 14128, -1392, -15488, 22960,
40 1232, -1584, 21488, -240, 2576, -15360, 960, -1152, -30032, 10320, 1008,
41 -30032, 16528, 1008, -30032, 16528, -5200, -30592, 15968, 448, -30592,
42 15968, 448, -2368, 30960, 3024, -80, 8384, 704, -1616, -29168, -1232, 1872,
43 -32768, 13792, -1728, -32768, 13792, 4480, -32192, 14368, -7360, -32752,
44 13808, -1712, -21456, 16992, 1472, -1344, 26848, -1088, 2016, -17728, 208,
45 -2112, -32768, 1376, -1728, -32768, 13792, -1728, -32768, 13792, -1728,
[all …]
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
Dx448.htm1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd…
83 <CODE
85 >std</CODE
87 HREF="r8936.htm#V4L2-INPUT"
91 HREF="r9149.htm#V4L2-OUTPUT"
95 ><CODE
97 >VIDIOC_ENUMINPUT</CODE
102 ><CODE
104 >VIDIOC_ENUMOUTPUT</CODE
116 ><CODE
[all …]

12345678910>>...48