/kernel/linux/linux-6.6/drivers/gpu/drm/bridge/ |
H A D | sil-sii8620.c | 173 dev_err(dev, "Read at %#06x of %d bytes failed with code %d.\n", in sii8620_read_buf() 221 dev_err(dev, "Write at %#06x of %*ph failed with code %d.\n", in sii8620_write_buf() 440 static void sii8620_mt_rap(struct sii8620 *ctx, u8 code) in sii8620_mt_rap() argument 442 sii8620_mt_msc_msg(ctx, MHL_MSC_MSG_RAP, code); in sii8620_mt_rap() 445 static void sii8620_mt_rcpk(struct sii8620 *ctx, u8 code) in sii8620_mt_rcpk() argument 447 sii8620_mt_msc_msg(ctx, MHL_MSC_MSG_RCPK, code); in sii8620_mt_rcpk() 450 static void sii8620_mt_rcpe(struct sii8620 *ctx, u8 code) in sii8620_mt_rcpe() argument 452 sii8620_mt_msc_msg(ctx, MHL_MSC_MSG_RCPE, code); in sii8620_mt_rcpe()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/openvswitch/ |
H A D | ovs-dpctl.py | 1005 ("code", "B"), 1010 ("code", "code", "%d", lambda x: int(x) if x else 0), 1535 if ne.code == errno.ENODEV: 1578 if ne.code == errno.EEXIST: 1599 if ne.code == errno.ENODEV: 1690 if ne.code == errno.ENODEV: 1717 if ne.code == errno.EEXIST: 1763 if ne.code == errno.ENODEV:
|
/kernel/linux/linux-6.6/drivers/scsi/esas2r/ |
H A D | esas2r_ioctl.c | 1277 u16 code; in esas2r_ioctl_handler() local 1392 ioctl->data.prw.code = 1; in esas2r_ioctl_handler() 1405 code = esas2r_write_params(a, rq, in esas2r_ioctl_handler() 1407 ioctl->data.prw.code = code; in esas2r_ioctl_handler() 1417 ioctl->data.prw.code = 1; in esas2r_ioctl_handler() 2004 /* Pick up possible error code from above */ in esas2r_read_fs()
|
/third_party/ffmpeg/libavdevice/ |
H A D | dshow.c | 49 // 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 D | webp.c | 257 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 D | options.c | 1286 * 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/debug/ |
H A D | debug-interface.cc | 2 // 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/node/deps/v8/src/builtins/ |
H A D | builtins-regexp-gen.cc | 2 // 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...] |
H A D | builtins-internal-gen.cc | 2 // Use of this source code is governed by a BSD-style license that can be 9 #include "src/codegen/code-stub-assembler.h" 112 // Tail call into code object on the SharedFunctionInfo. in TF_BUILTIN() 113 TNode<CodeT> code = GetSharedFunctionInfoCode(shared); in TF_BUILTIN() local 114 TailCallJSCode(code, context, function, new_target, arg_count); in TF_BUILTIN() 257 // `src/compiler/<arch>/code-generator-<arch>.cc` before calling this in GenerationalWriteBarrier() 1075 TNode<CodeT> code = in TF_BUILTIN() local 1082 code, context, // standard arguments for TailCallStub in TF_BUILTIN() 1414 TNode<CodeT> code = LoadJSFunctionCode(function); in TF_BUILTIN() local 1415 TailCallJSCode(code, contex in TF_BUILTIN() [all...] |
/third_party/pulseaudio/src/modules/oss/ |
H A D | module-oss.c | 216 * Currently this code path is executed also when resuming the in trigger() 646 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in sink_process_msg() argument 649 switch (code) { in sink_process_msg() 667 return pa_sink_process_msg(o, code, data, offset, chunk); in sink_process_msg() 735 static int source_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in source_process_msg() argument 738 switch (code) { in source_process_msg() 755 return pa_source_process_msg(o, code, data, offset, chunk); in source_process_msg()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | protocol-esound.c | 77 /* This is heavily based on esound's code */ 150 static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk); 1296 static int connection_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) { in connection_process_msg() argument 1303 switch (code) { in connection_process_msg() 1325 static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) { in sink_input_process_msg() argument 1333 switch (code) { in sink_input_process_msg() 1364 return pa_sink_input_process_msg(o, code, userdata, offset, chunk); in sink_input_process_msg()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | ShaderModule.cpp | 1006 std::vector<uint32_t> spirv(spirvDesc->code, spirvDesc->code + spirvDesc->codeSize); 1025 std::vector<uint32_t> spirv(spirvDesc->code, spirvDesc->code + spirvDesc->codeSize); 1184 mOriginalSpirv.assign(spirvDesc->code, spirvDesc->code + spirvDesc->codeSize);
|
/third_party/pulseaudio/src/modules/ |
H A D | module-combine-sink.c | 731 static int sink_input_process_msg(pa_msgobject *obj, int code, void *data, int64_t offset, pa_memchunk *chunk) { in sink_input_process_msg() argument 734 switch (code) { in sink_input_process_msg() 785 return pa_sink_input_process_msg(obj, code, data, offset, chunk); in sink_input_process_msg() 1030 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { 1033 switch (code) { 1116 return pa_sink_process_msg(o, code, data, offset, chunk);
|
/third_party/python/Lib/test/ |
H A D | test_smtplib.py | 1221 code, message = smtp.ehlo() 1222 self.assertEqual(code, 250) 1234 code, message = smtp.noop() 1235 self.assertEqual(code, 250) 1503 # encoded. Hard code the expected response for the test. 1557 code, response = smtp.auth('plain', smtp.auth_plain) 1559 self.assertEqual(code, 235)
|
/third_party/rust/crates/termcolor/src/ |
H A D | lib.rs | 158 /// This is useful for writing generic code (such as a buffered writer) 1435 ($pre:expr, $($code:expr),+) => {{ in write_color() 1446 let c1: u8 = ($code / 100) % 10; in write_color() 1447 let c2: u8 = ($code / 10) % 10; in write_color() 1448 let c3: u8 = $code % 10; in write_color() 1781 /// sequences, a "reset" code will be emitted every time a `ColorSpec`'s 1792 /// sequences, a "reset" code will be emitted every time a `ColorSpec`'s 1986 for code in codes { in from_str_numeric() 1987 let n = parse_number(code).ok_or_else(|| ParseColorError { in from_str_numeric()
|
/third_party/node/deps/v8/src/execution/s390/ |
H A D | simulator-s390.cc | 2 // Use of this source code is governed by a BSD-style license that can be 42 // z/Architecture code. 132 // Not setting the breakpoint instruction in the code itself. It will be set in SetBreakpoint() 595 PrintF(" disassemble code, default is 10 instructions\n"); in Debug() 619 PrintF(" stop info all/<code> : print infos about number <code>\n"); in Debug() 621 PrintF(" stop enable/disable all/<code> : enables / disables\n"); in Debug() 622 PrintF(" all or number <code> stop(s)\n"); in Debug() 1653 // Stupid code added to avoid bug in GCC. in get_low_register() 1656 // End stupid code in get_low_register() 2313 uint32_t code = svc & kStopCodeMask; SoftwareInterrupt() local 2341 isWatchedStop(uint32_t code) isWatchedStop() argument 2346 isEnabledStop(uint32_t code) isEnabledStop() argument 2353 EnableStop(uint32_t code) EnableStop() argument 2360 DisableStop(uint32_t code) DisableStop() argument 2367 IncreaseStopCounter(uint32_t code) IncreaseStopCounter() argument 2383 PrintStopInfo(uint32_t code) PrintStopInfo() argument [all...] |
/drivers/external_device_manager/interfaces/ddk/hid/ |
H A D | hid_ddk_types.h | 54 /** Event code */ 55 uint16_t code; member 495 /** Event type code */ 508 /** Key value code */ 521 /** Absolute coordinate property code */ 534 /** Relative coordinate property code */
|
/drivers/peripheral/clearplay/interfaces/include/drm/v1_0/ |
H A D | media_key_session_stub.h | 37 int32_t OnRemoteRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) override;
|
/kernel/linux/linux-5.10/arch/xtensa/boot/boot-redboot/ |
H A D | bootstrap.S | 91 # a0: address where this code has been loaded 130 * to copy the parameter list. Keep the code around; in case
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_virt.h | 60 uint16_t code[AMDGPU_VF_ERROR_ENTRY_SIZE]; member
|
/kernel/linux/linux-5.10/drivers/block/ |
H A D | skd_s1120.h | 267 uint8_t code; /* 0C: Additional Sense Code */ member
|
/kernel/linux/linux-5.10/drivers/block/drbd/ |
H A D | drbd_protocol.h | 412 u8 code[]; member
|
/kernel/linux/linux-5.10/block/ |
H A D | opal_proto.h | 283 * code == 0x001 in 2.00.100 312 * code == 0x0002 in 2.00.100 340 * code == 0x0003 in 2.00.100 362 * code == 0x0100 381 * code == 0x0200 391 * code == 0x0201 410 * code == 0x0202 422 * code == 0x0203 454 __be16 code; member
|
/kernel/linux/linux-5.10/arch/loongarch/kernel/ |
H A D | paravirt.c | 152 static int pv_reboot_notify(struct notifier_block *nb, unsigned long code, in pv_reboot_notify() argument 222 /* Don't use the pvqspinlock code if there is only 1 vCPU. */ in kvm_spinlock_init()
|
/kernel/linux/linux-5.10/arch/mips/alchemy/ |
H A D | board-mtx1.c | 86 .code = BTN_0,
|