/third_party/node/test/fixtures/wpt/common/ |
H A D | worklet-reftest.js | 2 * Imports code into a worklet. E.g. 8 * @param {(Object|string)} code 10 function importWorklet(worklet, code) { 12 if (typeof code === 'object') { 13 url = code.url; 15 const blob = new Blob([code], {type: 'text/javascript'}); 39 * @param {(Object|string)} code 41 async function importWorkletAndTerminateTestAfterAsyncPaint(worklet, code) { 47 await importWorklet(worklet, code);
|
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/ |
H A D | error.js | 21 constructor({ code, message, cause, }) { 25 this.code = code; 29 function internalError(err, code, message) { 34 code: code,
|
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | irq.c | 216 u16 code; member 222 static inline int ext_hash(u16 code) in ext_hash() argument 226 return (code + (code >> 9)) & (ARRAY_SIZE(ext_int_hash) - 1); in ext_hash() 229 int register_external_irq(u16 code, ext_int_handler_t handler) in register_external_irq() argument 238 p->code = code; in register_external_irq() 240 index = ext_hash(code); in register_external_irq() 249 int unregister_external_irq(u16 code, ext_int_handler_t handler) in unregister_external_irq() argument 253 int index = ext_hash(code); in unregister_external_irq() [all...] |
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha1-s390x.pl | 21 # Performance is >30% better than gcc 3.3 generated code. But the real 37 # processor, as long as it's "z-CPU". Latter implies that the code 39 # 23% better than code generated by gcc 4.3. 41 $kimdfunc=1; # magic function code for kimd instruction 80 $code.=<<___ if ($i==15); 85 $code.=<<___ if ($i<16); 89 $code.=<<___ if ($i>=16); 100 $code.=<<___ if ($i<=70); 111 $code.=<<___; 130 $code [all...] |
H A D | sha512-x86_64.pl | 18 # 40% improvement over compiler-generated code on Opteron. On EM64T 21 # [being armed with inline assembler] fails to generate as fast code. 59 # Add SIMD code paths, see below for improvement coefficients. SSSE3 60 # code path was not attempted for SHA512, because improvement is not 72 # Add AVX2 code path. Two consecutive input blocks are loaded to 78 # code size increase. 110 # space SHA256 XOP code path is therefore omitted; 192 $code.=<<___; 230 $code.=<<___ if ($i<15); 239 $code [all...] |
/third_party/openssl/crypto/sha/asm/ |
H A D | sha1-s390x.pl | 21 # Performance is >30% better than gcc 3.3 generated code. But the real 37 # processor, as long as it's "z-CPU". Latter implies that the code 39 # 23% better than code generated by gcc 4.3. 41 $kimdfunc=1; # magic function code for kimd instruction 80 $code.=<<___ if ($i==15); 85 $code.=<<___ if ($i<16); 89 $code.=<<___ if ($i>=16); 100 $code.=<<___ if ($i<=70); 111 $code.=<<___; 130 $code [all...] |
H A D | sha512-x86_64.pl | 18 # 40% improvement over compiler-generated code on Opteron. On EM64T 21 # [being armed with inline assembler] fails to generate as fast code. 59 # Add SIMD code paths, see below for improvement coefficients. SSSE3 60 # code path was not attempted for SHA512, because improvement is not 72 # Add AVX2 code path. Two consecutive input blocks are loaded to 78 # code size increase. 110 # space SHA256 XOP code path is therefore omitted; 192 $code.=<<___; 230 $code.=<<___ if ($i<15); 239 $code [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/nxp/ |
H A D | imx-mipi-csis.c | 344 u32 code; member 353 .code = MEDIA_BUS_FMT_UYVY8_1X16, 360 .code = MEDIA_BUS_FMT_RGB565_1X16, 365 .code = MEDIA_BUS_FMT_BGR888_1X24, 372 .code = MEDIA_BUS_FMT_SBGGR8_1X8, 377 .code = MEDIA_BUS_FMT_SGBRG8_1X8, 382 .code = MEDIA_BUS_FMT_SGRBG8_1X8, 387 .code = MEDIA_BUS_FMT_SRGGB8_1X8, 392 .code = MEDIA_BUS_FMT_Y8_1X8, 397 .code 497 find_csis_format(u32 code) find_csis_format() argument 991 mipi_csis_enum_mbus_code(struct v4l2_subdev *sd, struct v4l2_subdev_state *sd_state, struct v4l2_subdev_mbus_code_enum *code) mipi_csis_enum_mbus_code() argument [all...] |
/third_party/node/deps/v8/src/diagnostics/ |
H A D | disassembler.cc | 2 // Use of this source code is governed by a BSD-style license that can be 18 #include "src/codegen/code-comments.h" 19 #include "src/codegen/code-reference.h" 32 #include "src/wasm/wasm-code-manager.h" 43 explicit V8NameConverter(Isolate* isolate, CodeReference code = {}) in V8NameConverter() 44 : isolate_(isolate), code_(code) {} 49 const CodeReference& code() const { return code_; } in code() function in v8::internal::V8NameConverter 98 // print as code offset, if it seems reasonable in NameOfAddress() 119 // The V8NameConverter is used for well known code, so we can "safely" in NameInCode() 120 // dereference pointers in generated code in NameInCode() 260 Code code = isolate->heap()->GcSafeFindCodeForInnerPointer( PrintRelocInfo() local 291 DecodeIt(Isolate* isolate, ExternalReferenceEncoder* ref_encoder, std::ostream& os, CodeReference code, const V8NameConverter& converter, byte* begin, byte* end, Address current_pc) DecodeIt() argument 462 Decode(Isolate* isolate, std::ostream& os, byte* begin, byte* end, CodeReference code, Address current_pc) Decode() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | disasm.c | 181 print_const0(void *code, unsigned offset, FILE *fp) in print_const0() argument 185 print_const(0, code, fp); in print_const0() 189 print_const1(void *code, unsigned offset, FILE *fp) in print_const1() argument 193 print_const(1, code, fp); in print_const1() 197 print_varying(void *code, unsigned offset, FILE *fp) in print_varying() argument 200 ppir_codegen_field_varying *varying = code; in print_varying() 278 print_sampler(void *code, unsigned offset, FILE *fp) in print_sampler() argument 281 ppir_codegen_field_sampler *sampler = code; in print_sampler() 314 print_uniform(void *code, unsigned offset, FILE *fp) in print_uniform() argument 317 ppir_codegen_field_uniform *uniform = code; in print_uniform() 379 print_vec4_mul(void *code, unsigned offset, FILE *fp) print_vec4_mul() argument 446 print_vec4_acc(void *code, unsigned offset, FILE *fp) print_vec4_acc() argument 507 print_float_mul(void *code, unsigned offset, FILE *fp) print_float_mul() argument 567 print_float_acc(void *code, unsigned offset, FILE *fp) print_float_acc() argument 618 print_combine(void *code, unsigned offset, FILE *fp) print_combine() argument 669 print_temp_write(void *code, unsigned offset, FILE *fp) print_temp_write() argument 715 print_branch(void *code, unsigned offset, FILE *fp) print_branch() argument 790 char code[12]; ppir_disassemble_instr() local [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_substitute.c | 9 Original API code Copyright (c) 1997-2012 University of Cambridge 10 New API code Copyright (c) 2016-2022 University of Cambridge 16 * Redistributions of source code must retain the above copyright notice, 69 code points to the compiled expression (for options) 75 negative error code on failure 79 find_text_end(const pcre2_code *code, PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, in find_text_end() argument 133 code->overall_options, code->extra_options, FALSE, NULL); in find_text_end() 134 ptr -= 1; /* Back to last code unit of escape */ in find_text_end() 176 code point 220 pcre2_substitute(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length, PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data, pcre2_match_context *mcontext, PCRE2_SPTR replacement, PCRE2_SIZE rlength, PCRE2_UCHAR *buffer, PCRE2_SIZE *blength) pcre2_substitute() argument [all...] |
/kernel/linux/linux-6.6/drivers/soc/tegra/cbb/ |
H A D | tegra234-cbb.c | 325 cbb->fabric->errors[type].code); in tegra234_cbb_print_error() 342 cbb->fabric->errors[type].code); in tegra234_cbb_print_error() 394 cbb->fabric->errors[cbb->type].code); in print_errlog_err() 440 if (!strcmp(cbb->fabric->errors[cbb->type].code, "TIMEOUT_ERR")) { in print_errlog_err() 675 .code = "SLAVE_ERR", 678 .code = "DECODE_ERR", 681 .code = "FIREWALL_ERR", 684 .code = "TIMEOUT_ERR", 687 .code = "PWRDOWN_ERR", 690 .code [all...] |
/kernel/linux/linux-5.10/arch/x86/kernel/ |
H A D | static_call.c | 27 const void *code; in __static_call_transform() local 31 code = text_gen_insn(CALL_INSN_OPCODE, insn, func); in __static_call_transform() 35 code = ideal_nops[NOP_ATOMIC5]; in __static_call_transform() 39 code = text_gen_insn(JMP32_INSN_OPCODE, insn, func); in __static_call_transform() 44 code = text_gen_insn(JMP32_INSN_OPCODE, insn, &__x86_return_thunk); in __static_call_transform() 46 code = &retinsn; in __static_call_transform() 50 if (memcmp(insn, code, size) == 0) in __static_call_transform() 54 return text_poke_early(insn, code, size); in __static_call_transform() 56 text_poke_bp(insn, code, size, NULL); in __static_call_transform()
|
/kernel/linux/linux-6.6/include/uapi/linux/surface_aggregator/ |
H A D | dtx.h | 27 #define SDTX_STATUS(code) ((code) | SDTX_CATEGORY_STATUS) 28 #define SDTX_ERR_RT(code) ((code) | SDTX_CATEGORY_RUNTIME_ERROR) 29 #define SDTX_ERR_HW(code) ((code) | SDTX_CATEGORY_HARDWARE_ERROR) 30 #define SDTX_UNKNOWN(code) ((code) | SDTX_CATEGORY_UNKNOWN) 83 * @code: Event code, detailin 90 __u16 code; global() member [all...] |
/third_party/node/test/parallel/ |
H A D | test-buffer-compare-offset.js | 13 assert.throws(() => a.compare(b, '0'), { code: 'ERR_INVALID_ARG_TYPE' }); 23 { code: 'ERR_INVALID_ARG_TYPE' } 54 { code: 'ERR_INVALID_ARG_TYPE' } 60 { code: 'ERR_INVALID_ARG_TYPE' } 66 { code: 'ERR_OUT_OF_RANGE' } 74 { code: 'ERR_INVALID_ARG_TYPE' } 78 { code: 'ERR_INVALID_ARG_TYPE' } 81 const oor = { code: 'ERR_OUT_OF_RANGE' }; 90 code: 'ERR_INVALID_ARG_TYPE',
|
H A D | test-dgram-socket-buffer-size.js | 16 const code = common.isWindows ? 'ENOTSOCK' : 'EBADF'; 24 code: 'ERR_SOCKET_BUFFER_SIZE', 28 code, 49 " code: 'ERR_SOCKET_BUFFER_SIZE',\n" + 52 ` code: '${errorObj.info.code}',\n` + 86 code: 'ERR_SOCKET_BAD_BUFFER_SIZE', 127 code: 'EINVAL', 133 code: 'ERR_SOCKET_BUFFER_SIZE', 150 code 85 code: 'ERR_SOCKET_BAD_BUFFER_SIZE', global() property 126 code: 'EINVAL', global() property 149 code: 'EINVAL', global() property [all...] |
H A D | test-validators.js | 19 code: 'ERR_OUT_OF_RANGE', 23 code: 'ERR_INVALID_ARG_TYPE', 27 code: 'ERR_INVALID_ARG_VALUE', 52 code: 'ERR_INVALID_ARG_TYPE' 57 code: 'ERR_OUT_OF_RANGE' 65 code: 'ERR_INVALID_ARG_TYPE' 70 code: 'ERR_OUT_OF_RANGE' 145 code: 'ERR_INVALID_ARG_TYPE' 155 code: 'ERR_INVALID_ARG_TYPE'
|
/kernel/linux/linux-5.10/drivers/s390/cio/ |
H A D | chsc.c | 42 * @response: chsc response code 44 * Returns an appropriate Linux error code for @response. 113 ssd_area->request.code = 0x0004; in chsc_get_ssd_info() 124 ret = chsc_error_from_response(ssd_area->response.code); in chsc_get_ssd_info() 128 ssd_area->response.code); in chsc_get_ssd_info() 168 ssqd->request.code = 0x0024; in chsc_ssqd() 176 return chsc_error_from_response(ssqd->response.code); in chsc_ssqd() 195 scssc->request.code = 0x0021; in chsc_sadc() 213 return chsc_error_from_response(scssc->response.code); in chsc_sadc() 294 u8 cc; /* content code */ [all...] |
/kernel/linux/linux-5.10/arch/riscv/mm/ |
H A D | fault.c | 65 static inline void bad_area(struct pt_regs *regs, struct mm_struct *mm, int code, unsigned long addr) in bad_area() argument 74 do_trap(regs, SIGSEGV, code, addr); in bad_area() 81 static inline void vmalloc_fault(struct pt_regs *regs, int code, unsigned long addr) in vmalloc_fault() argument 93 return do_trap(regs, SIGSEGV, code, addr); in vmalloc_fault() 197 int code = SEGV_MAPERR; in do_page_fault() local 216 vmalloc_fault(regs, code, addr); in do_page_fault() 229 vmalloc_fault(regs, code, addr); in do_page_fault() 259 bad_area(regs, mm, code, addr); in do_page_fault() 265 bad_area(regs, mm, code, addr); in do_page_fault() 269 bad_area(regs, mm, code, add in do_page_fault() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/pidfd/ |
H A D | pidfd_fdinfo_test.c | 21 int code; member 25 static int error_set(struct error *err, int code, const char *fmt, ...) in error_set() argument 30 if (code == PIDFD_PASS || !err || err->code != PIDFD_PASS) in error_set() 31 return code; in error_set() 33 err->code = code; in error_set() 39 return code; in error_set() 44 switch (err->code) { in error_report() 69 ksft_exit_fail_msg("%s test: Unknown code in error_report() [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/xilinx/ |
H A D | xilinx-vip.c | 46 * xvip_get_format_by_code - Retrieve format information for a media bus code 47 * @code: the format media bus code 50 * given V4L2 media bus format @code, or ERR_PTR if no corresponding format can 53 const struct xvip_video_format *xvip_get_format_by_code(unsigned int code) in xvip_get_format_by_code() argument 60 if (format->code == code) in xvip_get_format_by_code() 235 * xvip_enum_mbus_code - Enumerate the media format code 238 * @code: returning media bus code 248 xvip_enum_mbus_code(struct v4l2_subdev *subdev, struct v4l2_subdev_pad_config *cfg, struct v4l2_subdev_mbus_code_enum *code) xvip_enum_mbus_code() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/xilinx/ |
H A D | xilinx-vip.c | 48 * xvip_get_format_by_code - Retrieve format information for a media bus code 49 * @code: the format media bus code 52 * given V4L2 media bus format @code, or ERR_PTR if no corresponding format can 55 const struct xvip_video_format *xvip_get_format_by_code(unsigned int code) in xvip_get_format_by_code() argument 62 if (format->code == code) in xvip_get_format_by_code() 235 * xvip_enum_mbus_code - Enumerate the media format code 238 * @code: returning media bus code 248 xvip_enum_mbus_code(struct v4l2_subdev *subdev, struct v4l2_subdev_state *sd_state, struct v4l2_subdev_mbus_code_enum *code) xvip_enum_mbus_code() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | lzw.c | 52 int cursize; ///< The current code size 57 int newcodes; ///< First available code 58 int top_slot; ///< Highest code for current size 60 int slot; ///< Last read code 69 /* get one code from stream */ 126 * @param csize initial code size in bits 170 int l, c, code, oc, fc; in ff_lzw_decode() local 198 code = c; in ff_lzw_decode() 199 if (code == s->slot && fc>=0) { in ff_lzw_decode() 201 code in ff_lzw_decode() [all...] |
/third_party/node/deps/openssl/openssl/crypto/rc4/asm/ |
H A D | rc4-s390x.pl | 29 # processor, as long as it's "z-CPU". Latter implies that the code 31 # 50% better than code generated by gcc 4.3. 50 $code=<<___; 69 $code.=<<___; 76 $code.=<<___ if ($flavour =~ /3[12]/); 79 $code.=<<___; 94 $code.=<<___; 100 $code.=<<___ if ($i==1); 103 $code.=<<___ if ($i>1); 107 $code [all...] |
/third_party/openssl/crypto/rc4/asm/ |
H A D | rc4-s390x.pl | 29 # processor, as long as it's "z-CPU". Latter implies that the code 31 # 50% better than code generated by gcc 4.3. 50 $code=<<___; 69 $code.=<<___; 76 $code.=<<___ if ($flavour =~ /3[12]/); 79 $code.=<<___; 94 $code.=<<___; 100 $code.=<<___ if ($i==1); 103 $code.=<<___ if ($i>1); 107 $code [all...] |