/kernel/linux/linux-6.6/arch/arm64/lib/ |
H A D | xor-neon.c | 20 long lines = bytes / (sizeof(uint64x2_t) * 4); in xor_arm64_neon_2() local 37 } while (--lines > 0); in xor_arm64_neon_2() 49 long lines = bytes / (sizeof(uint64x2_t) * 4); in xor_arm64_neon_3() local 73 } while (--lines > 0); in xor_arm64_neon_3() 87 long lines = bytes / (sizeof(uint64x2_t) * 4); in xor_arm64_neon_4() local 118 } while (--lines > 0); in xor_arm64_neon_4() 134 long lines = bytes / (sizeof(uint64x2_t) * 4); in xor_arm64_neon_5() local 172 } while (--lines > 0); in xor_arm64_neon_5() 204 long lines = bytes / (sizeof(uint64x2_t) * 4); in xor_arm64_eor3_3() local 226 } while (--lines > in xor_arm64_eor3_3() 241 long lines = bytes / (sizeof(uint64x2_t) * 4); xor_arm64_eor3_4() local 287 long lines = bytes / (sizeof(uint64x2_t) * 4); xor_arm64_eor3_5() local [all...] |
/third_party/backends/backend/ |
H A D | epsonds-ops.c | 235 s->params.lines = in eds_init_parameters() 246 s->params.pixels_per_line, s->params.lines, dpi); in eds_init_parameters() 257 s->params.pixels_per_line, s->params.lines, dpi); in eds_init_parameters() 298 * If (s->top + s->params.lines) is larger than the max scan area, reset in eds_init_parameters() 299 * the number of scan lines: in eds_init_parameters() 304 (s->params.lines + s->top)) { in eds_init_parameters() 305 s->params.lines = in eds_init_parameters() 310 if (s->params.lines <= 0) { in eds_init_parameters() 311 DBG(1, "wrong number of lines: %d\n", s->params.lines); in eds_init_parameters() 323 int lines, available; eds_copy_image_from_ring() local [all...] |
/third_party/icu/icu4c/source/test/perf/normperf/ |
H A D | normperf.h | 37 ULine* lines; member in QuickCheckPerfFunction 53 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status); in call() 57 retVal = (*fn)(lines[i].name,-1,mode, options, status); in call() 74 totalChars+= lines[i].len; in getOperationsPerIteration() 83 lines = srcLines; in QuickCheckPerfFunction() 93 lines = NULL; in QuickCheckPerfFunction() 106 ULine* lines; member in NormPerfFunction 124 retVal = (*fn)(lines[i].name,lines[ in call() [all...] |
/third_party/node/lib/internal/test_runner/ |
H A D | coverage.js | 98 // Split the file source into lines. Make sure the lines maintain their 122 const lines = ArrayPrototypeMap(linesWithBreaks, (line, i) => { 165 mapRangeToLines(range, lines); 169 range.ignoredLines === range.lines.length) { 180 if (range.count !== 0 || range.ignoredLines === range.lines.length) { 191 for (let j = 0; j < lines.length; ++j) { 192 const line = lines[j]; 204 totalLineCount: lines.length, 210 coveredLinePercent: toPercentage(coveredCnt, lines [all...] |
/third_party/python/Lib/email/ |
H A D | feedparser.py | 58 # A deque of full, pushed lines 106 # No new complete lines, wait for more. 109 # Crack into lines, preserving the linesep characters. 123 def pushlines(self, lines): 124 self._lines.extend(lines) 245 # remaining lines in the input are thrown into the message body. 247 lines = [] 255 lines.append(line) 256 self._cur.set_payload(EMPTYSTRING.join(lines)) 316 lines [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_format_helper.c | 41 unsigned int y, lines = clip->y2 - clip->y1; in drm_fb_memcpy() local 44 for (y = 0; y < lines; y++) { in drm_fb_memcpy() 69 unsigned int y, lines = clip->y2 - clip->y1; in drm_fb_memcpy_dstclip() local 73 for (y = 0; y < lines; y++) { in drm_fb_memcpy_dstclip() 176 unsigned y, lines = clip->y2 - clip->y1; in drm_fb_xrgb8888_to_rgb565() local 188 for (y = 0; y < lines; y++) { in drm_fb_xrgb8888_to_rgb565() 220 unsigned y, lines = clip->y2 - clip->y1; in drm_fb_xrgb8888_to_rgb565_dstclip() local 229 for (y = 0; y < lines; y++) { in drm_fb_xrgb8888_to_rgb565_dstclip() 272 unsigned y, lines = clip->y2 - clip->y1; in drm_fb_xrgb8888_to_rgb888_dstclip() local 281 for (y = 0; y < lines; in drm_fb_xrgb8888_to_rgb888_dstclip() [all...] |
/third_party/python/Tools/scripts/ |
H A D | generate_global_objects.py | 126 def iter_to_marker(lines, marker): 127 for line in lines: 194 lines = iter(orig.rstrip().splitlines()) 195 before = '\n'.join(iter_to_marker(lines, START)) 196 for _ in iter_to_marker(lines, END): 198 after = '\n'.join(lines) 245 lines = iter(orig.rstrip().splitlines()) 246 before = '\n'.join(iter_to_marker(lines, START)) 247 for _ in iter_to_marker(lines, END): 249 after = '\n'.join(lines) [all...] |
H A D | nm2def.py | 46 lines = pipe.readlines() 47 lines = [s.strip() for s in lines] 49 for line in lines:
|
/third_party/icu/tools/colprobe/ |
H A D | colprobe.cpp | 454 //fprintf(stderr, "lines should be ordered!"); in probeStrength() 469 // This function tries to probe the set of lines 472 analyzeStrength(Line **lines, int32_t size, CompareFn comparer) { in analyzeStrength() argument 476 Line **prevLine = lines+i-1; in analyzeStrength() 477 Line **currLine = lines+i; in analyzeStrength() 526 void printOrdering(Line **lines, int32_t size, UFILE *file, UBool useLinks = false) { in printOrdering() argument 529 //printLine(*lines); in printOrdering() 530 //escapeALine(*lines); // Print first line in printOrdering() 533 Line *previous = *lines; in printOrdering() 545 line = *(lines in printOrdering() 567 setIndexes(Line **lines, int32_t size) setIndexes() argument 797 analyzeContractions(Line** lines, int32_t size, CompareFn comparer) analyzeContractions() argument 894 detectContractions(Line **gLines, Line *lines, int32_t size, CompareFn comparer) detectContractions() argument 1185 constructAndAnalyze(Line **gLines, Line *lines, int32_t size, CompareFn comparer) constructAndAnalyze() argument 1257 Line lines[size]; checkCaseOrdering() local 1300 Line lines[size]; checkSecondaryOrdering() local 1549 Line *lines = new Line[exemplarSetSize]; processCollator() local [all...] |
/kernel/linux/linux-5.10/arch/um/drivers/ |
H A D | line.c | 353 void close_lines(struct line *lines, int nlines) in close_lines() argument 358 close_chan(&lines[i]); in close_lines() 361 int setup_one_line(struct line *lines, int n, char *init, in setup_one_line() argument 364 struct line *line = &lines[n]; in setup_one_line() 415 * @lines contains the array (of size @num) to modify; 453 int line_config(struct line *lines, unsigned int num, char *str, in line_config() argument 474 return setup_one_line(lines, n, end, opts, error_out); in line_config() 477 int line_get_config(char *name, struct line *lines, unsigned int num, char *str, in line_get_config() argument 495 line = &lines[dev]; in line_get_config() 527 int line_remove(struct line *lines, unsigne argument 536 register_lines(struct line_driver *line_driver, const struct tty_operations *ops, struct line *lines, int nlines) register_lines() argument [all...] |
/kernel/linux/linux-6.6/arch/um/drivers/ |
H A D | line.c | 358 void close_lines(struct line *lines, int nlines) in close_lines() argument 363 close_chan(&lines[i]); in close_lines() 366 int setup_one_line(struct line *lines, int n, char *init, in setup_one_line() argument 369 struct line *line = &lines[n]; in setup_one_line() 420 * @lines contains the array (of size @num) to modify; 458 int line_config(struct line *lines, unsigned int num, char *str, in line_config() argument 479 return setup_one_line(lines, n, end, opts, error_out); in line_config() 482 int line_get_config(char *name, struct line *lines, unsigned int num, char *str, in line_get_config() argument 500 line = &lines[dev]; in line_get_config() 532 int line_remove(struct line *lines, unsigne argument 541 register_lines(struct line_driver *line_driver, const struct tty_operations *ops, struct line *lines, int nlines) register_lines() argument [all...] |
/kernel/linux/linux-5.10/tools/gpio/ |
H A D | gpio-utils.h | 27 int gpiotools_request_linehandle(const char *device_name, unsigned int *lines, 34 unsigned int *lines, 43 int gpiotools_gets(const char *device_name, unsigned int *lines, 47 int gpiotools_sets(const char *device_name, unsigned int *lines,
|
/third_party/python/Lib/ |
H A D | inspect.py | 873 lines = doc.expandtabs().split('\n') 877 # Find minimum indentation of any non-blank lines after first line. 879 for line in lines[1:]: 885 if lines: 886 lines[0] = lines[0].lstrip() 888 for i in range(1, len(lines)): lines[i] = lines[i][margin:] 889 # Remove any trailing or leading blank lines [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/cx25821/ |
H A D | cx25821-core.c | 428 unsigned int i, lines; in cx25821_sram_channel_setup() local 441 lines = ch->fifo_size / bpl; in cx25821_sram_channel_setup() 443 if (lines > 4) in cx25821_sram_channel_setup() 444 lines = 4; in cx25821_sram_channel_setup() 446 BUG_ON(lines < 2); in cx25821_sram_channel_setup() 453 for (i = 0; i < lines; i++) { in cx25821_sram_channel_setup() 472 cx_write(ch->cmds_start + 12, (lines * 16) >> 3); in cx25821_sram_channel_setup() 486 cx_write(ch->cnt2_reg, (lines * 16) >> 3); in cx25821_sram_channel_setup() 496 unsigned int i, lines; in cx25821_sram_channel_setup_audio() local 509 lines in cx25821_sram_channel_setup_audio() 995 cx25821_risc_field(__le32 * rp, struct scatterlist *sglist, unsigned int offset, u32 sync_line, unsigned int bpl, unsigned int padding, unsigned int lines, bool jump) cx25821_risc_field() argument 1057 cx25821_risc_buffer(struct pci_dev *pci, struct cx25821_riscmem *risc, struct scatterlist *sglist, unsigned int top_offset, unsigned int bottom_offset, unsigned int bpl, unsigned int padding, unsigned int lines) cx25821_risc_buffer() argument 1106 cx25821_risc_field_audio(__le32 * rp, struct scatterlist *sglist, unsigned int offset, u32 sync_line, unsigned int bpl, unsigned int padding, unsigned int lines, unsigned int lpi) cx25821_risc_field_audio() argument 1167 cx25821_risc_databuffer_audio(struct pci_dev *pci, struct cx25821_riscmem *risc, struct scatterlist *sglist, unsigned int bpl, unsigned int lines, unsigned int lpi) cx25821_risc_databuffer_audio() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/cx25821/ |
H A D | cx25821-core.c | 421 unsigned int i, lines; in cx25821_sram_channel_setup() local 434 lines = ch->fifo_size / bpl; in cx25821_sram_channel_setup() 436 if (lines > 4) in cx25821_sram_channel_setup() 437 lines = 4; in cx25821_sram_channel_setup() 439 BUG_ON(lines < 2); in cx25821_sram_channel_setup() 446 for (i = 0; i < lines; i++) { in cx25821_sram_channel_setup() 465 cx_write(ch->cmds_start + 12, (lines * 16) >> 3); in cx25821_sram_channel_setup() 479 cx_write(ch->cnt2_reg, (lines * 16) >> 3); in cx25821_sram_channel_setup() 489 unsigned int i, lines; in cx25821_sram_channel_setup_audio() local 502 lines in cx25821_sram_channel_setup_audio() 988 cx25821_risc_field(__le32 * rp, struct scatterlist *sglist, unsigned int offset, u32 sync_line, unsigned int bpl, unsigned int padding, unsigned int lines, bool jump) cx25821_risc_field() argument 1050 cx25821_risc_buffer(struct pci_dev *pci, struct cx25821_riscmem *risc, struct scatterlist *sglist, unsigned int top_offset, unsigned int bottom_offset, unsigned int bpl, unsigned int padding, unsigned int lines) cx25821_risc_buffer() argument 1099 cx25821_risc_field_audio(__le32 * rp, struct scatterlist *sglist, unsigned int offset, u32 sync_line, unsigned int bpl, unsigned int padding, unsigned int lines, unsigned int lpi) cx25821_risc_field_audio() argument 1160 cx25821_risc_databuffer_audio(struct pci_dev *pci, struct cx25821_riscmem *risc, struct scatterlist *sglist, unsigned int bpl, unsigned int lines, unsigned int lpi) cx25821_risc_databuffer_audio() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/ivtv/ |
H A D | ivtv-vbi.c | 174 static void copy_vbi_data(struct ivtv *itv, int lines, u32 pts_stamp) in copy_vbi_data() argument 190 for (i = 0; i < lines; i++) { in copy_vbi_data() 211 /* All lines are used, so there is no space for the linemask in copy_vbi_data() 302 u32 lines = itv->vbi.count; in compress_raw_buf() local 309 for (i = 0; i < lines; i++) { in compress_raw_buf() 319 return lines * (line_size - 4); in compress_raw_buf() 330 unsigned lines = 0; in compress_sliced_buf() local 351 if (vbi.type && !(lines & (1 << vbi.line))) { in compress_sliced_buf() 352 lines |= 1 << vbi.line; in compress_sliced_buf() 393 int lines; in ivtv_process_vbi_data() local [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/ivtv/ |
H A D | ivtv-vbi.c | 174 static void copy_vbi_data(struct ivtv *itv, int lines, u32 pts_stamp) in copy_vbi_data() argument 190 for (i = 0; i < lines; i++) { in copy_vbi_data() 211 /* All lines are used, so there is no space for the linemask in copy_vbi_data() 302 u32 lines = itv->vbi.count; in compress_raw_buf() local 309 for (i = 0; i < lines; i++) { in compress_raw_buf() 319 return lines * (line_size - 4); in compress_raw_buf() 330 unsigned lines = 0; in compress_sliced_buf() local 351 if (vbi.type && !(lines & (1 << vbi.line))) { in compress_sliced_buf() 352 lines |= 1 << vbi.line; in compress_sliced_buf() 393 int lines; in ivtv_process_vbi_data() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/parser/ |
H A D | parser.go | 74 func (t Token) Text(lines []string) string { return t.Range.Text(lines) } 84 // Text returns the text for the given Range in the provided lines. 85 func (r Range) Text(lines []string) string { 87 if sl < 0 || sc < 0 || sl > len(lines) || sc > len(lines[sl]) { 91 if el < 0 || ec < 0 || el > len(lines) || ec > len(lines[sl]) { 97 sb.WriteString(lines[sl][sc:]) 99 sb.WriteString(lines[ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/parser/ |
H A D | parser.go | 74 func (t Token) Text(lines []string) string { return t.Range.Text(lines) } 84 // Text returns the text for the given Range in the provided lines. 85 func (r Range) Text(lines []string) string { 87 if sl < 0 || sc < 0 || sl > len(lines) || sc > len(lines[sl]) { 91 if el < 0 || ec < 0 || el > len(lines) || ec > len(lines[sl]) { 97 sb.WriteString(lines[sl][sc:]) 99 sb.WriteString(lines[ [all...] |
/third_party/skia/modules/canvaskit/npm_build/ |
H A D | textapi_utils.js | 107 function lines_pos_to_index(lines, x, y) { 108 if (y < lines[0].top) { 111 for (const l of lines) { 116 return lines[lines.length - 1].textRange.last; 138 function lines_index_to_line_index(lines, index) { 140 for (const l of lines) { 146 return lines.length-1; 149 function lines_index_to_line(lines, index) { 150 return lines[lines_index_to_line_inde [all...] |
/third_party/spirv-tools/utils/vscode/src/parser/ |
H A D | parser.go | 74 func (t Token) Text(lines []string) string { return t.Range.Text(lines) } 84 // Text returns the text for the given Range in the provided lines. 85 func (r Range) Text(lines []string) string { 87 if sl < 0 || sc < 0 || sl > len(lines) || sc > len(lines[sl]) { 91 if el < 0 || ec < 0 || el > len(lines) || ec > len(lines[sl]) { 97 sb.WriteString(lines[sl][sc:]) 99 sb.WriteString(lines[ [all...] |
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | kernel_abi.py | 112 lines = self.runCmd(cmd, shell=True, cwd=cwd, env=shell_env) 113 nodeList = self.nestedParse(lines, self.arguments[0]) 140 def nestedParse(self, lines, fname): 146 for l in lines.split("\n"): 148 lines = code_block + "\n\n" 155 for line in lines.split("\n"): 169 # sphinx counts lines from 0 174 kernellog.info(self.state.document.settings.env.app, "%s: parsed %i lines" % (fname, n))
|
/third_party/cJSON/tests/unity/auto/ |
H A D | unity_test_summary.py | 31 lines = list(map(lambda line: line.rstrip(), open(result_file, "r").read().split('\n'))) 32 if len(lines) == 0: 35 details = self.get_details(result_file, lines) 40 tests,failures,ignored = self.parse_test_summary('\n'.join(lines)) 85 def get_details(self, result_file, lines): 87 for line in lines:
|
/third_party/node/deps/openssl/openssl/crypto/ts/ |
H A D | ts_rsp_print.c | 73 int i, lines = 0; in TS_STATUS_INFO_print_bio() local 94 lines = ts_status_map_print(bio, failure_map, a->failure_info); in TS_STATUS_INFO_print_bio() 95 if (lines == 0) in TS_STATUS_INFO_print_bio() 105 int lines = 0; in ts_status_map_print() local 109 if (++lines > 1) in ts_status_map_print() 115 return lines; in ts_status_map_print()
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | __main__.py | 98 def show_file(filename, lines): 99 for line in lines: 103 def show_file(filename, lines): 104 for line in lines: 116 lines = _iter_preprocessed(filename, **kwargs) 117 show_file(filename, lines)
|