Home
last modified time | relevance | path

Searched refs:line (Results 201 - 225 of 5307) sorted by relevance

12345678910>>...213

/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dbase.py163 for _, line in enumerate(lines):
164 f.write(line+'\n')
171 for index, line in enumerate(lines):
173 if line.startswith('=='):
191 def _ignore_actual_line(self, line):
195 if not line:
197 return (line.startswith('==') or
198 line.startswith('**') or
199 line.startswith('ANDROID') or
200 line
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-detect.c72 char line[64], args[64]; in detect_alsa() local
77 if (!fgets(line, sizeof(line), f)) in detect_alsa()
80 line[strcspn(line, "\r\n")] = 0; in detect_alsa()
82 if (pa_endswith(line, "digital audio playback")) in detect_alsa()
84 else if (pa_endswith(line, "digital audio capture")) in detect_alsa()
95 if (sscanf(line, " %*i: [%u- %u]: ", &device, &subdevice) != 2) in detect_alsa()
136 char line[256], args[64]; in detect_oss() local
140 if (!fgets(line, sizeo in detect_oss()
[all...]
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpiolib-cdev.c105 * GPIO line handle management
219 * or output, else the line will be treated "as is". in linehandle_set_config()
270 * All line descriptors were created at once with the same in linehandle_ioctl_unlocked()
401 * or output, else the line will be treated "as is". in linehandle_create()
417 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n", in linehandle_create()
463 * struct line - contains the state of a requested line
464 * @desc: the GPIO descriptor for this line.
465 * @req: the corresponding line request
472 * events for the corresponding line reques
483 struct line { global() struct
641 line_event_timestamp(struct line *line) line_event_timestamp() argument
662 struct line *line; process_hw_ts_thread() local
710 struct line *line; process_hw_ts() local
743 hte_edge_setup(struct line *line, u64 eflags) hte_edge_setup() argument
773 hte_edge_setup(struct line *line, u64 eflags) hte_edge_setup() argument
781 struct line *line = p; edge_irq_thread() local
827 struct line *line = p; edge_irq_handler() local
845 debounced_value(struct line *line) debounced_value() argument
864 struct line *line = p; debounce_irq_handler() local
875 struct line *line = container_of(work, struct line, work.work); debounce_work_func() local
941 debounce_setup(struct line *line, unsigned int debounce_period_us) debounce_setup() argument
1013 edge_detector_stop(struct line *line) edge_detector_stop() argument
1033 edge_detector_setup(struct line *line, struct gpio_v2_line_config *lc, unsigned int line_idx, u64 edflags) edge_detector_setup() argument
1087 edge_detector_update(struct line *line, struct gpio_v2_line_config *lc, unsigned int line_idx, u64 edflags) edge_detector_update() argument
1386 struct line *line; linereq_set_config_unlocked() local
[all...]
H A Dgpio-ts5500.c201 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_input() local
204 if (line.no_input) in ts5500_gpio_input()
207 if (line.no_output) in ts5500_gpio_input()
211 ts5500_clear_mask(line.control_mask, line.control_addr); in ts5500_gpio_input()
220 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_get() local
222 return !!(inb(line.value_addr) & line.value_mask); in ts5500_gpio_get()
228 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_output() local
231 if (line in ts5500_gpio_output()
250 const struct ts5500_dio line = priv->pinout[offset]; ts5500_gpio_set() local
265 const struct ts5500_dio line = block[offset]; ts5500_gpio_to_irq() local
[all...]
/third_party/toybox/toys/pending/
H A Dmodprobe.c158 * Read a line from file with \ continuation and skip commented lines.
159 * Return the line in allocated string (*li)
163 char *nxtline = NULL, *line; in read_line() local
168 line = NULL; in read_line()
170 len = getline(&line, &linelen, fl); in read_line()
172 free(line); in read_line()
176 if (line[0] != '#') break; in read_line()
177 free(line); in read_line()
180 if (line[len - 1] == '\n') len--; in read_line()
182 free(line); in read_line()
210 char *filename, *tokens[3], *line, *linecp; config_action() local
282 char *line, *name; depmode_read_entry() local
309 char *line = NULL; find_dep() local
[all...]
/third_party/gn/misc/
H A Dhelp_as_html.py29 for line in out.splitlines():
30 if line.startswith(' '):
31 command, sep, rest = line.partition(':')
44 output.append('<h2>' + cgi.escape(line) + '</h2>')
52 for line in out.splitlines():
54 name, sep, rest = line.partition(':')
60 if line.startswith('Example'):
67 elif not line.strip():
69 elif not line.startswith(' ') and line
[all...]
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-ts5500.c201 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_input() local
204 if (line.no_input) in ts5500_gpio_input()
207 if (line.no_output) in ts5500_gpio_input()
211 ts5500_clear_mask(line.control_mask, line.control_addr); in ts5500_gpio_input()
220 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_get() local
222 return !!(inb(line.value_addr) & line.value_mask); in ts5500_gpio_get()
228 const struct ts5500_dio line = priv->pinout[offset]; in ts5500_gpio_output() local
231 if (line in ts5500_gpio_output()
250 const struct ts5500_dio line = priv->pinout[offset]; ts5500_gpio_set() local
265 const struct ts5500_dio line = block[offset]; ts5500_gpio_to_irq() local
[all...]
/kernel/linux/linux-5.10/drivers/media/pci/ivtv/
H A Divtv-vbi.c23 data.line = enabled ? 16 : 0; in ivtv_set_vps()
40 data.line = (mode & 1) ? 21 : 0; in ivtv_set_cc()
45 data.line = (mode & 2) ? 21 : 0; in ivtv_set_cc()
68 data.line = enabled ? 23 : 0; in ivtv_set_wss()
89 if (d->id == V4L2_SLICED_CAPTION_525 && d->line == 21) { in ivtv_write_vbi_line()
98 } else if (d->id == V4L2_SLICED_VPS && d->line == 16 && d->field == 0) { in ivtv_write_vbi_line()
111 d->line == 23 && d->field == 0) { in ivtv_write_vbi_line()
176 int line = 0; in copy_vbi_data() local
196 l = itv->vbi.sliced_data[i].line - 6; in copy_vbi_data()
204 dst[sd + 12 + line * 4 in copy_vbi_data()
238 int line = 0; ivtv_convert_ivtv_vbi() local
325 compress_sliced_buf(struct ivtv *itv, u32 line, u8 *buf, u32 size, u8 sav) compress_sliced_buf() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/pci/ivtv/
H A Divtv-vbi.c23 data.line = enabled ? 16 : 0; in ivtv_set_vps()
40 data.line = (mode & 1) ? 21 : 0; in ivtv_set_cc()
45 data.line = (mode & 2) ? 21 : 0; in ivtv_set_cc()
68 data.line = enabled ? 23 : 0; in ivtv_set_wss()
89 if (d->id == V4L2_SLICED_CAPTION_525 && d->line == 21) { in ivtv_write_vbi_line()
98 } else if (d->id == V4L2_SLICED_VPS && d->line == 16 && d->field == 0) { in ivtv_write_vbi_line()
111 d->line == 23 && d->field == 0) { in ivtv_write_vbi_line()
176 int line = 0; in copy_vbi_data() local
196 l = itv->vbi.sliced_data[i].line - 6; in copy_vbi_data()
204 dst[sd + 12 + line * 4 in copy_vbi_data()
238 int line = 0; ivtv_convert_ivtv_vbi() local
325 compress_sliced_buf(struct ivtv *itv, u32 line, u8 *buf, u32 size, u8 sav) compress_sliced_buf() argument
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dprotocol-http.c90 pa_ioline *line; member
128 if (c->line) in connection_unlink()
129 pa_ioline_unref(c->line); in connection_unlink()
320 pa_ioline_puts(c->line, s); in http_response()
336 pa_ioline_defer_close(c->line); in html_response()
349 pa_ioline_puts(c->line, s); in html_response()
352 pa_ioline_defer_close(c->line); in html_response()
355 static void html_print_field(pa_ioline *line, const char *left, const char *right) { in html_print_field() argument
361 pa_ioline_printf(line, in html_print_field()
377 pa_ioline_defer_close(c->line); in handle_root()
632 line_callback(pa_ioline *line, const char *s, void *userdata) line_callback() argument
[all...]
H A Dcpu-arm.c40 char *line, *end, *colon; in get_cpuinfo_line() local
42 if (!(line = strstr(cpuinfo, tag))) in get_cpuinfo_line()
45 if (!(end = strchr(line, '\n'))) in get_cpuinfo_line()
48 if (!(colon = strchr(line, ':'))) in get_cpuinfo_line()
82 char *cpuinfo, *line; in pa_cpu_get_arm_flags() local
95 if ((line = get_cpuinfo_line(cpuinfo, "CPU architecture"))) { in pa_cpu_get_arm_flags()
96 arch = strtoul(line, NULL, 0); in pa_cpu_get_arm_flags()
102 pa_xfree(line); in pa_cpu_get_arm_flags()
106 if ((line = get_cpuinfo_line(cpuinfo, "Features"))) { in pa_cpu_get_arm_flags()
110 while ((current = pa_split_spaces(line, in pa_cpu_get_arm_flags()
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/qcom/camss/
H A Dcamss-vfe.c168 static u32 vfe_src_pad_code(struct vfe_line *line, u32 sink_code, in vfe_src_pad_code() argument
171 struct vfe_device *vfe = to_vfe(line); in vfe_src_pad_code()
311 struct vfe_output *output = &vfe->line[i].output; in vfe_init_outputs()
392 int vfe_put_output(struct vfe_line *line) in vfe_put_output() argument
394 struct vfe_device *vfe = to_vfe(line); in vfe_put_output()
395 struct vfe_output *output = &line->output; in vfe_put_output()
445 ret = camss_get_pixel_clock(&vfe->line[i].subdev.entity, in vfe_set_clock_rates()
467 struct vfe_line *l = &vfe->line[j]; in vfe_set_clock_rates()
528 ret = camss_get_pixel_clock(&vfe->line[i].subdev.entity, in vfe_check_clock_rates()
550 struct vfe_line *l = &vfe->line[ in vfe_check_clock_rates()
677 struct vfe_line *line = container_of(vid, struct vfe_line, video_out); vfe_flush_buffers() local
713 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_set_power() local
739 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_set_stream() local
769 __vfe_get_format(struct vfe_line *line, struct v4l2_subdev_state *sd_state, unsigned int pad, enum v4l2_subdev_format_whence which) __vfe_get_format() argument
790 __vfe_get_compose(struct vfe_line *line, struct v4l2_subdev_state *sd_state, enum v4l2_subdev_format_whence which) __vfe_get_compose() argument
810 __vfe_get_crop(struct vfe_line *line, struct v4l2_subdev_state *sd_state, enum v4l2_subdev_format_whence which) __vfe_get_crop() argument
829 vfe_try_format(struct vfe_line *line, struct v4l2_subdev_state *sd_state, unsigned int pad, struct v4l2_mbus_framefmt *fmt, enum v4l2_subdev_format_whence which) vfe_try_format() argument
889 vfe_try_compose(struct vfe_line *line, struct v4l2_subdev_state *sd_state, struct v4l2_rect *rect, enum v4l2_subdev_format_whence which) vfe_try_compose() argument
928 vfe_try_crop(struct vfe_line *line, struct v4l2_subdev_state *sd_state, struct v4l2_rect *rect, enum v4l2_subdev_format_whence which) vfe_try_crop() argument
976 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_enum_mbus_code() local
1010 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_enum_frame_size() local
1048 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_get_format() local
1076 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_set_format() local
1127 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_get_selection() local
1197 struct vfe_line *line = v4l2_get_subdevdata(sd); vfe_set_selection() local
[all...]
/third_party/rust/crates/clap/clap_mangen/src/
H A Drender.rs21 for line in about.to_string().lines() {
22 if line.trim().is_empty() {
25 roff.text([roman(line)]);
32 let mut line = vec![bold(cmd.get_name()), roman(" ")]; variables
38 line.push(roman(lhs));
39 line.push(bold(format!("-{short}")));
40 line.push(roman("|"));
41 line.push(bold(format!("--{long}",)));
42 line.push(roman(rhs));
45 line
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A Dfixed_debug.h78 static inline short _EXTRACT16(int x, char *file, int line) in _EXTRACT16() argument
83 fprintf (stderr, "EXTRACT16: input is not short: %d in %s: line %d\n", x, file, line); in _EXTRACT16()
91 static inline int _EXTEND32(int x, char *file, int line) in _EXTEND32() argument
96 fprintf (stderr, "EXTEND32: input is not short: %d in %s: line %d\n", x, file, line); in _EXTEND32()
104 static inline short _SHR16(int a, int shift, char *file, int line) in _SHR16() argument
109 fprintf (stderr, "SHR16: inputs are not short: %d >> %d in %s: line %d\n", a, shift, file, line); in _SHR16()
113 fprintf (stderr, "SHR16: output is not short: %d in %s: line in _SHR16()
118 _SHL16(int a, int shift, char *file, int line) _SHL16() argument
174 _ADD16(int a, int b, char *file, int line) _ADD16() argument
191 _SUB16(int a, int b, char *file, int line) _SUB16() argument
206 _ADD32(long long a, long long b, char *file, int line) _ADD32() argument
254 _MULT16_16(int a, int b, char *file, int line) _MULT16_16() argument
275 _MULT16_32_QX(int a, long long b, int Q, char *file, int line) _MULT16_32_QX() argument
439 _DIV32_16(long long a, long long b, char *file, int line) _DIV32_16() argument
465 _DIV32(long long a, long long b, char *file, int line) _DIV32() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dgf119.c27 pwm_info(struct nvkm_therm *therm, int line) in pwm_info() argument
31 u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04)); in pwm_info()
48 nvkm_error(subdev, "GPIO %d unknown PWM: %08x\n", line, gpio); in pwm_info()
53 gf119_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in gf119_fan_pwm_ctrl() argument
57 int indx = pwm_info(therm, line); in gf119_fan_pwm_ctrl()
61 nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data); in gf119_fan_pwm_ctrl()
67 gf119_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) in gf119_fan_pwm_get() argument
70 int indx = pwm_info(therm, line); in gf119_fan_pwm_get()
74 if (nvkm_rd32(device, 0x00d610 + (line * 0x04)) & 0x00000040) { in gf119_fan_pwm_get()
89 gf119_fan_pwm_set(struct nvkm_therm *therm, int line, u3 argument
106 gf119_fan_pwm_clock(struct nvkm_therm *therm, int line) gf119_fan_pwm_clock() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dgf119.c27 pwm_info(struct nvkm_therm *therm, int line) in pwm_info() argument
31 u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04)); in pwm_info()
49 nvkm_error(subdev, "GPIO %d unknown PWM: %08x\n", line, gpio); in pwm_info()
54 gf119_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in gf119_fan_pwm_ctrl() argument
58 int indx = pwm_info(therm, line); in gf119_fan_pwm_ctrl()
62 nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data); in gf119_fan_pwm_ctrl()
68 gf119_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) in gf119_fan_pwm_get() argument
71 int indx = pwm_info(therm, line); in gf119_fan_pwm_get()
75 if (nvkm_rd32(device, 0x00d610 + (line * 0x04)) & 0x00000040) { in gf119_fan_pwm_get()
90 gf119_fan_pwm_set(struct nvkm_therm *therm, int line, u3 argument
107 gf119_fan_pwm_clock(struct nvkm_therm *therm, int line) gf119_fan_pwm_clock() argument
[all...]
/third_party/ltp/libs/libltpuinput/
H A Dtst_uinput.c49 static char *parse_field(char *line, char field) in parse_field() argument
55 value = strstr(line, HANDLERS_PREFIX) + sizeof(HANDLERS_PREFIX) - 1; in parse_field()
58 value = strstr(line, SYSFS_PREFIX) + sizeof(SYSFS_PREFIX) - 1; in parse_field()
72 char line[1024]; in get_input_field_value() local
79 while (fgets(line, sizeof(line), file)) { in get_input_field_value()
80 if (strstr(line, "N: Name=\""VIRTUAL_DEVICE"\"")) in get_input_field_value()
84 if (line[0] == field) in get_input_field_value()
85 return parse_field(line, field); in get_input_field_value()
87 if (line[ in get_input_field_value()
99 char line[256]; check_device() local
[all...]
/kernel/linux/linux-6.6/scripts/
H A Dcheckpatch.pl90 --no-signoff do not check for 'Signed-off-by' line
93 --terse one line per report
111 --max-line-length=n set the maximum line length, (default $max_line_length)
126 If correctable single-line errors exist, create
226 my $line = $_;
228 $line =~ s/\s*\n?$//g;
229 $line =~ s/^\s*//g;
230 $line =~ s/\s+/ /g;
232 next if ($line
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dassembly_builder.h167 for (const auto& line : preamble_) { in GetCode()
168 ss << line << std::endl; in GetCode()
170 for (const auto& line : global_preamble_) { in GetCode()
171 ss << line << std::endl; in GetCode()
173 for (const auto& line : names_) { in GetCode()
174 ss << line << std::endl; in GetCode()
176 for (const auto& line : annotations_) { in GetCode()
177 ss << line << std::endl; in GetCode()
179 for (const auto& line : types_consts_globals_) { in GetCode()
180 ss << line << st in GetCode()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dassembly_builder.h167 for (const auto& line : preamble_) { in GetCode()
168 ss << line << std::endl; in GetCode()
170 for (const auto& line : global_preamble_) { in GetCode()
171 ss << line << std::endl; in GetCode()
173 for (const auto& line : names_) { in GetCode()
174 ss << line << std::endl; in GetCode()
176 for (const auto& line : annotations_) { in GetCode()
177 ss << line << std::endl; in GetCode()
179 for (const auto& line : types_consts_globals_) { in GetCode()
180 ss << line << st in GetCode()
[all...]
/third_party/spirv-tools/test/opt/
H A Dassembly_builder.h167 for (const auto& line : preamble_) { in GetCode()
168 ss << line << std::endl; in GetCode()
170 for (const auto& line : global_preamble_) { in GetCode()
171 ss << line << std::endl; in GetCode()
173 for (const auto& line : names_) { in GetCode()
174 ss << line << std::endl; in GetCode()
176 for (const auto& line : annotations_) { in GetCode()
177 ss << line << std::endl; in GetCode()
179 for (const auto& line : types_consts_globals_) { in GetCode()
180 ss << line << st in GetCode()
[all...]
/third_party/skia/docs/examples/
H A DPoint_normalize_2.cpp11 for (auto line : lines) { in REG_FIDDLE()
12 canvas->drawLine(line[0], line[1], paint); in REG_FIDDLE()
13 SkVector vector = line[1] - line[0]; in REG_FIDDLE()
17 canvas->drawLine(line[0] - rotate90, line[0] + rotate90, paint); in REG_FIDDLE()
18 canvas->drawLine(line[1] - rotate90, line[1] + rotate90, paint); in REG_FIDDLE()
/third_party/skia/src/sksl/ir/
H A DSkSLConstructor.cpp26 int line, in convert_compound_constructor()
49 context.fErrors->error(line, "'" + argument->type().displayName() + in convert_compound_constructor()
61 context, line, type.componentType(), std::move(args)); in convert_compound_constructor()
68 ? ConstructorDiagonalMatrix::Make(context, line, type, std::move(typecast)) in convert_compound_constructor()
69 : ConstructorSplat::Make(context, line, type, std::move(typecast)); in convert_compound_constructor()
74 return ConstructorCompoundCast::Make(context, line, type, std::move(argument)); in convert_compound_constructor()
87 argument = ConstructorCompoundCast::Make(context, line, typecastType, in convert_compound_constructor()
91 return ConstructorMatrixResize::Make(context, line, type, in convert_compound_constructor()
104 ConstructorCompound::Make(context, line, vectorType, std::move(args)); in convert_compound_constructor()
108 return ConstructorCompoundCast::Make(context, line, typ in convert_compound_constructor()
25 convert_compound_constructor(const Context& context, int line, const Type& type, ExpressionArray args) convert_compound_constructor() argument
150 Convert(const Context& context, int line, const Type& type, ExpressionArray args) Convert() argument
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py143 for line in out.splitlines():
145 not line.startswith(" Creating library ")
146 and not line.startswith("Generating code")
147 and not line.startswith("Finished generating code")
149 print(line)
257 for line in out.splitlines():
258 if line and "manifest authoring warning 81010002" not in line:
259 print(line)
275 quietable via command line flag
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dwin_tool.py143 for line in out.splitlines():
145 not line.startswith(" Creating library ")
146 and not line.startswith("Generating code")
147 and not line.startswith("Finished generating code")
149 print(line)
256 for line in out.splitlines():
257 if line and "manifest authoring warning 81010002" not in line:
258 print(line)
274 quietable via command line flag
[all...]

Completed in 14 milliseconds

12345678910>>...213