Home
last modified time | relevance | path

Searched refs:line (Results 1151 - 1175 of 5647) sorted by relevance

1...<<41424344454647484950>>...226

/kernel/linux/linux-6.6/arch/um/os-Linux/
H A Dstart_up.c325 void (*flags_helper_func)(char *line), in get_host_cpu_features()
326 void (*cache_helper_func)(char *line)) in get_host_cpu_features()
329 char *line = NULL; in get_host_cpu_features() local
337 while ((getline(&line, &len, cpuinfo)) != -1) { in get_host_cpu_features()
338 if (strstr(line, "flags")) { in get_host_cpu_features()
339 flags_helper_func(line); in get_host_cpu_features()
342 if (strstr(line, "cache_alignment")) { in get_host_cpu_features()
343 cache_helper_func(line); in get_host_cpu_features()
346 free(line); in get_host_cpu_features()
347 line in get_host_cpu_features()
324 get_host_cpu_features( void (*flags_helper_func)(char *line), void (*cache_helper_func)(char *line)) get_host_cpu_features() argument
[all...]
/kernel/linux/linux-5.10/drivers/tty/serial/8250/
H A D8250_ingenic.c33 int line; member
159 * Enable receive timeout interrupt with the receive line in ingenic_uart_serial_out()
214 int irq, err, line; in ingenic_uart_probe() local
251 /* Check for a fixed line number */ in ingenic_uart_probe()
252 line = of_alias_get_id(pdev->dev.of_node, "serial"); in ingenic_uart_probe()
253 if (line >= 0) in ingenic_uart_probe()
254 uart.port.line = line; in ingenic_uart_probe()
284 data->line = serial8250_register_8250_port(&uart); in ingenic_uart_probe()
285 if (data->line < in ingenic_uart_probe()
[all...]
/kernel/linux/linux-5.10/fs/ext4/
H A Dext4_jbd2.h228 const char *func, unsigned int line);
236 int __ext4_journal_get_write_access(const char *where, unsigned int line,
239 int __ext4_forget(const char *where, unsigned int line, handle_t *handle,
243 int __ext4_journal_get_create_access(const char *where, unsigned int line,
246 int __ext4_handle_dirty_metadata(const char *where, unsigned int line,
261 handle_t *__ext4_journal_start_sb(struct super_block *sb, unsigned int line,
264 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle);
319 unsigned int line, int type, in __ext4_journal_start()
323 return __ext4_journal_start_sb(inode->i_sb, line, type, blocks, in __ext4_journal_start()
333 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line,
318 __ext4_journal_start(struct inode *inode, unsigned int line, int type, int blocks, int rsv_blocks, int revoke_creds) __ext4_journal_start() argument
[all...]
/kernel/linux/linux-6.6/fs/ext4/
H A Dext4_jbd2.h225 const char *func, unsigned int line);
233 int __ext4_journal_get_write_access(const char *where, unsigned int line,
238 int __ext4_forget(const char *where, unsigned int line, handle_t *handle,
242 int __ext4_journal_get_create_access(const char *where, unsigned int line,
247 int __ext4_handle_dirty_metadata(const char *where, unsigned int line,
265 unsigned int line, int type, int blocks,
267 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle);
322 unsigned int line, int type, in __ext4_journal_start()
326 return __ext4_journal_start_sb(inode, inode->i_sb, line, type, blocks, in __ext4_journal_start()
336 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line,
321 __ext4_journal_start(struct inode *inode, unsigned int line, int type, int blocks, int rsv_blocks, int revoke_creds) __ext4_journal_start() argument
[all...]
/kernel/linux/linux-6.6/drivers/tty/serial/8250/
H A D8250_ingenic.c32 int line; member
183 * Enable receive timeout interrupt with the receive line in ingenic_uart_serial_out()
237 int irq, err, line; in ingenic_uart_probe() local
273 /* Check for a fixed line number */ in ingenic_uart_probe()
274 line = of_alias_get_id(pdev->dev.of_node, "serial"); in ingenic_uart_probe()
275 if (line >= 0) in ingenic_uart_probe()
276 uart.port.line = line; in ingenic_uart_probe()
306 data->line = serial8250_register_8250_port(&uart); in ingenic_uart_probe()
307 if (data->line < in ingenic_uart_probe()
[all...]
/third_party/elfutils/libdwfl/
H A Dlinux-proc-maps.c207 char *line = NULL; in proc_maps_report() local
210 while ((len = getline (&line, &linesz, f)) > 0) in proc_maps_report()
212 if (line[len - 1] == '\n') in proc_maps_report()
213 line[len - 1] = '\0'; in proc_maps_report()
219 if (sscanf (line, "%" PRIx64 "-%" PRIx64 " %*s %" PRIx64 in proc_maps_report()
224 free (line); in proc_maps_report()
236 free (line); in proc_maps_report()
247 char *file = line + nread + strspn (line + nread, " \t"); in proc_maps_report()
249 /* This line does in proc_maps_report()
[all...]
H A Ddwfl_linemodule.c1 /* Fetch the module containing a source line record returned by libdwfl.
36 dwfl_linemodule (Dwfl_Line *line) in dwfl_linemodule() argument
38 if (line == NULL) in dwfl_linemodule()
41 return dwfl_linecu (line)->mod; in dwfl_linemodule()
/third_party/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h234 virtual void ReportFailure(FailureType type, const char* file, int line,
246 inline void Assert(bool condition, const char* file, int line, in Assert() argument
250 line, msg); in Assert()
253 inline void Assert(bool condition, const char* file, int line) { in Assert() argument
254 Assert(condition, file, line, "Assertion failed."); in Assert()
259 inline void Expect(bool condition, const char* file, int line, in Expect() argument
263 file, line, msg); in Expect()
266 inline void Expect(bool condition, const char* file, int line) { in Expect() argument
267 Expect(condition, file, line, "Expectation failed."); in Expect()
423 GTEST_API_ void IllegalDoDefault(const char* file, int line);
[all...]
/third_party/icu/icu4c/source/samples/layout/
H A Dpflow.c29 * Move the line below out of this comment
271 static void addLine(pf_object *obj, pl_line *line) in addLine() argument
278 obj->fLines[obj->fLineCount++] = line; in addLine()
286 pl_line *line; in pf_breakLines() local
311 while ((line = pl_nextLine(paragraphLayout, lineWidth)) != NULL) { in pf_breakLines()
312 addLine(obj, line); in pf_breakLines()
329 const pl_line *line = obj->fLines[li]; in pf_draw() local
331 if (line != NULL) { in pf_draw()
332 le_int32 runCount = pl_countLineRuns(line); in pf_draw()
336 le_int32 lastX = pl_getLineWidth(line); in pf_draw()
[all...]
/third_party/skia/third_party/externals/icu/source/samples/layout/
H A Dpflow.c27 * Move the line below out of this comment
269 static void addLine(pf_object *obj, pl_line *line) in addLine() argument
276 obj->fLines[obj->fLineCount++] = line; in addLine()
284 pl_line *line; in pf_breakLines() local
309 while ((line = pl_nextLine(paragraphLayout, lineWidth)) != NULL) { in pf_breakLines()
310 addLine(obj, line); in pf_breakLines()
327 const pl_line *line = obj->fLines[li]; in pf_draw() local
329 if (line != NULL) { in pf_draw()
330 le_int32 runCount = pl_countLineRuns(line); in pf_draw()
334 le_int32 lastX = pl_getLineWidth(line); in pf_draw()
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLBinaryExpression.cpp76 const int line = left->fLine; in Convert() local
100 context.fErrors->error(line, String("type mismatch: '") + op.operatorName() + in Convert()
107 context.fErrors->error(line, "assignments to opaque type '" + left->type().displayName() + in Convert()
113 context.fErrors->error(line, String("operator '") + op.operatorName() + in Convert()
121 context.fErrors->error(line, String("operator '") + op.operatorName() + "' can not " in Convert()
169 const int line = left->fLine; in Make() local
170 if (std::unique_ptr<Expression> result = ConstantFolder::Simplify(context, line, *left, in Make()
182 auto caps = Setting::Convert(context, line, "rewriteMatrixVectorMultiply"); in Make()
201 std::make_unique<BinaryExpression>(line, std::move(left), op, in Make()
207 return std::make_unique<BinaryExpression>(line, st in Make()
[all...]
/third_party/python/Lib/
H A Dtextwrap.py30 string that will be prepended to the first line of wrapped
31 output. Counts towards the line's width.
34 of wrapped output; also counts towards each line's width.
38 in its line. If false, each tab is treated as a single character.
63 Append to the last line of truncated text.
203 is too long to fit in any line.
213 # of the next chunk onto the current line as will fit.
227 # it to the current line if there's nothing already there --
233 # text on the current line, do nothing. Next time through the
235 # cur_len will be zero, so the next line wil
[all...]
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/
H A Druntests.py29 (without .rs extension) as command line parameters.
194 line = proc.stdout.readline()
195 if not line:
197 assert line.endswith(b'\n'), "incomplete line: " + repr(line)
198 queue.put(line)
206 for line in rest.split(b'\n'):
207 if not line:
209 queue.put(line)
[all...]
/kernel/linux/linux-5.10/drivers/scsi/snic/
H A Dsnic_io.c462 char line[LINE_BUFSZ] = { '\0' }; in snic_dump_desc() local
474 snprintf(line, LINE_BUFSZ, "SNIC_REQ_REPORT_TGTS :"); in snic_dump_desc()
479 snprintf(line, LINE_BUFSZ, "SNIC_REQ_ICMND : 0x%x :", in snic_dump_desc()
485 snprintf(line, LINE_BUFSZ, "SNIC_REQ_ITMF :"); in snic_dump_desc()
490 snprintf(line, LINE_BUFSZ, "SNIC_REQ_HBA_RESET :"); in snic_dump_desc()
495 snprintf(line, LINE_BUFSZ, "SNIC_REQ_EXCH_VER :"); in snic_dump_desc()
504 snprintf(line, LINE_BUFSZ, "SNIC_RSP_REPORT_TGTS_CMPL :"); in snic_dump_desc()
509 snprintf(line, LINE_BUFSZ, "SNIC_RSP_ICMND_CMPL : 0x%x :", in snic_dump_desc()
515 snprintf(line, LINE_BUFSZ, "SNIC_RSP_ITMF_CMPL :"); in snic_dump_desc()
520 snprintf(line, LINE_BUFS in snic_dump_desc()
[all...]
/kernel/linux/linux-5.10/lib/
H A Dtest_bitmap.c59 __check_eq_uint(const char *srcfile, unsigned int line, in __check_eq_uint() argument
64 srcfile, line, exp_uint, x); in __check_eq_uint()
72 __check_eq_bitmap(const char *srcfile, unsigned int line, in __check_eq_bitmap() argument
78 srcfile, line, in __check_eq_bitmap()
86 __check_eq_pbl(const char *srcfile, unsigned int line, in __check_eq_pbl() argument
93 srcfile, line, in __check_eq_pbl()
101 __check_eq_u32_array(const char *srcfile, unsigned int line,
105 __check_eq_u32_array(const char *srcfile, unsigned int line, in __check_eq_u32_array() argument
111 srcfile, line, in __check_eq_u32_array()
117 pr_warn("[%s:%u] array contents differ\n", srcfile, line); in __check_eq_u32_array()
128 __check_eq_clump8(const char *srcfile, unsigned int line, const unsigned int offset, const unsigned int size, const unsigned char *const clump_exp, const unsigned long *const clump) __check_eq_clump8() argument
[all...]
/kernel/linux/linux-6.6/drivers/scsi/snic/
H A Dsnic_io.c448 char line[LINE_BUFSZ] = { '\0' }; in snic_dump_desc() local
460 snprintf(line, LINE_BUFSZ, "SNIC_REQ_REPORT_TGTS :"); in snic_dump_desc()
465 snprintf(line, LINE_BUFSZ, "SNIC_REQ_ICMND : 0x%x :", in snic_dump_desc()
471 snprintf(line, LINE_BUFSZ, "SNIC_REQ_ITMF :"); in snic_dump_desc()
476 snprintf(line, LINE_BUFSZ, "SNIC_REQ_HBA_RESET :"); in snic_dump_desc()
481 snprintf(line, LINE_BUFSZ, "SNIC_REQ_EXCH_VER :"); in snic_dump_desc()
490 snprintf(line, LINE_BUFSZ, "SNIC_RSP_REPORT_TGTS_CMPL :"); in snic_dump_desc()
495 snprintf(line, LINE_BUFSZ, "SNIC_RSP_ICMND_CMPL : 0x%x :", in snic_dump_desc()
501 snprintf(line, LINE_BUFSZ, "SNIC_RSP_ITMF_CMPL :"); in snic_dump_desc()
506 snprintf(line, LINE_BUFS in snic_dump_desc()
[all...]
/third_party/curl/lib/
H A Ddynhds.c218 const char *line, size_t line_len) in Curl_dynhds_h1_add_line()
226 if(!line || !line_len) in Curl_dynhds_h1_add_line()
229 if((line[0] == ' ') || (line[0] == '\t')) { in Curl_dynhds_h1_add_line()
235 while(line_len && ISBLANK(line[0])) { in Curl_dynhds_h1_add_line()
236 ++line; in Curl_dynhds_h1_add_line()
242 e2 = entry_append(e, line, line_len); in Curl_dynhds_h1_add_line()
250 p = memchr(line, ':', line_len); in Curl_dynhds_h1_add_line()
253 name = line; in Curl_dynhds_h1_add_line()
254 namelen = p - line; in Curl_dynhds_h1_add_line()
217 Curl_dynhds_h1_add_line(struct dynhds *dynhds, const char *line, size_t line_len) Curl_dynhds_h1_add_line() argument
273 Curl_dynhds_h1_cadd_line(struct dynhds *dynhds, const char *line) Curl_dynhds_h1_cadd_line() argument
[all...]
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/
H A DJacocoReportCheck.java67 String line = reader.readLine(); in main()
68 if (line == null) { in main()
71 line = line.trim(); in main()
72 if (line.startsWith("//") || line.length() == 0) { in main()
73 // comment or blank line in main()
76 boolean added = excludedSet.add(line); in main()
78 System.err.println("Warning: Duplicated exclusion entry - " + line); in main()
195 String mtdLineStr = mtdElement.getAttribute("line"); in parseReport()
310 final int line; global() field in JacocoReportCheck.Method
318 Method(String name, String desc, int line, Counter instructionCnt, Counter branchCnt, Counter lineCnt, Counter complexityCnt, Counter methodCnt) Method() argument
339 int line() { line() method in JacocoReportCheck.Method
[all...]
/third_party/libwebsockets/lib/core/
H A Dlogs.c32 void lwsl_emit_optee(int level, const char *line);
283 _lwsl_emit_stderr(int level, const char *line) in _lwsl_emit_stderr() argument
298 fprintf(stderr, "%c%s%s%c[0m", 27, colours[m], line, 27); in _lwsl_emit_stderr()
300 fprintf(stderr, "%s", line); in _lwsl_emit_stderr()
304 lwsl_emit_stderr(int level, const char *line) in lwsl_emit_stderr() argument
306 _lwsl_emit_stderr(level, line); in lwsl_emit_stderr()
310 lwsl_emit_stderr_notimestamp(int level, const char *line) in lwsl_emit_stderr_notimestamp() argument
312 _lwsl_emit_stderr(level, line); in lwsl_emit_stderr_notimestamp()
322 lws_log_emit_cx_file(struct lws_log_cx *cx, int level, const char *line, in lws_log_emit_cx_file() argument
328 if (write(fd, line, (unsigne in lws_log_emit_cx_file()
578 char line[80], *p = line; lwsl_hexdump_level_cx() local
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dppucd.cpp115 // Select the next available line buffer. in readLine()
122 char *line=lines[lineIndex]; in readLine() local
123 *line=0; in readLine()
124 lineLimit=fieldLimit=line; in readLine()
126 char *result=fgets(line, sizeof(lines[0]), file); in readLine()
130 fprintf(stderr, "error reading preparsed UCD before line %ld\n", (long)lineNumber); in readLine()
136 if(*line=='#') { in readLine()
137 fieldLimit=strchr(line, 0); in readLine()
142 char *limit=strchr(line, 0); in readLine()
143 while(line<limi in readLine()
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Dppucd.cpp115 // Select the next available line buffer. in readLine()
122 char *line=lines[lineIndex]; in readLine() local
123 *line=0; in readLine()
124 lineLimit=fieldLimit=line; in readLine()
126 char *result=fgets(line, sizeof(lines[0]), file); in readLine()
130 fprintf(stderr, "error reading preparsed UCD before line %ld\n", (long)lineNumber); in readLine()
136 if(*line=='#') { in readLine()
137 fieldLimit=strchr(line, 0); in readLine()
142 char *limit=strchr(line, 0); in readLine()
143 while(line<limi in readLine()
[all...]
/third_party/openssl/test/testutil/
H A Dformat_output.c40 int line, const char *type, in test_fail_string_common()
52 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_string_common()
129 int line, const char *type, in test_fail_string_message()
134 test_fail_string_common(prefix, file, line, type, left, right, op, in test_fail_string_message()
168 * Constants to define the number of bytes to display per line and the number
177 * Output the header line for the bignum
267 int line, const char *type, in test_fail_bignum_common()
281 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_bignum_common()
368 int line, const char *type, in test_fail_bignum_message()
373 test_fail_bignum_common(prefix, file, line, typ in test_fail_bignum_message()
39 test_fail_string_common(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *m1, size_t l1, const char *m2, size_t l2) test_fail_string_common() argument
128 test_fail_string_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *m1, size_t l1, const char *m2, size_t l2) test_fail_string_message() argument
266 test_fail_bignum_common(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const BIGNUM *bn1, const BIGNUM *bn2) test_fail_bignum_common() argument
367 test_fail_bignum_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const BIGNUM *bn1, const BIGNUM *bn2) test_fail_bignum_message() argument
377 test_fail_bignum_mono_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const BIGNUM *bn) test_fail_bignum_mono_message() argument
424 test_fail_memory_common(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const unsigned char *m1, size_t l1, const unsigned char *m2, size_t l2) test_fail_memory_common() argument
519 test_fail_memory_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const unsigned char *m1, size_t l1, const unsigned char *m2, size_t l2) test_fail_memory_message() argument
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dppucd.cpp108 // Select the next available line buffer. in readLine()
115 char *line=lines[lineIndex]; in readLine() local
116 *line=0; in readLine()
117 lineLimit=fieldLimit=line; in readLine()
119 char *result=fgets(line, sizeof(lines[0]), file); in readLine()
123 fprintf(stderr, "error reading preparsed UCD before line %ld\n", (long)lineNumber); in readLine()
129 if(*line=='#') { in readLine()
130 fieldLimit=strchr(line, 0); in readLine()
135 char *limit=strchr(line, 0); in readLine()
136 while(line<limi in readLine()
[all...]
/third_party/python/Lib/test/
H A Dtest_linecache.py60 for index, line in enumerate(fp):
61 if not line.endswith('\n'):
62 line += '\n'
65 self.assertEqual(line, cached_line)
105 # Bad values for line number should return an empty string
120 for index, line in enumerate(file):
121 self.assertEqual(line, getline(filename, index + 1))
163 for index, line in enumerate(source):
164 self.assertEqual(line, getline(source_name, index + 1))
165 source_list.append(line)
[all...]
/third_party/elfutils/libdw/
H A Ddwarf_lineepiloguebegin.c38 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp) in dwarf_lineepiloguebegin() argument
40 if (line == NULL) in dwarf_lineepiloguebegin()
43 *flagp = line->epilogue_begin; in dwarf_lineepiloguebegin()

Completed in 17 milliseconds

1...<<41424344454647484950>>...226