Home
last modified time | relevance | path

Searched refs:code (Results 4451 - 4475 of 5334) sorted by relevance

1...<<171172173174175176177178179180>>...214

/third_party/libunwind/libunwind/doc/
H A Dlibunwind.tex143 generated code is not affected by the setting of
260 unwind through code that has been generated at runtime (e.g., by a
262 information for \emph{all} dynamically generated code because
275 generated code, see \SeeAlso{libunwind-dynamic(3)}.
/third_party/libcoap/src/
H A Dcoap_subscribe.c123 if (pdu->code != COAP_REQUEST_CODE_GET && in coap_persist_observe_add()
124 pdu->code != COAP_REQUEST_CODE_FETCH) in coap_persist_observe_add()
935 if (!ctx->unknown_resource->handler[request->code-1]) in coap_op_dyn_resource_load_disk()
942 ctx->unknown_resource->handler[request->code-1](ctx->unknown_resource, in coap_op_dyn_resource_load_disk()
/third_party/mbedtls/library/
H A Dx509.c46 #define CHECK(code) \
48 if ((ret = (code)) != 0) { \
1743 #define KEY_USAGE(code, name) \
1745 if ((key_usage) & (code)) { \
/third_party/mesa3d/src/gallium/frontends/clover/spirv/
H A Dinvocation.cpp123 make_text_section(const std::string &code, in make_text_section() argument
125 const pipe_binary_program_header header { uint32_t(code.size()) }; in make_text_section()
130 text.data.insert(text.data.end(), code.begin(), code.end()); in make_text_section()
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/
H A Dittnotify_static.c229 { api_version, (__itt_group_none) } /* !!! Just to avoid unused code elimination !!! */
297 static void __itt_report_error(__itt_error_code code, ...) in __itt_report_error() argument
300 va_start(args, code); in __itt_report_error()
304 handler(code, args); in __itt_report_error()
307 _N_(error_handler)(code, args); in __itt_report_error()
1286 /* !!! Just to avoid unused code elimination !!! */ in init_ittlib()
/third_party/node/src/
H A Dnode_errors.cc121 // code. in GetErrorSource()
126 // 1. Pass a flag around to say "this code was wrapped" in GetErrorSource()
1170 // exit with that code. Otherwise, exit with 1. in TriggerUncaughtException()
1172 Local<Value> code; in TriggerUncaughtException() local
1173 if (process_object->Get(env->context(), exit_code).ToLocal(&code) && in TriggerUncaughtException()
1174 code->IsInt32()) { in TriggerUncaughtException()
1175 env->Exit(code.As<Int32>()->Value()); in TriggerUncaughtException()
H A Dnode_http_parser.cc870 Local<String> code; in Execute() local
875 code = OneByteString(env()->isolate(), in Execute()
880 code = OneByteString(env()->isolate(), llhttp_errno_name(err)); in Execute()
884 obj->Set(env()->context(), env()->code_string(), code).Check(); in Execute()
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
H A Dbuild-ideal-tree.js225 log.warn(err.code, err.message, {
255 validationError.code = 'EUPDATEARGS'
290 if (err.code === 'EJSONPARSE') {
1395 code: 'ERESOLVE',
/third_party/mesa3d/src/panfrost/lib/genxml/
H A Ddecode.c585 uint8_t *PANDECODE_PTR_VAR(code, mem, shader_ptr); in pandecode_shader_disassemble()
598 disassemble_valhall(pandecode_dump_stream, (const uint64_t *) code, sz, true); in pandecode_shader_disassemble()
600 disassemble_bifrost(pandecode_dump_stream, code, sz, false); in pandecode_shader_disassemble()
603 code, sz, gpu_id, true); in pandecode_shader_disassemble()
/third_party/lwip/src/netif/ppp/
H A Dpppoe.c39 * This code is derived from software contributed to The NetBSD Foundation
45 * 1. Redistributions of source code must retain the above copyright
169 * Return 0 on success, an error code on failure.
501 switch (ph->code) { in pppoe_disc_input()
634 PPPDEBUG(LOG_DEBUG, ("%c%c%"U16_F": unknown code (0x%"X16_F") session = 0x%"X16_F"\n", in pppoe_disc_input()
636 (u16_t)ph->code, session)); in pppoe_disc_input()
638 PPPDEBUG(LOG_DEBUG, ("pppoe: unknown code (0x%"X16_F") session = 0x%"X16_F"\n", (u16_t)ph->code, session)); in pppoe_disc_input()
678 if (ph->code != 0) { in pppoe_data_input()
/third_party/node/deps/v8/src/debug/
H A Dliveedit.cc2 // Use of this source code is governed by a BSD-style license that can be
933 void TranslateSourcePositionTable(Isolate* isolate, Handle<BytecodeArray> code, in TranslateSourcePositionTable() argument
938 Handle<ByteArray> source_position_table(code->SourcePositionTable(), isolate); in TranslateSourcePositionTable()
950 code->set_source_position_table(*new_source_position_table, kReleaseStore); in TranslateSourcePositionTable()
952 CodeLinePosInfoRecordEvent(code->GetFirstBytecodeAddress(), in TranslateSourcePositionTable()
H A Ddebug-interface.cc2 // Use of this source code is governed by a BSD-style license that can be
116 // code (hopefully), so don't bother with them here. in GetFunctionDescription()
122 builder.AppendCStringLiteral("() { [native code] }"); in GetFunctionDescription()
734 DCHECK_GE(i::kMaxInt, func.code.offset()); in GetFunctionRange()
735 DCHECK_GE(i::kMaxInt, func.code.end_offset()); in GetFunctionRange()
736 return std::make_pair(static_cast<int>(func.code.offset()), in GetFunctionRange()
737 static_cast<int>(func.code.end_offset())); in GetFunctionRange()
774 // If the module contains at least one function, the code offset must have in CodeOffset()
777 module->code.offset() != 0); in CodeOffset()
778 return module->code in CodeOffset()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Devergreen_compute.c97 FREE(b->code); in radeon_shader_binary_clean()
311 binary->code = MALLOC(binary->code_size * sizeof(unsigned char)); in r600_elf_read()
312 memcpy(binary->code, section_data->d_buf, binary->code_size); in r600_elf_read()
412 memcpy(bc->bytecode, binary->code, binary->code_size); in r600_create_shader()
463 /* Upload code + ROdata */ in evergreen_create_compute_state()
1209 * to have the loop counter in your shader code. We don't currently use in evergreen_init_atom_start_compute_cs()
/third_party/node/deps/openssl/openssl/ssl/statem/
H A Dstatem_dtls.c1047 int dtls1_read_failed(SSL *s, int code) in dtls1_read_failed() argument
1049 if (code > 0) { in dtls1_read_failed()
1059 return code; in dtls1_read_failed()
1065 return code; in dtls1_read_failed()
/third_party/skia/src/gpu/dawn/
H A DGrDawnGpu.cpp4 * Use of this source code is governed by a BSD-style license that can be
955 SkSL::String code; in SkSLToSPIRV() local
956 if (!this->shaderCompiler()->toSPIRV(*program, &code)) { in SkSLToSPIRV()
960 return code; in SkSLToSPIRV()
966 desc.code = reinterpret_cast<const uint32_t*>(spirvSource.c_str()); in createShaderModule()
/third_party/openssl/ssl/statem/
H A Dstatem_dtls.c1051 int dtls1_read_failed(SSL *s, int code) in dtls1_read_failed() argument
1053 if (code > 0) { in dtls1_read_failed()
1063 return code; in dtls1_read_failed()
1069 return code; in dtls1_read_failed()
/third_party/python/Modules/_ctypes/
H A Dcfield.c1515 Ideas: Implement VARIANT in this table, using 'V' code.
1516 Use '?' as code for BOOL.
1525 for (; fd->code; ++fd) { in _ctypes_init_fielddesc()
1526 switch (fd->code) { in _ctypes_init_fielddesc()
1603 for (; table->code; ++table) { in _ctypes_get_fielddesc()
1604 if (table->code == fmt[0]) in _ctypes_get_fielddesc()
/third_party/rust/crates/rustix/src/backend/libc/fs/
H A Dsyscalls.rs582 let code = match libc_errno::errno().0 {
587 c::_exit(code);
607 let code = match libc_errno::errno().0 {
620 c::_exit(code);
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dhs20_supplicant.c1278 void hs20_rx_deauth_imminent_notice(struct wpa_supplicant *wpa_s, u8 code, in hs20_rx_deauth_imminent_notice() argument
1287 code, reauth_delay, url); in hs20_rx_deauth_imminent_notice()
1289 if (code == HS20_DEAUTH_REASON_CODE_BSS) { in hs20_rx_deauth_imminent_notice()
1307 if (code == HS20_DEAUTH_REASON_CODE_ESS && wpa_s->current_ssid) { in hs20_rx_deauth_imminent_notice()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dhs20_supplicant.c1304 void hs20_rx_deauth_imminent_notice(struct wpa_supplicant *wpa_s, u8 code, in hs20_rx_deauth_imminent_notice() argument
1313 code, reauth_delay, url); in hs20_rx_deauth_imminent_notice()
1315 if (code == HS20_DEAUTH_REASON_CODE_BSS) { in hs20_rx_deauth_imminent_notice()
1333 if (code == HS20_DEAUTH_REASON_CODE_ESS && wpa_s->current_ssid) { in hs20_rx_deauth_imminent_notice()
/test/xts/acts/graphic/nativewindow/entry/src/main/cpp/
H A Dnativewindow1.cpp75 int code = SET_BUFFER_GEOMETRY; in InitNativeWindow() local
78 int32_t ret = OH_NativeWindow_NativeWindowHandleOpt(_nativeWindow, code, result1.width_, result1.height_); in InitNativeWindow()
79 code = SET_USAGE; in InitNativeWindow()
81 ret = OH_NativeWindow_NativeWindowHandleOpt(_nativeWindow, code, usage); in InitNativeWindow()
1589 int code = SET_BUFFER_GEOMETRY; in testNativeWindowNativeWindowHandleOptNullptr() local
1590 auto flag = OH_NativeWindow_NativeWindowHandleOpt(nullptr, code, 100, 100); in testNativeWindowNativeWindowHandleOptNullptr()
/third_party/ffmpeg/libavdevice/
H A Ddshow.c49 // indicated by Microsoft example code: https://docs.microsoft.com/en-us/windows/win32/api/dxva2api/ns-dxva2api-dxva2_videodesc)
1845 long code; in dshow_check_event_queue() local
1848 while (IMediaEvent_GetEvent(media_event, &code, &p1, &p2, 0) != E_ABORT) { in dshow_check_event_queue()
1849 if (code == EC_COMPLETE || code == EC_DEVICE_LOST || code == EC_ERRORABORT) in dshow_check_event_queue()
1851 IMediaEvent_FreeEventParams(media_event, code, p1, p2); in dshow_check_event_queue()
/third_party/ffmpeg/libavcodec/
H A Dwebp.c257 int len = 0, sym, code = 0, ret; in huff_reader_build_canonical() local
265 code = sym; in huff_reader_build_canonical()
272 r->simple_symbols[0] = code; in huff_reader_build_canonical()
287 code = 0; in huff_reader_build_canonical()
293 codes[sym] = code++; in huff_reader_build_canonical()
296 code <<= 1; in huff_reader_build_canonical()
378 /* Code length code [0..15] indicates literal code lengths. */ in read_huffman_code_normal()
387 * i.e., 3 + ReadBits(2) times. If code 16 is used before a in read_huffman_code_normal()
667 "distance prefix code to in decode_entropy_coded_image()
[all...]
/third_party/cups-filters/filter/foomatic-rip/
H A Doptions.c1286 * Checks whether 'code' contains active PostScript, i.e. not only comments
1288 static int contains_active_postscript(const char *code) in contains_active_postscript() argument
1293 if (!(lines = argv_split(code, "\n", NULL))) in contains_active_postscript()
1305 const char *code) in option_set_choice()
1321 if (!code) in option_set_choice()
1323 _log("Warning: No code for choice \"%s\" of option \"%s\"\n", in option_set_choice()
1328 if (!startswith(code, "%% FoomaticRIPOptionSetting")) in option_set_choice()
1329 unhtmlify(choice->command, 65536, code); in option_set_choice()
1655 /* cupsFilter: <code> */ in read_ppd_file()
1708 /* "*FoomaticRIPOptionPrototype <option>: <code>" in read_ppd_file()
1304 option_set_choice(option_t *opt, const char *name, const char *text, const char *code) option_set_choice() argument
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-regexp-gen.cc2 // Use of this source code is governed by a BSD-style license that can be
11 #include "src/codegen/code-factory.h"
12 #include "src/codegen/code-stub-assembler.h"
48 // If code is a builtin, return the address to the (possibly embedded) builtin
49 // code entry, otherwise return the entry of the code object itself.
50 TNode<RawPtrT> RegExpBuiltinsAssembler::LoadCodeObjectEntry(TNode<CodeT> code) { in LoadCodeObjectEntry() argument
52 // When external code space is enabled we can load the entry point directly in LoadCodeObjectEntry()
54 return GetCodeEntry(code); in LoadCodeObjectEntry()
61 LoadObjectField<Int32T>(code, Cod in LoadCodeObjectEntry()
562 TNode<CodeT> code = CAST(var_code.value()); RegExpExecInternal() local
[all...]

Completed in 48 milliseconds

1...<<171172173174175176177178179180>>...214