/third_party/skia/tools/ |
H A D | parse_llvm_coverage.py | 3 # Use of this source code is governed by a BSD-style license that can be 60 Values are lists which take the form (lineno, coverage, code). 89 cov, linenum, code = line.split('|', 2) 97 file_lines.append((linenum, cov, code.decode('utf-8', 'replace')))
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_host.cpp | 211 bool dng_host::IsTransientError (dng_error_code code) in IsTransientError() argument 214 switch (code) in IsTransientError()
|
/third_party/python/PCbuild/ |
H A D | prepare_ssl.py | 99 code = list(f1) 103 for line in code:
|
/third_party/python/Lib/test/ |
H A D | test_dtrace.py | 135 code = compile(source=code_string, 140 for c in code.co_consts:
|
H A D | test_dynamic.py | 143 code = "lambda: " + "+".join(f"_number_{i}" for i in range(1000)) 144 sum_1000 = eval(code, MyGlobals())
|
H A D | test_embed.py | 340 code = fp.read() 341 out, err = self.run_embedded_interpreter("test_repeated_init_exec", code) 353 # Do these imports outside of the code string to avoid using 354 # importlib too much from within the code string, so that 361 code = textwrap.dedent(f"""\ 364 code = func.__code__ 368 if set(code._co_code_adaptive[:2]) != set([{resume}, 0]): 375 if set(code._co_code_adaptive[:2]) != set([{resume_quick}, 0]): 381 out, err = run("test_repeated_init_exec", code) 386 code [all...] |
/third_party/rust/crates/rustix/src/backend/libc/process/ |
H A D | syscalls.rs | 398 pub(crate) fn exit_group(code: c::c_int) -> ! { 403 c::_Exit(code) 407 c::_exit(code)
|
/third_party/node/deps/openssl/openssl/crypto/chacha/asm/ |
H A D | chacha-armv4.pl | 58 $code .= "\t$opcode\t".join(',',@_,$arg)."\n"; 173 $code.=<<___; 182 .code 32 272 $code.=<<___; 494 $code.=<<___ if ($i==4); 497 $code.=<<___ if ($i==8); 505 $code.=<<___; 508 $code.=<<___ if ($i==12); 515 $code.=<<___; 598 $code [all...] |
/third_party/openssl/crypto/chacha/asm/ |
H A D | chacha-armv4.pl | 58 $code .= "\t$opcode\t".join(',',@_,$arg)."\n"; 173 $code.=<<___; 182 .code 32 272 $code.=<<___; 494 $code.=<<___ if ($i==4); 497 $code.=<<___ if ($i==8); 505 $code.=<<___; 508 $code.=<<___ if ($i==12); 515 $code.=<<___; 598 $code [all...] |
/third_party/python/Python/ |
H A D | import.c | 41 [clinic start generated code]*/ 42 /*[clinic end generated code: output=da39a3ee5e6b4b0d input=9c332475d8686284]*/ 188 [clinic start generated code]*/ 192 /*[clinic end generated code: output=8b89384b5e1963fc input=9b088f9b217d9bdf]*/ in _imp_lock_held_impl() 204 [clinic start generated code]*/ 208 /*[clinic end generated code: output=1aff58cb0ee1b026 input=4a2d4381866d5fdc]*/ in _imp_acquire_lock_impl() 220 [clinic start generated code]*/ 224 /*[clinic end generated code: output=7faab6d0be178b0a input=934fb11516dd778b]*/ in _imp_release_lock_impl() 655 /* Execute a code object in a module and return the module object 741 and re-use its dict to exec the new code in module_dict_for_exec() 864 _imp__fix_co_filename_impl(PyObject *module, PyCodeObject *code, PyObject *path) _imp__fix_co_filename_impl() argument 1323 PyObject *code = info->get_code(); unmarshal_frozen_code() local 1507 PyCodeObject *code = PyFrame_GetCode(frame); remove_importlib_frames() local [all...] |
/third_party/python/Objects/ |
H A D | genobject.c | 130 right here, because this code has to be between UNTRACK in gen_dealloc() 259 /* code in `gen` raised a StopAsyncIteration error: in gen_send_ex2() 357 always come after LOAD_CONST: a code object should not start in _PyGen_yf() 628 * (See PyErr_SetObject/_PyErr_CreateException code for details.) in _PyGen_SetStopIterationValue() 669 * (See _PyErr_CreateException code for details.) in _PyGen_FetchStopIterationValue() 814 PyCodeObject *code = gen->gi_code; in gen_sizeof() local 815 res += (code->co_nlocalsplus+code->co_stacksize) * sizeof(PyObject *); in gen_sizeof() 895 PyCodeObject *code = (PyCodeObject *)func->func_code; in make_gen() local 896 int slots = code in make_gen() 965 PyCodeObject *code = f->f_frame->f_code; gen_new_with_qualname() local 1025 PyCodeObject *code = (PyCodeObject *)((PyGenObject*)o)->gi_code; gen_is_coroutine() local 1344 PyCodeObject *code = frame->f_code; compute_cr_origin() local [all...] |
/kernel/linux/linux-5.10/drivers/staging/fwserial/ |
H A D | fwserial.c | 1552 static inline int mgmt_pkt_expected_len(__be16 code) in mgmt_pkt_expected_len() argument 1556 switch (be16_to_cpu(code)) { in mgmt_pkt_expected_len() 1591 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_PLUG); in fill_plug_req() 1592 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code)); in fill_plug_req() 1599 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_PLUG_RSP); in fill_plug_rsp_ok() 1600 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code)); in fill_plug_rsp_ok() 1606 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_PLUG_RSP | FWSC_RSP_NACK); in fill_plug_rsp_nack() 1607 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code)); in fill_plug_rsp_nack() 1612 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_UNPLUG_RSP | FWSC_RSP_NACK); in fill_unplug_rsp_nack() 1613 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code)); in fill_unplug_rsp_nack() [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2grep.c | 22 * Redistributions of source code must retain the above copyright notice, 196 /* This code is returned from decode_dollar_escape() when $n is encountered, 197 and used to mean "output STDOUT_NL". It is, of course, not a valid Unicode code 472 { OP_NODATA, 'q', NULL, "quiet", "suppress output, just set return code" }, 483 { OP_NODATA, 'U', NULL, "utf-allow-invalid", "use UTF mode, allow for invalid code units" }, 555 * Convert code point to UTF-8 * 632 Argument: the return code 641 (akin to an environment variable) called "PCRE2GREP_RC" and put the exit code in pcre2grep_exit() 794 int code = atoi(cs); in decode_ANSI_colour() local 795 if (code in decode_ANSI_colour() [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | vp8l_enc.c | 3 // Use of this source code is governed by a BSD-style license 49 // removed by most compilers and is here only for regularity of the code. 377 // 'unsigned int overflow' warning. Doesn't impact the compiled code. in HashPix() 808 const int ix = tokens[i].code; in StoreHuffmanTreeToBitMask() 846 ++histogram[tokens[i].code]; in StoreFullHuffmanCode() 861 const int ix = tokens[i].code; in StoreFullHuffmanCode() 913 // bits: small tree marker: 1, count-1: 0, large 8-bit code: 0, code: 0 in StoreHuffmanCode() 934 const HuffmanTreeCode* const code, in WriteHuffmanCode() 936 const int depth = code in WriteHuffmanCode() 933 WriteHuffmanCode(VP8LBitWriter* const bw, const HuffmanTreeCode* const code, int code_index) WriteHuffmanCode() argument 941 WriteHuffmanCodeWithExtraBits( VP8LBitWriter* const bw, const HuffmanTreeCode* const code, int code_index, int bits, int n_bits) WriteHuffmanCodeWithExtraBits() argument 980 const int code = PixOrCopyLiteral(v, order[k]); StoreImageToBitMask() local 984 const int code = PixOrCopyCacheIdx(v); StoreImageToBitMask() local 989 int code; StoreImageToBitMask() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | ieee802_1x.c | 340 (hdr->code == EAP_CODE_RESPONSE && in ieee802_1x_learn_identity() 342 (hdr->code == EAP_CODE_INITIATE && in ieee802_1x_learn_identity() 344 (hdr->code != EAP_CODE_RESPONSE && in ieee802_1x_learn_identity() 345 hdr->code != EAP_CODE_INITIATE)) in ieee802_1x_learn_identity() 738 radius_msg_get_hdr(sm->last_recv_radius)->code == in ieee802_1x_encapsulate_radius() 871 HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d " in handle_eap_response() 873 eap->code, eap->identifier, be_to_host16(eap->length), in handle_eap_response() 905 HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d " in handle_eap_initiate() 907 eap->code, eap->identifier, be_to_host16(eap->length), in handle_eap_initiate() 932 wpa_printf(MSG_DEBUG, "EAP: code in handle_eap() [all...] |
/kernel/linux/linux-5.10/arch/parisc/kernel/ |
H A D | head.S | 39 .import fault_vector_20,code /* IVA parisc 2.0 32 bit */ 41 .import fault_vector_11,code /* IVA parisc 1.1 32 bit */ 340 .import smp_callin,code 409 /* ok...common code can handle the rest */
|
/kernel/linux/linux-5.10/arch/arm/mach-orion5x/ |
H A D | dns323-setup.c | 315 .code = KEY_RESTART, 320 .code = KEY_POWER, 334 .code = KEY_POWER,
|
/kernel/linux/linux-5.10/drivers/char/tpm/st33zp24/ |
H A D | spi.c | 68 static int st33zp24_status_to_errno(u8 code) in st33zp24_status_to_errno() argument 70 switch (code) { in st33zp24_status_to_errno() 89 return code; in st33zp24_status_to_errno() 99 * @return: should be zero if success else a negative error code. 142 * @return: should be zero if success else a negative error code. 249 * commands. So leave with a success status code. in st33zp24_spi_acpi_request_resources() 283 * commands. So leave with a success status code. in st33zp24_spi_of_request_resources()
|
/kernel/linux/linux-6.6/arch/arm/mach-orion5x/ |
H A D | dns323-setup.c | 315 .code = KEY_RESTART, 320 .code = KEY_POWER, 334 .code = KEY_POWER,
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nft_connlimit.c | 42 regs->verdict.code = NF_DROP; in nft_connlimit_do_eval() 47 regs->verdict.code = NF_DROP; in nft_connlimit_do_eval() 54 regs->verdict.code = NFT_BREAK; in nft_connlimit_do_eval()
|
/kernel/linux/linux-5.10/sound/soc/sof/ |
H A D | core.c | 56 * helper to be called from .dbg_dump callbacks. No error code is 65 u32 code; in snd_sof_get_status() local 75 code = panic_code & (SOF_IPC_PANIC_MAGIC_MASK | SOF_IPC_PANIC_CODE_MASK); in snd_sof_get_status() 78 if (panic_msg[i].id == code) { in snd_sof_get_status()
|
/kernel/linux/linux-5.10/drivers/watchdog/ |
H A D | alim7101_wdt.c | 333 unsigned long code, void *unused) in wdt_notify_sys() 335 if (code == SYS_DOWN || code == SYS_HALT) in wdt_notify_sys() 332 wdt_notify_sys(struct notifier_block *this, unsigned long code, void *unused) wdt_notify_sys() argument
|
H A D | it8712f_wdt.c | 7 * Based on info and code taken from: 219 unsigned long code, void *unused) in it8712f_wdt_notify() 221 if (code == SYS_HALT || code == SYS_POWER_OFF) in it8712f_wdt_notify() 218 it8712f_wdt_notify(struct notifier_block *this, unsigned long code, void *unused) it8712f_wdt_notify() argument
|
H A D | intel_scu_watchdog.c | 398 unsigned long code, in intel_scu_notify_sys() 401 if (code == SYS_DOWN || code == SYS_HALT) in intel_scu_notify_sys() 397 intel_scu_notify_sys(struct notifier_block *this, unsigned long code, void *another_unused) intel_scu_notify_sys() argument
|
H A D | sc1200wdt.c | 26 * 20030116 Adam Belay Updated to the latest pnp code 292 unsigned long code, void *unused) in sc1200wdt_notify_sys() 294 if (code == SYS_DOWN || code == SYS_HALT) in sc1200wdt_notify_sys() 291 sc1200wdt_notify_sys(struct notifier_block *this, unsigned long code, void *unused) sc1200wdt_notify_sys() argument
|