Home
last modified time | relevance | path

Searched refs:code (Results 276 - 300 of 3559) sorted by relevance

1...<<11121314151617181920>>...143

/third_party/node/test/parallel/
H A Dtest-child-process-fork-args.js26 code: 'ERR_INVALID_ARG_TYPE',
35 common.mustCall((code) => {
36 assert.strictEqual(code, 0);
57 code: 'ERR_INVALID_ARG_TYPE',
79 common.mustCall((code) => {
80 assert.strictEqual(code, 0);
100 code: 'ERR_INVALID_ARG_TYPE',
H A Dtest-stream-writable-write-error.js7 function expectError(w, args, code, sync) {
9 if (code) {
10 assert.throws(() => w.write(...args), { code });
20 assert.strictEqual(err.code, code);
25 assert.strictEqual(err.code, code);
H A Dtest-buffer-compare-offset.js13 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 Dtest-dgram-socket-buffer-size.js16 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 Dtest-validators.js19 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'
H A Dtest-whatwg-transformstream.js27 code: 'ERR_INVALID_ARG_VALUE',
30 code: 'ERR_INVALID_ARG_VALUE',
134 code: 'ERR_INVALID_THIS',
137 code: 'ERR_INVALID_THIS',
140 code: 'ERR_INVALID_THIS',
146 code: 'ERR_INVALID_THIS',
151 code: 'ERR_INVALID_THIS',
156 code: 'ERR_INVALID_THIS',
161 code: 'ERR_INVALID_THIS',
165 code
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Ddisasm.c181 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 Dpcre2_substitute.c9 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...]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha512-x86_64.pl18 # 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 Dsha512-x86_64.pl18 # 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/ffmpeg/libavformat/
H A Dhevcdec.c29 uint32_t code = -1; in hevc_probe() local
34 code = (code << 8) + p->buf[i]; in hevc_probe()
35 if ((code & 0xffffff00) == 0x100) { in hevc_probe()
37 int type = (code & 0x7E) >> 1; in hevc_probe()
39 if (code & 0x81) // forbidden and reserved zero bits in hevc_probe()
H A Davs3dec.c32 uint32_t code = -1; in avs3video_probe() local
38 ptr = avpriv_find_start_code(ptr, end, &code); in avs3video_probe()
39 state = code & 0xFF; in avs3video_probe()
40 if ((code & 0xFFFFFF00) == 0x100) { in avs3video_probe()
42 if (code < slice_pos) in avs3video_probe()
44 slice_pos = code; in avs3video_probe()
/third_party/node/test/fixtures/wpt/common/
H A Dworklet-reftest.js2 * 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 Derror.js21 constructor({ code, message, cause, }) {
25 this.code = code;
29 function internalError(err, code, message) {
34 code: code,
/third_party/ffmpeg/libavcodec/
H A Dmjpegenc.c65 int len, code, nbits; in init_uni_ac_vlc() local
71 code = ((15&run) << 4) | nbits; in init_uni_ac_vlc()
73 len += huff_size_ac[code] + nbits; in init_uni_ac_vlc()
110 int nbits, code, table_id; in mjpeg_encode_picture_frame() local
127 code = m->huff_buffer[i].code; in mjpeg_encode_picture_frame()
128 nbits = code & 0xf; in mjpeg_encode_picture_frame()
130 total_bits += huff_size[table_id][code] + nbits; in mjpeg_encode_picture_frame()
138 code = m->huff_buffer[i].code; in mjpeg_encode_picture_frame()
174 int code = m->huff_buffer[i].code; mjpeg_build_optimal_huffman() local
379 ff_mjpeg_encode_code(MJpegContext *s, uint8_t table_id, int code) ff_mjpeg_encode_code() argument
396 int mant, code; ff_mjpeg_encode_coef() local
467 int mant, nbits, code, i, j; encode_block() local
[all...]
H A Dlzw.c52 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/v8/src/codegen/x64/
H A Dassembler-x64-inl.h2 // Use of this source code is governed by a BSD-style license that can be
66 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); in emit_rex_64()
70 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); in emit_rex_64()
74 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); in emit_rex_64()
82 emit(0x48 | (reg.code() & 0x8) >> 1 | op.data().rex); in emit_rex_64()
86 DCHECK_EQ(rm_reg.code() & 0xf, rm_reg.code()); in emit_rex_64()
255 deserialization_set_special_target_at( Address instruction_payload, Code code, Address target) deserialization_set_special_target_at() argument
[all...]
/third_party/ffmpeg/libavutil/
H A Davstring.c384 uint64_t code; in av_utf8_decode() local
393 code = *p++; in av_utf8_decode()
397 if ((code & 0xc0) == 0x80 || code >= 0xFE) { in av_utf8_decode()
401 top = (code & 128) >> 1; in av_utf8_decode()
404 while (code & top) { in av_utf8_decode()
418 code = (code<<6) + tmp; in av_utf8_decode()
421 code &= (top << 1) - 1; in av_utf8_decode()
425 if (code < overlong_encoding_min in av_utf8_decode()
[all...]
/third_party/node/deps/openssl/openssl/crypto/rc4/asm/
H A Drc4-s390x.pl29 # 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 Drc4-s390x.pl29 # 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/node/lib/
H A Dvm.js67 constructor(code, options = kEmptyObject) {
68 code = `${code}`;
99 super(code,
248 function createScript(code, options) {
249 return new Script(code, options);
270 function runInContext(code, contextifiedObject, options) {
280 return createScript(code, options)
284 function runInNewContext(code, contextObject, options) {
290 return createScript(code, option
[all...]
/third_party/lzma/C/
H A DBcj2.c1 /* Bcj2.c -- BCJ2 Decoder (Converter for x86 code)
23 p->code = 0; in Bcj2Dec_Init()
34 UInt32 code = p->code; in Bcj2Dec_Decode() local
38 if (p->range == 1 && code != 0) in Bcj2Dec_Decode()
45 code = (code << 8) | *(p->bufs[BCJ2_STREAM_RC])++; in Bcj2Dec_Decode()
46 p->code = code; in Bcj2Dec_Decode()
48 if (code in Bcj2Dec_Decode()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dcode.h2 // Use of this source code is governed by a BSD-style license that can be
12 #include "src/objects/code-kind.h"
39 #include "torque-generated/src/objects/code-tq.inc"
70 DECL_GETTER(code, Code)
71 DECL_RELAXED_GETTER(code, Code)
76 // This field contains code cage base value which is used for decompressing
77 // the reference to respective Code. Basically, |code_cage_base| and |code|
79 // the code field must also support atomic access and the word alignment of
86 // Cached value of code().InstructionStart().
91 Isolate* isolate_for_sandbox, Code code,
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dprofiler-listener.h2 // Use of this source code is governed by a BSD-style license that can be
11 #include "src/logging/code-events.h"
13 #include "src/profiler/weak-code-registry.h"
38 void CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code,
40 void CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code,
42 void CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code,
45 void CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code,
49 void CodeCreateEvent(LogEventsAndTags tag, const wasm::WasmCode* code,
57 void RegExpCodeCreateEvent(Handle<AbstractCode> code,
63 void CodeDisableOptEvent(Handle<AbstractCode> code,
[all...]
/third_party/vixl/src/aarch64/
H A Dsimulator-aarch64.h7 // * Redistributions of source code must retain the above copyright notice,
539 // updated lanes for load-and-insert. (That never happens for scalar code, but
1275 // This allows code like:
1282 R RunFrom(const Instruction* code, P... arguments) { in RunFrom() argument
1283 return RunFromStructHelper<R, P...>::Wrapper(this, code, arguments...); in RunFrom()
1289 const Instruction* code, in Wrapper()
1301 simulator->RunFrom(code); in Wrapper()
1310 const Instruction* code, in Wrapper()
1322 simulator->RunFrom(code); in Wrapper()
1507 T ReadRegister(unsigned code, Reg31Mod argument
[all...]

Completed in 12 milliseconds

1...<<11121314151617181920>>...143