Home
last modified time | relevance | path

Searched full:fi (Results 1 – 25 of 5694) sorted by relevance

12345678910>>...228

/external/python/cpython2/Lib/test/
Dtest_fileinput.py86 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
87 lines = list(fi)
88 fi.close()
92 self.assertEqual(fi.lineno(), 31)
93 self.assertEqual(fi.filename(), t4)
97 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
100 s = fi.readline()
101 self.assertEqual(fi.filename(), t2)
102 self.assertEqual(fi.lineno(), 21)
103 self.assertEqual(fi.filelineno(), 6)
[all …]
/external/toybox/toys/pending/
Dlsof.c51 struct file_info *fi = data; in print_info() local
58 if (TT.sought_files[i].st_dev==fi->st_dev) in print_info()
59 if (TT.sought_files[i].st_ino==fi->st_ino) break; in print_info()
65 if (fi->pi.pid != TT.last_shown_pid) in print_info()
66 printf("%d\n", TT.last_shown_pid = fi->pi.pid); in print_info()
76 fi->pi.cmd, fi->pi.pid, getusername(fi->pi.uid), in print_info()
77 fi->fd, fi->rw, fi->locks, fi->type, fi->device, fi->size_off, in print_info()
78 fi->node, fi->name); in print_info()
88 static void fill_flags(struct file_info *fi) in fill_flags() argument
94 snprintf(toybuf, sizeof(toybuf), "/proc/%d/fdinfo/%s", fi->pi.pid, fi->fd); in fill_flags()
[all …]
/external/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
DNVPTXTargetStreamer.cpp42 static bool isDwarfSection(const MCObjectFileInfo *FI, in isDwarfSection() argument
49 return Section == FI->getDwarfAbbrevSection() || in isDwarfSection()
50 Section == FI->getDwarfInfoSection() || in isDwarfSection()
51 Section == FI->getDwarfMacinfoSection() || in isDwarfSection()
52 Section == FI->getDwarfFrameSection() || in isDwarfSection()
53 Section == FI->getDwarfAddrSection() || in isDwarfSection()
54 Section == FI->getDwarfRangesSection() || in isDwarfSection()
55 Section == FI->getDwarfARangesSection() || in isDwarfSection()
56 Section == FI->getDwarfLocSection() || in isDwarfSection()
57 Section == FI->getDwarfStrSection() || in isDwarfSection()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/MCTargetDesc/
DNVPTXTargetStreamer.cpp42 static bool isDwarfSection(const MCObjectFileInfo *FI, in isDwarfSection() argument
49 return Section == FI->getDwarfAbbrevSection() || in isDwarfSection()
50 Section == FI->getDwarfInfoSection() || in isDwarfSection()
51 Section == FI->getDwarfMacinfoSection() || in isDwarfSection()
52 Section == FI->getDwarfFrameSection() || in isDwarfSection()
53 Section == FI->getDwarfAddrSection() || in isDwarfSection()
54 Section == FI->getDwarfRangesSection() || in isDwarfSection()
55 Section == FI->getDwarfARangesSection() || in isDwarfSection()
56 Section == FI->getDwarfLocSection() || in isDwarfSection()
57 Section == FI->getDwarfStrSection() || in isDwarfSection()
[all …]
/external/python/cpython3/Lib/test/
Dtest_fileinput.py95 fi = FileInput(files=(t1, t2, t3, t4))
96 lines = list(fi)
97 fi.close()
101 self.assertEqual(fi.lineno(), 31)
102 self.assertEqual(fi.filename(), t4)
106 fi = FileInput(files=(t1, t2, t3, t4))
109 s = fi.readline()
110 self.assertEqual(fi.filename(), t2)
111 self.assertEqual(fi.lineno(), 21)
112 self.assertEqual(fi.filelineno(), 6)
[all …]
/external/ltp/testcases/lib/
Dtst_test.sh33 fi
38 fi
39 fi
45 fi
50 fi
54 fi
58 fi
62 fi
66 fi
70 fi
[all …]
Dtest.sh67 fi
89 fi
98 fi
106 fi
113 fi
117 fi
122 fi
131 fi
148 fi
160 fi
[all …]
/external/libxml2/
Dconfigure.ac30 fi
37 fi
44 fi
45 fi
46 fi
47 fi
93 fi
168 fi
204 fi
212 fi
[all …]
/external/linux-kselftest/tools/testing/selftests/firmware/
Dfw_lib.sh32 fi
41 fi
46 fi
54 fi
57 fi
58 fi
71 fi
79 fi
83 fi
88 fi
[all …]
/external/freetype/src/tools/
Dtest_afm.c9 void dump_fontinfo( AFM_FontInfo fi ) in dump_fontinfo() argument
15 ( fi->IsCIDFont ) ? "" : "non-" ); in dump_fontinfo()
17 printf( "FontBBox: %.2f %.2f %.2f %.2f\n", fi->FontBBox.xMin / 65536., in dump_fontinfo()
18 fi->FontBBox.yMin / 65536., in dump_fontinfo()
19 fi->FontBBox.xMax / 65536., in dump_fontinfo()
20 fi->FontBBox.yMax / 65536. ); in dump_fontinfo()
21 printf( "Ascender: %.2f\n", fi->Ascender / 65536. ); in dump_fontinfo()
22 printf( "Descender: %.2f\n\n", fi->Descender / 65536. ); in dump_fontinfo()
24 if ( fi->NumTrackKern ) in dump_fontinfo()
26 fi->NumTrackKern ); in dump_fontinfo()
[all …]
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopFlatten.cpp193 static bool checkPHIs(struct FlattenInfo &FI, in checkPHIs() argument
210 SafeOuterPHIs.insert(FI.OuterInductionPHI); in checkPHIs()
214 for (PHINode &InnerPHI : FI.InnerLoop->getHeader()->phis()) { in checkPHIs()
217 if (&InnerPHI == FI.InnerInductionPHI) in checkPHIs()
224 InnerPHI.getIncomingValueForBlock(FI.InnerLoop->getLoopPreheader()); in checkPHIs()
226 InnerPHI.getIncomingValueForBlock(FI.InnerLoop->getLoopLatch()); in checkPHIs()
232 if (!OuterPHI || OuterPHI->getParent() != FI.OuterLoop->getHeader()) { in checkPHIs()
242 OuterPHI->getIncomingValueForBlock(FI.OuterLoop->getLoopLatch())); in checkPHIs()
260 FI.InnerPHIsToTransform.insert(&InnerPHI); in checkPHIs()
263 for (PHINode &OuterPHI : FI.OuterLoop->getHeader()->phis()) { in checkPHIs()
[all …]
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_test/
Dcpuset_memory_testset.sh71 fi
78 fi
88 fi
95 fi
105 fi
112 fi
122 fi
129 fi
139 fi
146 fi
[all …]
/external/libcups/config-scripts/
Dcups-directories.m415 fi
23 fi
24 fi
29 fi
36 fi
43 fi
51 fi
52 fi
60 fi
63 fi
[all …]
/external/freetype/src/type1/
Dt1afm.c40 AFM_FontInfo fi ) in T1_Done_Metrics() argument
42 FT_FREE( fi->KernPairs ); in T1_Done_Metrics()
43 fi->NumKernPair = 0; in T1_Done_Metrics()
45 FT_FREE( fi->TrackKerns ); in T1_Done_Metrics()
46 fi->NumTrackKern = 0; in T1_Done_Metrics()
48 FT_FREE( fi ); in T1_Done_Metrics()
110 AFM_FontInfo fi ) in T1_Read_PFM() argument
156 fi->NumKernPair = FT_PEEK_USHORT_LE( p ); in T1_Read_PFM()
158 if ( p + 4 * fi->NumKernPair > limit ) in T1_Read_PFM()
165 if ( fi->NumKernPair == 0 ) in T1_Read_PFM()
[all …]
/external/perfetto/tools/
Dtmux20 fi
54 fi
66 fi
76 fi
77 fi
89 fi
98 fi
111 fi
159 fi
167 fi
[all …]
/external/wpa_supplicant_8/wpa_supplicant/examples/
Dwpas-dbus-new-getall.py10 wpas_obj = bus.get_object("fi.w1.wpa_supplicant1",
11 "/fi/w1/wpa_supplicant1")
12 props = wpas_obj.GetAll("fi.w1.wpa_supplicant1",
14 print("GetAll(fi.w1.wpa_supplicant1, /fi/w1/wpa_supplicant1):")
22 wpas = dbus.Interface(wpas_obj, "fi.w1.wpa_supplicant1")
24 if_obj = bus.get_object("fi.w1.wpa_supplicant1", path)
25 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface",
28 print("GetAll(fi.w1.wpa_supplicant1.Interface, %s):" % (path))
31 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface.WPS",
34 print("GetAll(fi.w1.wpa_supplicant1.Interface.WPS, %s):" % (path))
[all …]
/external/iproute2/ip/
Difcfg13 fi
29 else return 8; fi
41 fi
48 fi
58 fi
60 if [ $fwd -eq 0 ]; then RestartRDISC; fi
73 fi
77 fi
78 fi
86 fi
[all …]
/external/libabigail/
Dconfigure.ac180 fi
227 fi
231 fi
236 fi
253 fi
258 fi
271 fi
273 fi
274 fi
283 fi
[all …]
/external/strace/
Dconfigure35 fi
71 fi
74 fi
83 fi
112 fi
116 fi
161 fi
179 fi
196 fi
208 fi
[all …]
/external/iproute2/examples/
Ddhcp-client-script35 fi
94 fi
117 fi
135 fi
156 fi
159 fi
162 fi
180 fi
196 fi
206 fi
[all …]
/external/libcups/
Dconfigure33 fi
69 fi
72 fi
81 fi
110 fi
114 fi
159 fi
177 fi
194 fi
206 fi
[all …]
/external/erofs-utils/
Dmkerofsimage.sh17 fi
23 fi
31 fi
37 fi
43 fi
49 fi
55 fi
61 fi
67 fi
73 fi
[all …]
/external/libaom/libaom/test/
Daomenc.sh23 fi
29 fi
30 fi
34 fi
40 fi
46 fi
88 fi
97 fi
98 fi
106 fi
[all …]
/external/openssh/regress/
Dtest-exec.sh24 fi
34 fi
44 fi
50 fi
54 fi
59 fi
63 fi
69 fi
98 fi
101 fi
[all …]
/external/e2fsprogs/tests/
Drun_e2fsck3 fi
6 fi
10 fi
14 fi
18 fi
22 fi
30 fi
31 fi
39 fi
40 fi
[all …]

12345678910>>...228