/third_party/node/deps/v8/src/codegen/ |
H A D | source-position.cc | 2 // Use of this source code is governed by a BSD-style license that can be 63 Handle<Code> code) const { in InliningStack() 64 Isolate* isolate = code->GetIsolate(); in InliningStack() 66 DeoptimizationData::cast(code->deoptimization_data()); in InliningStack() 82 SourcePositionInfo SourcePosition::FirstInfo(Handle<Code> code) const { in FirstInfo() 84 Isolate* isolate = code->GetIsolate(); in FirstInfo() 86 DeoptimizationData::cast(code->deoptimization_data()); in FirstInfo() 130 void SourcePosition::Print(std::ostream& out, Code code) const { in Print() 132 DeoptimizationData::cast(code.deoptimization_data()); in Print() 147 inl.position.Print(out, code); in Print() [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | c64xplus-gf2m.pl | 22 # 4.5x faster than compiler-generated code. Though comparison is 38 $code.=<<___; 58 $code.=<<___; 94 $code.=<<___; 114 $code.=<<___; 130 $code.=<<___; 135 $code.=<<___; 140 $code.=<<___; 145 $code.=<<___; 158 print $code; [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | c64xplus-gf2m.pl | 22 # 4.5x faster than compiler-generated code. Though comparison is 38 $code.=<<___; 58 $code.=<<___; 94 $code.=<<___; 114 $code.=<<___; 130 $code.=<<___; 135 $code.=<<___; 140 $code.=<<___; 145 $code.=<<___; 158 print $code; [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | error.rs | 101 code: ErrType, 124 code => { in get() 152 code, in get() 214 ffi::ERR_GET_FUNC(self.code), in put_error() 222 /// Returns the raw OpenSSL error code for this error. 223 pub fn code(&self) -> ErrType { in code() functions 224 self.code in code() 230 let cstr = ffi::ERR_lib_error_string(self.code); in library() 245 unsafe { ffi::ERR_GET_LIB(self.code) } in library_code() 256 let cstr = ffi::ERR_reason_error_string(self.code); in function() [all...] |
/third_party/spirv-tools/tools/objdump/ |
H A D | extract_source.cpp | 105 spv::Id* filename, std::string* code) { in extractOpSource() 106 assert(filename != nullptr && code != nullptr); in extractOpSource() 116 *code = ""; in extractOpSource() 130 return ExtractStringLiteral(loc, stringBegin, stringEnd, code); in extractOpSource() 166 std::string code; in ExtractSourceFromModule() 167 result = extractOpSource(loc, instruction, &filenameId, &code); in ExtractSourceFromModule() 169 sources.emplace_back(std::make_pair(filenameId, std::move(code))); in ExtractSourceFromModule() 194 for (auto & [ id, code ] : sources) { in ExtractSourceFromModule() 209 output->insert({filename, code}); in ExtractSourceFromModule() 103 extractOpSource(const spv_position_t& loc, const spv_parsed_instruction_t& instruction, spv::Id* filename, std::string* code) extractOpSource() argument
|
/third_party/curl/tests/libtest/ |
H A D | lib1522.c | 26 /* test case and code based on https://github.com/curl/curl/issues/2847 */ 54 CURLcode code = TEST_ERR_MAJOR_BAD; in test() local 76 code = curl_easy_perform(curl); in test() 78 if(code == CURLE_OK) { in test() 93 printf("curl_easy_perform() failed. e = %d\n", code); in test() 100 return (int)code; in test()
|
/third_party/node/test/parallel/ |
H A D | test-http-response-statuscode.js | 10 function test(res, header, code) { 14 code: 'ERR_HTTP_INVALID_STATUS_CODE', 16 message: `Invalid status code: ${code}` 61 code: 'ERR_HTTP_INVALID_STATUS_CODE', 63 message: 'Invalid status code: undefined'
|
H A D | test-inspector-port-zero-cluster.js | 17 worker.on('exit', common.mustCall((code, signal) => { 18 // code 0 is normal 19 // code 12 can happen if inspector could not bind because of a port clash 20 if (code !== 0 && code !== 12) 21 assert.fail(`code: ${code}, signal: ${signal}`);
|
H A D | test-blob.js | 17 code: 'ERR_INVALID_ARG_TYPE' 21 code: 'ERR_INVALID_ARG_TYPE' 25 code: 'ERR_INVALID_ARG_TYPE' 247 code: 'ERR_INVALID_ARG_VALUE', 254 code: 'ERR_INVALID_THIS', 257 code: 'ERR_INVALID_THIS', 260 code: 'ERR_INVALID_THIS', 263 code: 'ERR_INVALID_THIS', 269 code: 'ERR_INVALID_THIS', 272 code [all...] |
/third_party/skia/src/sksl/dsl/priv/ |
H A D | DSLFPs.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 42 SkString code; in SampleChild() local 48 code = proc->invokeChild(index, emitArgs); in SampleChild() 51 code = proc->invokeChild(index, emitArgs, /*skslCoords=*/expr->description()); in SampleChild() 54 code = proc->invokeChild(index, /*inputColor=*/expr->description().c_str(), emitArgs); in SampleChild() 59 code.c_str(), ThreadContext::Context().fTypes.fHalf4.get())); in SampleChild()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | asyncmsgq.h | 39 * A numeric message code 58 void pa_asyncmsgq_post(pa_asyncmsgq *q, pa_msgobject *object, int code, const void *userdata, int64_t offset, const pa_memchunk *memchunk, pa_free_cb_t userdata_free_cb); 59 int pa_asyncmsgq_send(pa_asyncmsgq *q, pa_msgobject *object, int code, const void *userdata, int64_t offset, const pa_memchunk *memchunk); 61 int pa_asyncmsgq_get(pa_asyncmsgq *q, pa_msgobject **object, int *code, void **userdata, int64_t *offset, pa_memchunk *memchunk, bool wait); 62 int pa_asyncmsgq_dispatch(pa_msgobject *object, int code, void *userdata, int64_t offset, pa_memchunk *memchunk); 64 int pa_asyncmsgq_wait_for(pa_asyncmsgq *a, int code);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsNestedParams.js | 7 * @param {string?} error.code the error code to send the cancellation with 10 async cancel({reason, code}) {} 20 * @param {string?} error.suberr.code the error code to send the cancellation with 42 * @param {string?} error.code the error code to send the cancellation with
45 cancel({ reason, code }) {
56 * @param {string?} error.suberr.code the error code t [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | keyword.js | 15 function check_syntax_error(code) 18 eval(code) 25 function check_strict_syntax_error(code) 30 eval(code)
|
/third_party/ffmpeg/libavcodec/ |
H A D | msmpeg4dec.c | 79 int code, val, sign, shift; in msmpeg4v2_decode_motion() local 81 code = get_vlc2(&s->gb, ff_h263_mv_vlc.table, H263_MV_VLC_BITS, 2); in msmpeg4v2_decode_motion() 82 ff_dlog(s, "MV code %d at %d %d pred: %d\n", code, s->mb_x,s->mb_y, pred); in msmpeg4v2_decode_motion() 83 if (code < 0) in msmpeg4v2_decode_motion() 86 if (code == 0) in msmpeg4v2_decode_motion() 90 val = code; in msmpeg4v2_decode_motion() 110 int cbp, code, i; in msmpeg4v12_decode_mb() local 131 code = get_vlc2(&s->gb, v2_mb_type_vlc.table, V2_MB_TYPE_VLC_BITS, 1); in msmpeg4v12_decode_mb() 133 code in msmpeg4v12_decode_mb() 211 int cbp, code, i; msmpeg4v34_decode_mb() local 410 int code; ff_msmpeg4_decode_picture_header() local 838 int code, mx, my; ff_msmpeg4_decode_motion() local [all...] |
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | macro-assembler-arm.h | 2 // Use of this source code is governed by a BSD-style license that can be 75 // Generates function and stub prologue code. 99 if (src1.code() > src2.code()) { in Push() 109 if (src1.code() > src2.code()) { in Push() 110 if (src2.code() > src3.code()) { in Push() 125 if (src1.code() > src2.code()) { in Push() [all...] |
/third_party/alsa-utils/axfer/ |
H A D | container-voc.c | 84 uint16_t code; member 221 unsigned int samples_per_frame, uint16_t *code, in build_time_constant() 239 *code = ex_v110_time_consts[i].code; in build_time_constant() 241 *code = 65536 - 256000000 / frames_per_second; in build_time_constant() 254 *code = (uint8_t)v110_time_consts[i].code; in build_time_constant() 256 *code = 256 - 1000000 / frames_per_second; in build_time_constant() 262 static unsigned int parse_time_constant(uint16_t code, in parse_time_constant() argument 274 if (ex_v110_time_consts[i].code in parse_time_constant() 220 build_time_constant(unsigned int frames_per_second, unsigned int samples_per_frame, uint16_t *code, bool extended) build_time_constant() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ValidIdentifiers.java | 92 public boolean contains(String code) { in contains() argument 94 return regularData.contains(code); in contains() 96 int pos = code.indexOf('-'); in contains() 97 String key = code.substring(0,pos); in contains() 98 final String value = code.substring(pos+1); in contains() 169 * Returns the Datasubtype containing the code, or null if there is none. 171 public static Datasubtype isValid(Datatype datatype, Set<Datasubtype> datasubtypes, String code) { in isValid() argument 177 if (validitySet.contains(AsciiUtil.toLowerString(code))) { in isValid() 186 public static Datasubtype isValid(Datatype datatype, Set<Datasubtype> datasubtypes, String code, String value) { in isValid() argument 189 code in isValid() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ValidIdentifiers.java | 103 public boolean contains(String code) { in contains() argument 105 return regularData.contains(code); in contains() 107 int pos = code.indexOf('-'); in contains() 108 String key = code.substring(0,pos); in contains() 109 final String value = code.substring(pos+1); in contains() 180 * Returns the Datasubtype containing the code, or null if there is none. 182 public static Datasubtype isValid(Datatype datatype, Set<Datasubtype> datasubtypes, String code) { in isValid() argument 188 if (validitySet.contains(AsciiUtil.toLowerString(code))) { in isValid() 197 public static Datasubtype isValid(Datatype datatype, Set<Datasubtype> datasubtypes, String code, String value) { in isValid() argument 200 code in isValid() [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_substring.c | 9 Original API code Copyright (c) 1997-2012 University of Cambridge 10 New API code Copyright (c) 2016-2018 University of Cambridge 16 * Redistributions of source code must retain the above copyright notice, 65 if not successful, a negative error code: 80 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_copy_byname() 113 if not successful, a negative error code: 168 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_get_byname() 201 if not successful, a negative error code: 275 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_length_byname() 308 if not successful, a negative error code 480 pcre2_substring_nametable_scan(const pcre2_code *code, PCRE2_SPTR stringname, PCRE2_SPTR *firstptr, PCRE2_SPTR *lastptr) pcre2_substring_nametable_scan() argument 541 pcre2_substring_number_from_name(const pcre2_code *code, PCRE2_SPTR stringname) pcre2_substring_number_from_name() argument [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | register.py | 96 (code, result) = self.post_to_server(self.build_post_data('verify')) 97 log.info('Server response (%s): %s', code, result) 165 code, result = self.post_to_server(self.build_post_data('submit'), 167 self.announce('Server response (%s): %s' % (code, result), 171 if code == 200: 206 code, result = self.post_to_server(data) 207 if code != 200: 208 log.info('Server response (%s): %s', code, result) 218 code, result = self.post_to_server(data) 219 log.info('Server response (%s): %s', code, resul [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | c_interface_test.cpp | 46 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 51 EXPECT_EQ(SPV_SUCCESS, spvBinaryToText(context, binary->code, in TEST() 81 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 85 spvBinaryToText(context, binary->code, binary->wordCount, 0, &text, in TEST() 102 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 161 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 165 spvBinaryToText(context, binary->code, binary->wordCount, 0, &text, in TEST() 203 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 252 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 257 spvBinaryToText(context, binary->code, binar in TEST() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | c_interface_test.cpp | 46 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 51 EXPECT_EQ(SPV_SUCCESS, spvBinaryToText(context, binary->code, in TEST() 81 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 85 spvBinaryToText(context, binary->code, binary->wordCount, 0, &text, in TEST() 102 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 161 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 165 spvBinaryToText(context, binary->code, binary->wordCount, 0, &text, in TEST() 203 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 252 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 257 spvBinaryToText(context, binary->code, binar in TEST() [all...] |
/third_party/spirv-tools/test/ |
H A D | c_interface_test.cpp | 46 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 51 EXPECT_EQ(SPV_SUCCESS, spvBinaryToText(context, binary->code, in TEST() 81 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 85 spvBinaryToText(context, binary->code, binary->wordCount, 0, &text, in TEST() 102 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 164 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 168 spvBinaryToText(context, binary->code, binary->wordCount, 0, &text, in TEST() 206 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 258 binary->code[binary->wordCount - 1] = 0xffffffff; in TEST() 263 spvBinaryToText(context, binary->code, binar in TEST() [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/signal/ |
H A D | signal.c | 26 void signal_0100(int code) in signal_0100() argument 28 if (code != SIGILL & code != SIGTRAP) { in signal_0100() 29 t_error("%s signal get error code is %d are not SIGILL or SIGTRAP\n", __func__, code); in signal_0100()
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_generate_test_code.py | 195 code = gen_function_wrapper('test_a', '', ('a', 'b', 'c', 'd')) 203 self.assertEqual(code, expected) 211 code = gen_function_wrapper('test_a', 220 self.assertEqual(code, expected) 228 code = gen_function_wrapper('test_a', '', ()) 237 self.assertEqual(code, expected) 250 code = gen_dispatch('test_a', ['DEP1', 'DEP2']) 258 self.assertEqual(code, expected) 265 code = gen_dispatch('test_a', []) 269 self.assertEqual(code, expecte [all...] |