Home
last modified time | relevance | path

Searched full:line (Results 1 – 25 of 8091) sorted by relevance

12345678910>>...324

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/
H A Dlibc.info-16686 * cfgetispeed: (libc)Line Speed.
687 * cfgetospeed: (libc)Line Speed.
689 * cfsetispeed: (libc)Line Speed.
690 * cfsetospeed: (libc)Line Speed.
691 * cfsetspeed: (libc)Line Speed.
954 * fgets: (libc)Line Input.
955 * fgets_unlocked: (libc)Line Input.
958 * fgetws: (libc)Line Input.
959 * fgetws_unlocked: (libc)Line Input.
1087 * getdelim: (libc)Line Input.
[all …]
H A Dlibc.info-17686 * cfgetispeed: (libc)Line Speed.
687 * cfgetospeed: (libc)Line Speed.
689 * cfsetispeed: (libc)Line Speed.
690 * cfsetospeed: (libc)Line Speed.
691 * cfsetspeed: (libc)Line Speed.
954 * fgets: (libc)Line Input.
955 * fgets_unlocked: (libc)Line Input.
958 * fgetws: (libc)Line Input.
959 * fgetws_unlocked: (libc)Line Input.
1087 * getdelim: (libc)Line Input.
[all …]
H A Dlibc.info-15686 * cfgetispeed: (libc)Line Speed.
687 * cfgetospeed: (libc)Line Speed.
689 * cfsetispeed: (libc)Line Speed.
690 * cfsetospeed: (libc)Line Speed.
691 * cfsetspeed: (libc)Line Speed.
954 * fgets: (libc)Line Input.
955 * fgets_unlocked: (libc)Line Input.
958 * fgetws: (libc)Line Input.
959 * fgetws_unlocked: (libc)Line Input.
1087 * getdelim: (libc)Line Input.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/
H A Dlibc.info-16686 * cfgetispeed: (libc)Line Speed.
687 * cfgetospeed: (libc)Line Speed.
689 * cfsetispeed: (libc)Line Speed.
690 * cfsetospeed: (libc)Line Speed.
691 * cfsetspeed: (libc)Line Speed.
954 * fgets: (libc)Line Input.
955 * fgets_unlocked: (libc)Line Input.
958 * fgetws: (libc)Line Input.
959 * fgetws_unlocked: (libc)Line Input.
1087 * getdelim: (libc)Line Input.
[all …]
H A Dlibc.info-17686 * cfgetispeed: (libc)Line Speed.
687 * cfgetospeed: (libc)Line Speed.
689 * cfsetispeed: (libc)Line Speed.
690 * cfsetospeed: (libc)Line Speed.
691 * cfsetspeed: (libc)Line Speed.
954 * fgets: (libc)Line Input.
955 * fgets_unlocked: (libc)Line Input.
958 * fgetws: (libc)Line Input.
959 * fgetws_unlocked: (libc)Line Input.
1087 * getdelim: (libc)Line Input.
[all …]
H A Dlibc.info-15686 * cfgetispeed: (libc)Line Speed.
687 * cfgetospeed: (libc)Line Speed.
689 * cfsetispeed: (libc)Line Speed.
690 * cfsetospeed: (libc)Line Speed.
691 * cfsetspeed: (libc)Line Speed.
954 * fgets: (libc)Line Input.
955 * fgets_unlocked: (libc)Line Input.
958 * fgetws: (libc)Line Input.
959 * fgetws_unlocked: (libc)Line Input.
1087 * getdelim: (libc)Line Input.
[all …]
/OK3568_Linux_fs/kernel/arch/um/drivers/
H A Dline.c22 struct line *line = chan->line; in line_interrupt() local
24 if (line) in line_interrupt()
25 chan_interrupt(line, irq); in line_interrupt()
31 * Returns the free space inside the ring buffer of this line.
33 * Should be called while holding line->lock (this does not modify data).
35 static int write_room(struct line *line) in write_room() argument
39 if (line->buffer == NULL) in write_room()
43 n = line->head - line->tail; in write_room()
52 struct line *line = tty->driver_data; in line_write_room() local
56 spin_lock_irqsave(&line->lock, flags); in line_write_room()
[all …]
/OK3568_Linux_fs/kernel/drivers/lightnvm/
H A Dpblk-core.c36 struct pblk_line *line; in pblk_line_mark_bb() local
39 line = pblk_ppa_to_line(pblk, *ppa); in pblk_line_mark_bb()
42 pblk_err(pblk, "failed to mark bb, line:%d, pos:%d\n", in pblk_line_mark_bb()
43 line->id, pos); in pblk_line_mark_bb()
50 static void pblk_mark_bb(struct pblk *pblk, struct pblk_line *line, in pblk_mark_bb() argument
58 pblk_debug(pblk, "erase failed: line:%d, pos:%d\n", line->id, pos); in pblk_mark_bb()
61 atomic_dec(&line->blk_in_line); in pblk_mark_bb()
62 if (test_and_set_bit(pos, line->blk_bitmap)) in pblk_mark_bb()
63 pblk_err(pblk, "attempted to erase bb: line:%d, pos:%d\n", in pblk_mark_bb()
64 line->id, pos); in pblk_mark_bb()
[all …]
H A Dpblk-recovery.c18 * following the line sequence ID.
38 static int pblk_recov_l2p_from_emeta(struct pblk *pblk, struct pblk_line *line) in pblk_recov_l2p_from_emeta() argument
43 struct pblk_emeta *emeta = line->emeta; in pblk_recov_l2p_from_emeta()
54 data_start = pblk_line_smeta_start(pblk, line) + lm->smeta_sec; in pblk_recov_l2p_from_emeta()
55 data_end = line->emeta_ssec; in pblk_recov_l2p_from_emeta()
62 ppa = addr_to_gen_ppa(pblk, i, line->id); in pblk_recov_l2p_from_emeta()
66 if (test_bit(pos, line->blk_bitmap)) in pblk_recov_l2p_from_emeta()
70 spin_lock(&line->lock); in pblk_recov_l2p_from_emeta()
71 if (test_and_set_bit(i, line->invalid_bitmap)) in pblk_recov_l2p_from_emeta()
74 le32_add_cpu(line->vsc, -1); in pblk_recov_l2p_from_emeta()
[all …]
H A Dpblk-gc.c50 kref_put(&gc_rq->line->ref, pblk_line_put); in pblk_gc_write()
62 void pblk_put_line_back(struct pblk *pblk, struct pblk_line *line) in pblk_put_line_back() argument
68 spin_lock(&line->lock); in pblk_put_line_back()
69 WARN_ON(line->state != PBLK_LINESTATE_GC); in pblk_put_line_back()
70 line->state = PBLK_LINESTATE_CLOSED; in pblk_put_line_back()
71 trace_pblk_line_state(pblk_disk_name(pblk), line->id, in pblk_put_line_back()
72 line->state); in pblk_put_line_back()
76 * since right now current line is not on any of the in pblk_put_line_back()
79 line->gc_group = PBLK_LINEGC_NONE; in pblk_put_line_back()
80 move_list = pblk_line_gc_list(pblk, line); in pblk_put_line_back()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/contrib/
H A Doe-stylize.py226 def respect_rule0(line): argument
227 return line.lstrip() == line
230 def conformTo_rule0(line): argument
231 return line.lstrip()
234 # No spaces are allowed behind the line continuation symbol '\'
237 def respect_rule1(line): argument
238 if line.rstrip().endswith('\\'):
239 return line.endswith('\\')
244 def conformTo_rule1(line): argument
245 return line.rstrip()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/video/fonts/
H A Dqt_zh_CN.ts7 <location filename="../src/3rdparty/phonon/phonon/audiooutput.cpp" line="+375"/>
12 <location line="+13"/>
17 <location line="+3"/>
25 <location filename="../src/gui/widgets/qtabbar.cpp" line="+2251"/>
33 <location filename="../src/3rdparty/phonon/phonon/phononnamespace.cpp" line="+55"/>
38 <location line="+2"/>
43 <location line="+2"/>
48 <location line="+2"/>
53 <location line="+2"/>
58 <location line="+2"/>
[all …]
H A Dfilemanager_zh.ts7 <location filename="ui/frm_restore.ui" line="16"/>
12 <location filename="ui/frm_restore.ui" line="51"/>
20 <location filename="ui/frm_sysparm.ui" line="22"/>
25 <location filename="ui/frm_sysparm.ui" line="69"/>
30 <location filename="ui/frm_sysparm.ui" line="88"/>
35 <location filename="ui/frm_sysparm.ui" line="159"/>
40 <location filename="ui/frm_sysparm.ui" line="174"/>
45 <location filename="ui/frm_sysparm.ui" line="189"/>
50 <location filename="ui/frm_sysparm.ui" line="204"/>
55 <location filename="ui/frm_sysparm.ui" line="219"/>
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/
H A Dqt_zh_CN.ts7 <location filename="../src/3rdparty/phonon/phonon/audiooutput.cpp" line="+375"/>
12 <location line="+13"/>
17 <location line="+3"/>
25 <location filename="../src/gui/widgets/qtabbar.cpp" line="+2251"/>
33 <location filename="../src/3rdparty/phonon/phonon/phononnamespace.cpp" line="+55"/>
38 <location line="+2"/>
43 <location line="+2"/>
48 <location line="+2"/>
53 <location line="+2"/>
58 <location line="+2"/>
[all …]
H A Dfilemanager_zh.ts7 <location filename="ui/frm_restore.ui" line="16"/>
12 <location filename="ui/frm_restore.ui" line="51"/>
20 <location filename="ui/frm_sysparm.ui" line="22"/>
25 <location filename="ui/frm_sysparm.ui" line="69"/>
30 <location filename="ui/frm_sysparm.ui" line="88"/>
35 <location filename="ui/frm_sysparm.ui" line="159"/>
40 <location filename="ui/frm_sysparm.ui" line="174"/>
45 <location filename="ui/frm_sysparm.ui" line="189"/>
50 <location filename="ui/frm_sysparm.ui" line="204"/>
55 <location filename="ui/frm_sysparm.ui" line="219"/>
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/MediaUI/fonts/
H A Dqt_zh_CN.ts7 <location filename="../src/3rdparty/phonon/phonon/audiooutput.cpp" line="+375"/>
12 <location line="+13"/>
17 <location line="+3"/>
25 <location filename="../src/gui/widgets/qtabbar.cpp" line="+2251"/>
33 <location filename="../src/3rdparty/phonon/phonon/phononnamespace.cpp" line="+55"/>
38 <location line="+2"/>
43 <location line="+2"/>
48 <location line="+2"/>
53 <location line="+2"/>
58 <location line="+2"/>
[all …]
H A Dfilemanager_zh.ts7 <location filename="ui/frm_restore.ui" line="16"/>
12 <location filename="ui/frm_restore.ui" line="51"/>
20 <location filename="ui/frm_sysparm.ui" line="22"/>
25 <location filename="ui/frm_sysparm.ui" line="69"/>
30 <location filename="ui/frm_sysparm.ui" line="88"/>
35 <location filename="ui/frm_sysparm.ui" line="159"/>
40 <location filename="ui/frm_sysparm.ui" line="174"/>
45 <location filename="ui/frm_sysparm.ui" line="189"/>
50 <location filename="ui/frm_sysparm.ui" line="204"/>
55 <location filename="ui/frm_sysparm.ui" line="219"/>
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/music/fonts/
H A Dqt_zh_CN.ts7 <location filename="../src/3rdparty/phonon/phonon/audiooutput.cpp" line="+375"/>
12 <location line="+13"/>
17 <location line="+3"/>
25 <location filename="../src/gui/widgets/qtabbar.cpp" line="+2251"/>
33 <location filename="../src/3rdparty/phonon/phonon/phononnamespace.cpp" line="+55"/>
38 <location line="+2"/>
43 <location line="+2"/>
48 <location line="+2"/>
53 <location line="+2"/>
58 <location line="+2"/>
[all …]
H A Dfilemanager_zh.ts7 <location filename="ui/frm_restore.ui" line="16"/>
12 <location filename="ui/frm_restore.ui" line="51"/>
20 <location filename="ui/frm_sysparm.ui" line="22"/>
25 <location filename="ui/frm_sysparm.ui" line="69"/>
30 <location filename="ui/frm_sysparm.ui" line="88"/>
35 <location filename="ui/frm_sysparm.ui" line="159"/>
40 <location filename="ui/frm_sysparm.ui" line="174"/>
45 <location filename="ui/frm_sysparm.ui" line="189"/>
50 <location filename="ui/frm_sysparm.ui" line="204"/>
55 <location filename="ui/frm_sysparm.ui" line="219"/>
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dbfd.info257 linker has command-line switches to allow users to throw it away.
281 mapping between symbols, source line numbers, and addresses in the
283 symbol information. Each symbol with an associated list of line
285 a line number list consists of a pointer to the symbol, which
286 allows finding out the address of the function whose line number is
288 into the section and line numbers. Any format which can simply
399 /* BFD has line number information (basically used for F_LNNO in a
1033 with information on the BFD version, BFD source file and line. If this
1250 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1252 (abfd, syms, sec, off, file, func, line, NULL))
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dbfd.info257 linker has command-line switches to allow users to throw it away.
281 mapping between symbols, source line numbers, and addresses in the
283 symbol information. Each symbol with an associated list of line
285 a line number list consists of a pointer to the symbol, which
286 allows finding out the address of the function whose line number is
288 into the section and line numbers. Any format which can simply
399 /* BFD has line number information (basically used for F_LNNO in a
1033 with information on the BFD version, BFD source file and line. If this
1250 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1252 (abfd, syms, sec, off, file, func, line, NULL))
[all …]
/OK3568_Linux_fs/kernel/android/
H A Dabi_gki_aarch64.xml6944 …8' is-struct='yes' visibility='default' filepath='include/linux/skbuff.h' line='481' column='1' id…
6946 …' type-id='273a7d34' visibility='default' filepath='include/linux/skbuff.h' line='482' column='1'/>
6949 …' type-id='f0981eeb' visibility='default' filepath='include/linux/skbuff.h' line='483' column='1'/>
6953 …584' is-struct='yes' visibility='default' filepath='net/core/gro_cells.c' line='7' column='1' id='…
6955 …skbs' type-id='e61c85d0' visibility='default' filepath='net/core/gro_cells.c' line='8' column='1'/>
6958 …napi' type-id='291e3bb5' visibility='default' filepath='net/core/gro_cells.c' line='9' column='1'/>
6961 …s-struct='yes' visibility='default' filepath='include/linux/jump_label.h' line='87' column='1' id=…
6963 …ype-id='49178f86' visibility='default' filepath='include/linux/jump_label.h' line='88' column='1'/>
6966 …pe-id='7792d5a2' visibility='default' filepath='include/linux/jump_label.h' line='102' column='1'/>
6970 …e='genpool_algo_t' type-id='f54ae583' filepath='include/linux/genalloc.h' line='48' column='1' id=…
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dconvert-srcuri.py22 def matchline(line): argument
23 if "MIRROR" in line or ".*" in line or "GNOME_GIT" in line:
34 for line in old_file:
35 … if ("git://" in line or "gitsm://" in line) and "branch=" not in line and matchline(line):
36 if line.endswith('"\n'):
37 line = line.replace('"\n', ';branch=master"\n')
38 elif re.search('\s*\\\\$', line):
39 line = re.sub('\s*\\\\$', ';branch=master \\\\', line)
41 …if ("git://" in line or "gitsm://" in line) and "github.com" in line and "protocol=https" not in l…
42 if "protocol=git" in line:
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_self_test.c115 /* lines start from 2 since line 1 is heading in csv */
118 /*line 2*/{(0x3), 1, 0x2114,
124 /*line 3*/{(0x3), 1, 0x2114,
130 /*line 4*/{(0x3), 1, 0x2120,
136 /*line 5*/{(0x3), 1, 0x2814,
142 /*line 6*/{(0x2), 1, 0x281c,
148 /*line 7*/{(0x2), 1, 0x2820,
154 /*line 8*/{(0x3), 1, PXP2_REG_PGL_EXP_ROM2,
160 /*line 9*/{(0x3), 2, 0x212c,
166 /*line 10*/{(0x1C), 1, 0x2104,
[all …]
/OK3568_Linux_fs/u-boot/tools/patman/
H A Dpatchstream.py21 # Lines which are allowed after a TEST= line
50 STATE_PATCH_SUBJECT = 1 # In patch subject (first line of log for a commit)
52 STATE_DIFFS = 3 # In the diff part (past --- line)
63 self.skip_blank = False # True to skip a single blank line
64 self.found_test = False # Found a TEST= line
67 self.linenum = 1 # Output line number we are up to
76 self.signoff = [] # Contents of signoff line
79 def AddToSeries(self, line, name, value): argument
86 line: Source line containing tag (useful for debug/error messages)
94 self.series.AddTag(self.commit, line, name, value)
[all …]

12345678910>>...324