Searched full:raw (Results 1 – 25 of 3391) sorted by relevance
12345678910>>...136
144 static void raw3215_mk_read_req(struct raw3215_info *raw) in raw3215_mk_read_req() argument150 req = raw->queued_read; in raw3215_mk_read_req()155 req->info = raw; in raw3215_mk_read_req()156 raw->queued_read = req; in raw3215_mk_read_req()163 ccw->cda = (__u32)__pa(raw->inbuf); in raw3215_mk_read_req()172 static void raw3215_mk_write_req(struct raw3215_info *raw) in raw3215_mk_write_req() argument178 if (raw->count <= raw->written) in raw3215_mk_write_req()181 req = raw->queued_write; in raw3215_mk_write_req()186 req->info = raw; in raw3215_mk_write_req()187 raw->queued_write = req; in raw3215_mk_write_req()[all …]
20 struct via_display_timing raw; in via_set_primary_timing() local22 raw.hor_total = timing->hor_total / 8 - 5; in via_set_primary_timing()23 raw.hor_addr = timing->hor_addr / 8 - 1; in via_set_primary_timing()24 raw.hor_blank_start = timing->hor_blank_start / 8 - 1; in via_set_primary_timing()25 raw.hor_blank_end = timing->hor_blank_end / 8 - 1; in via_set_primary_timing()26 raw.hor_sync_start = timing->hor_sync_start / 8; in via_set_primary_timing()27 raw.hor_sync_end = timing->hor_sync_end / 8; in via_set_primary_timing()28 raw.ver_total = timing->ver_total - 2; in via_set_primary_timing()29 raw.ver_addr = timing->ver_addr - 1; in via_set_primary_timing()30 raw.ver_blank_start = timing->ver_blank_start - 1; in via_set_primary_timing()[all …]
15 [Documentation] Execute set of IPMI raw KCS interface commands and verify it is16 ... executable from os host. Set of IPMI raw commands includes system interface19 #### raw cmd for get device ID.20 Run Inband IPMI Raw Command ${IPMI_RAW_CMD['Device ID']['Get'][0]}22 #### Raw cmd for cold reset.23 Run Inband IPMI Raw Command ${IPMI_RAW_CMD['Cold Reset']['reset'][0]}29 ... Run Inband IPMI Raw Command ${IPMI_RAW_CMD['Device ID']['Get'][0]}31 #### raw cmd for get device GUID.32 Run Inband IPMI Raw Command ${IPMI_RAW_CMD['Device GUID']['Get'][0]}34 #### raw cmd for get IP addr.[all …]
16 "MLO.raw raw 0x100 0x100;" \17 "u-boot.img.raw raw 0x300 0x1000;" \18 "u-env.raw raw 0x1300 0x200;" \19 "spl-os-args.raw raw 0x1500 0x200;" \20 "spl-os-image.raw raw 0x1700 0x6900;" \28 "rawemmc raw 0 3751936;" \32 "MLO.raw raw 0x100 0x100;" \33 "u-boot.img.raw raw 0x300 0x1000;" \34 "u-env.raw raw 0x1300 0x200;" \35 "spl-os-args.raw raw 0x1500 0x200;" \[all …]
3 * System Control and Management Interface (SCMI) Raw mode support10 * When enabled the SCMI Raw mode support exposes a userspace API which allows26 * In order to avoid possible interferences between the SCMI Raw transactions28 * when Raw mode is enabled, by default, all the regular SCMI drivers are36 * All SCMI Raw entries are rooted under a common top /raw debugfs top directory43 * |-- raw133 * struct scmi_raw_queue - Generic Raw queue descriptor135 * @free_bufs: A freelists listhead used to keep unused raw buffers152 * struct scmi_raw_mode_info - Structure holding SCMI Raw instance data154 * @id: Sequential Raw instance ID.[all …]
3 * Greybus driver for the Raw protocol53 * Add the raw data message to the list of received messages.55 static int receive_data(struct gb_raw *raw, u32 len, u8 *data) in receive_data() argument58 struct device *dev = &raw->connection->bundle->dev; in receive_data()66 mutex_lock(&raw->list_lock); in receive_data()67 if ((raw->list_data + len) > MAX_DATA_SIZE) { in receive_data()79 raw->list_data += len; in receive_data()83 list_add_tail(&raw_data->entry, &raw->list); in receive_data()85 mutex_unlock(&raw->list_lock); in receive_data()93 struct gb_raw *raw = greybus_get_drvdata(connection->bundle); in gb_raw_request_handler() local[all …]
3 * ImgTec IR Raw Decoder found in PowerDown Controller.7 * This ties into the input subsystem using the RC-core in raw mode. Raw IR20 struct img_ir_priv_raw *raw = &priv->raw; in img_ir_refresh_raw() local21 struct rc_dev *rc_dev = priv->raw.rdev; in img_ir_refresh_raw()33 if (multiple && ir_status == raw->last_status) in img_ir_refresh_raw()35 raw->last_status = ir_status; in img_ir_refresh_raw()37 /* report the edge to the IR raw decoders */ in img_ir_refresh_raw()48 struct img_ir_priv_raw *raw = &priv->raw; in img_ir_isr_raw() local51 if (!raw->rdev) in img_ir_isr_raw()57 mod_timer(&raw->timer, jiffies + msecs_to_jiffies(ECHO_TIMEOUT_MS)); in img_ir_isr_raw()[all …]
2 // rc-ir-raw.c - handle IR pulse/space events13 /* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */16 /* Used to handle IR raw handler extensions */25 struct ir_raw_event_ctrl *raw = data; in ir_raw_event_thread() local26 struct rc_dev *dev = raw->dev; in ir_raw_event_thread()30 while (kfifo_out(&raw->kfifo, &ev, 1)) { in ir_raw_event_thread()34 if (is_timing_event(raw->prev_ev) && in ir_raw_event_thread()35 !is_transition(&ev, &raw->prev_ev)) in ir_raw_event_thread()44 raw->prev_ev = ev; in ir_raw_event_thread()53 } else if (!kfifo_is_empty(&raw->kfifo)) in ir_raw_event_thread()[all …]
15 * BPF interface for raw IR141 struct ir_raw_event_ctrl *raw; in lirc_bpf_attach() local151 raw = rcdev->raw; in lirc_bpf_attach()152 if (!raw) { in lirc_bpf_attach()157 old_array = lirc_rcu_dereference(raw->progs); in lirc_bpf_attach()167 rcu_assign_pointer(raw->progs, new_array); in lirc_bpf_attach()179 struct ir_raw_event_ctrl *raw; in lirc_bpf_detach() local189 raw = rcdev->raw; in lirc_bpf_detach()190 if (!raw) { in lirc_bpf_detach()195 old_array = lirc_rcu_dereference(raw->progs); in lirc_bpf_detach()[all …]
4 IPMI raw commands table:24 # raw command, expected output(s), comment34 # raw command, expected output, comment40 # raw command, expected output, comment48 # raw command, expected output(s), comment56 # raw command, expected output, comment62 # raw command, expected output, comment70 # raw command, expected output, comment76 # raw command80 # raw command, expected output(s)[all …]
76 "raw": 0, number86 "raw": 0, number96 "raw": 0, number106 "raw": 0, number116 "raw": 0, number126 "raw": 0, number136 "raw": 0, number146 "raw": 0, number156 "raw": 0, number166 "raw": 0, number[all …]
2 USB Raw Gadget5 USB Raw Gadget is a gadget driver that gives userspace low-level control over8 Like any other gadget driver, Raw Gadget implements USB devices via the9 USB gadget API. Unlike most gadget drivers, Raw Gadget does not implement12 Raw Gadget is currently a strictly debugging feature and should not be used20 Raw Gadget is similar to GadgetFS but provides more direct access to the23 1. Raw Gadget passes every USB request to userspace to get a response, while28 2. Raw Gadget allows providing arbitrary data as responses to USB requests,30 This makes Raw Gadget suitable for fuzzing by providing malformed data as33 3. Raw Gadget provides a way to select a UDC device/driver to bind to,[all …]
32 _rm_test_img "$TEST_DIR/1.raw"33 _rm_test_img "$TEST_DIR/2.raw"34 _rm_test_img "$TEST_DIR/3.raw"42 _supported_fmt raw62 quorum="driver=raw,file.driver=quorum,file.vote-threshold=2"63 quorum="$quorum,file.children.0.file.filename=$TEST_DIR/1.raw"64 quorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw"65 quorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw"66 quorum="$quorum,file.children.0.driver=raw"67 quorum="$quorum,file.children.1.driver=raw"[all …]
4 # Test writing image headers of other formats into raw images43 _supported_fmt raw57 _launch_qemu -drive file="${source_img}",format=raw,cache=${CACHEMODE},aio=${AIOMODE},id=src78 echo "=== Writing a $fmt header into raw ==="91 # When raw was explicitly specified, the same must succeed92 run_qemu "$TEST_IMG" "$TEST_IMG.src" "'format': 'raw'," "BLOCK_JOB_READY"93 $QEMU_IMG compare -f raw -F raw "$TEST_IMG" "$TEST_IMG.src"102 echo "=== Copying sample image $sample_img into raw ==="114 run_qemu "$TEST_IMG" "$TEST_IMG.src" "'format': 'raw'," "BLOCK_JOB_READY"115 $QEMU_IMG compare -f raw -F raw "$TEST_IMG" "$TEST_IMG.src"[all …]
13 * acpi_lpat_raw_to_temp(): Return temperature from raw value through17 * @raw: the raw value, used as a key to get the temperature from the24 int raw) in acpi_lpat_raw_to_temp() argument30 if ((raw >= lpat[i].raw && raw <= lpat[i+1].raw) || in acpi_lpat_raw_to_temp()31 (raw <= lpat[i].raw && raw >= lpat[i+1].raw)) in acpi_lpat_raw_to_temp()39 delta_raw = lpat[i+1].raw - lpat[i].raw; in acpi_lpat_raw_to_temp()40 temp = lpat[i].temp + (raw - lpat[i].raw) * delta_temp / delta_raw; in acpi_lpat_raw_to_temp()47 * acpi_lpat_temp_to_raw(): Return raw value from temperature through51 * @temp: the temperature, used as a key to get the raw value from the54 * The raw value will be returned on success,[all …]
25 :param raw: The raw object to be validated.29 def __init__(self, raw: Mapping[str, Any]):30 self._raw = raw59 :param raw: The raw Greeting object.63 def __init__(self, raw: Mapping[str, Any]):64 super().__init__(raw)87 :param raw: The raw QMPGreeting object.91 def __init__(self, raw: Mapping[str, Any]):92 super().__init__(raw)109 :param raw: The raw ErrorResponse object.[all …]
30 echo "raw"33 echo "raw bind"36 echo "raw qdisc bypass"39 echo "raw vlan"42 echo "raw vnet hdr"45 echo "raw csum_off"48 echo "raw csum_off with bad offset (expected to fail)"54 echo "raw min size"57 echo "raw mtu size"60 echo "raw mtu size + 1 (expected to fail)"[all …]
164 uint8_t raw; member197 uint8_t raw; member205 uint8_t raw; member215 uint8_t raw; member225 uint8_t raw; member233 uint8_t raw; member243 uint8_t raw; member257 uint8_t raw; member271 uint8_t raw; member280 uint8_t raw; member[all …]
24 wait_for_bit_le32(&mii_regs->mind.raw, MIIMIND_BUSY, in pic32_mdio_write()29 writel(v, &mii_regs->madr.raw); in pic32_mdio_write()32 writel(value, &mii_regs->mwtd.raw); in pic32_mdio_write()38 wait_for_bit_le32(&mii_regs->mind.raw, MIIMIND_BUSY, in pic32_mdio_write()50 wait_for_bit_le32(&mii_regs->mind.raw, MIIMIND_BUSY, in pic32_mdio_read()55 writel(v, &mii_regs->madr.raw); in pic32_mdio_read()58 writel(MIIMCMD_READ, &mii_regs->mcmd.raw); in pic32_mdio_read()64 wait_for_bit_le32(&mii_regs->mind.raw, in pic32_mdio_read()69 writel(0, &mii_regs->mcmd.raw); in pic32_mdio_read()72 v = readl(&mii_regs->mrdd.raw); in pic32_mdio_read()[all …]
94 p.raw.resize(p.raw.size() + sizeof(T)); in op()95 uint8_t* out = p.raw.data() + p.raw.size() - sizeof(T); in op()252 p.raw.reserve(p.raw.size() + t.size()); in op()253 p.raw.insert(p.raw.end(), t.begin(), t.end()); in op()268 p.raw.reserve(p.raw.size() + t.size()); in op()269 p.raw.insert(p.raw.end(), t.begin(), t.end()); in op()284 p.raw.reserve(p.raw.size() + t.size()); in op()285 p.raw.insert(p.raw.end(), t.begin(), t.end()); in op()300 p.raw.reserve(p.raw.size() + t.size()); in op()301 p.raw.insert(p.raw.end(), t.begin(), t.end()); in op()[all …]
32 static void *bpf_any_get(void *raw, enum bpf_type type) in bpf_any_get() argument36 bpf_prog_inc(raw); in bpf_any_get()39 bpf_map_inc_with_uref(raw); in bpf_any_get()42 bpf_link_inc(raw); in bpf_any_get()49 return raw; in bpf_any_get()52 static void bpf_any_put(void *raw, enum bpf_type type) in bpf_any_put() argument56 bpf_prog_put(raw); in bpf_any_put()59 bpf_map_put_with_uref(raw); in bpf_any_put()62 bpf_link_put(raw); in bpf_any_put()72 void *raw; in bpf_fd_probe_obj() local[all …]
48 /*! Read the raw table data from the specified row of the Egress CTL50 * rec - [OUT] The raw table row data will be unpacked into the fields of rec.66 /*! Read the raw table data from the specified row of the Egress68 * rec - [OUT] The raw table row data will be unpacked into the fields of rec.84 /*! Read the raw table data from the specified row of the Egress SC86 * rec - [OUT] The raw table row data will be unpacked into the fields of rec.102 /*! Read the raw table data from the specified row of the Egress SA104 * rec - [OUT] The raw table row data will be unpacked into the fields of rec.120 /*! Read the raw table data from the specified row of the Egress SA122 * rec - [OUT] The raw table row data will be unpacked into the fields of rec.[all …]
83 # Strip rule for the raw .so files84 $(obj)/%.so.raw: OBJCOPYFLAGS := -S85 $(obj)/%.so.raw: $(obj)/%.so.dbg.raw FORCE92 $(foreach file,$(filter %.raw,$^),cp $(file) $(file:%.raw=%) &&) \93 $(obj)/genvdso $(<:%.raw=%) $(<:%.dbg.raw=%) $@ $(VDSO_NAME)104 targets += vdso.so.dbg.raw vdso.so.raw115 $(obj)/vdso.so.dbg.raw: $(obj)/vdso.lds $(obj-vdso) FORCE118 $(obj)/vdso-image.c: $(obj)/vdso.so.dbg.raw $(obj)/vdso.so.raw \131 targets += vdso-o32.so.dbg.raw vdso-o32.so.raw153 $(obj)/vdso-o32.so.dbg.raw: $(obj)/vdso-o32.lds $(obj-vdso-o32) FORCE[all …]
163 .font_start_addr = (void *)STI_PTR(font->raw), in sti_putc()567 cooked_font->raw = nf; in sti_select_fbfont()586 unsigned char *p = (unsigned char *)font->raw; in sti_dump_font()591 font->raw->bytes_per_char); in sti_dump_font()593 for (n = 0; n < 256 * font->raw->bytes_per_char; n += 16, p += 16) { in sti_dump_font()609 if ((font->raw->width == width) && in sti_search_font()610 (font->raw->height == height)) in sti_search_font()645 struct sti_rom *rom = sti->rom->raw; in sti_dump_rom()665 struct sti_rom_font *f = font_start->raw; in sti_dump_rom()690 cooked_font->raw = raw_font; in sti_cook_fonts()[all …]
67 lane_status.raw = dp_get_nibble_at_index( in dp_parse_link_loss_status()68 &hpd_irq_dpcd_data->bytes.lane01_status.raw, in dp_parse_link_loss_status()130 &psr_configuration.raw, in handle_hpd_irq_psr_sink()131 sizeof(psr_configuration.raw)); in handle_hpd_irq_psr_sink()146 psr_error_status.raw = dpcdbuf[0]; in handle_hpd_irq_psr_sink()148 psr_sink_psr_status.raw = dpcdbuf[2]; in handle_hpd_irq_psr_sink()160 &psr_error_status.raw, in handle_hpd_irq_psr_sink()161 sizeof(psr_error_status.raw)); in handle_hpd_irq_psr_sink()198 &replay_configuration.raw, in handle_hpd_irq_replay_sink()199 sizeof(replay_configuration.raw)); in handle_hpd_irq_replay_sink()[all …]