Home
last modified time | relevance | path

Searched refs:lf (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/external/iproute2/misc/
Dlnstat_util.c39 static int scan_lines(struct lnstat_file *lf, int i) in scan_lines() argument
44 for (j = 0; j < lf->num_fields; j++) in scan_lines()
45 lf->fields[j].values[i] = 0; in scan_lines()
47 rewind(lf->fp); in scan_lines()
49 if (!lf->compat && !fgets(buf, sizeof(buf)-1, lf->fp)) in scan_lines()
52 while (!feof(lf->fp) && fgets(buf, sizeof(buf)-1, lf->fp)) { in scan_lines()
57 gettimeofday(&lf->last_read, NULL); in scan_lines()
59 for (j = 0; j < lf->num_fields; j++) { in scan_lines()
63 lf->fields[j].values[i] = f; in scan_lines()
65 lf->fields[j].values[i] += f; in scan_lines()
[all …]
Dlnstat.c86 struct lnstat_field *lf; member
103 const struct lnstat_field *lf = fp->params[i].lf; in print_line() local
105 fprintf(of, "%*lu|", fp->params[i].print.width, lf->result); in print_line()
118 const struct lnstat_field *lf = fp->params[i].lf; in print_json() local
120 jsonw_uint_field(jw, lf->name, lf->result); in print_json()
131 struct lnstat_file *lf; in map_field_params() local
135 for (lf = lnstat_files; lf; lf = lf->next) { in map_field_params()
136 for (i = 0; i < lf->num_fields; i++) { in map_field_params()
137 fps->params[j].lf = &lf->fields[i]; in map_field_params()
138 fps->params[j].lf->file->interval.tv_sec = in map_field_params()
[all …]
/external/icu/icu4c/source/samples/layout/
DGDIFontInstance.cpp115 LOGFONT lf; in GDIFontInstance() local
144 lf.lfHeight = - pt.y; in GDIFontInstance()
145 lf.lfWidth = 0; in GDIFontInstance()
146 lf.lfEscapement = 0; in GDIFontInstance()
147 lf.lfOrientation = 0; in GDIFontInstance()
148 lf.lfWeight = 0; in GDIFontInstance()
149 lf.lfItalic = 0; in GDIFontInstance()
150 lf.lfUnderline = 0; in GDIFontInstance()
151 lf.lfStrikeOut = 0; in GDIFontInstance()
152 lf.lfCharSet = DEFAULT_CHARSET; in GDIFontInstance()
[all …]
/external/libaom/libaom/av1/encoder/
Dpicklpf.c57 if (plane == 0 && dir == 0) filter_level[1] = cm->lf.filter_level[1]; in try_filter_frame()
58 if (plane == 0 && dir == 1) filter_level[0] = cm->lf.filter_level[0]; in try_filter_frame()
63 cm->lf.filter_level[0] = filter_level[0]; in try_filter_frame()
64 cm->lf.filter_level[1] = filter_level[1]; in try_filter_frame()
66 case 1: cm->lf.filter_level_u = filter_level[0]; break; in try_filter_frame()
67 case 2: cm->lf.filter_level_v = filter_level[0]; break; in try_filter_frame()
203 struct loopfilter *const lf = &cm->lf; in av1_pick_filter_level() local
206 lf->sharpness_level = 0; in av1_pick_filter_level()
210 lf->filter_level[0] = 0; in av1_pick_filter_level()
211 lf->filter_level[1] = 0; in av1_pick_filter_level()
[all …]
/external/mesa3d/src/compiler/glsl/glcpp/tests/
Dglcpp-test-cr-lf.sh88 rm -rf ./subtest-lf
89 mkdir subtest-lf
92 cp "$file" subtest-lf
95 ${glcpp_test} --testdir=subtest-lf >/dev/null 2>&1
105 cp $abs_builddir/glsl/glcpp/tests/subtest-lf/"$base".out subtest-cr/"$base".expected
113 rm -rf ./subtest-cr-lf
114 mkdir subtest-cr-lf
118 /' < "$file" > subtest-cr-lf/"$base"
119 cp $abs_builddir/glsl/glcpp/tests/subtest-lf/"$base".out subtest-cr-lf/"$base".expected
127 rm -rf ./subtest-lf-cr
[all …]
D.gitignore2 subtest-lf/
3 subtest-cr-lf/
4 subtest-lf-cr/
/external/deqp-deps/glslang/
D.gitattributes1 # test files have a mix of lf/crlf, and that's a good thing, for testing, don't mess with it
2 # bash scripts need lines ending with lf, and that's correct for Windows too, e.g., under Cygwin
5 *.sh text eof=lf
10 # source code can be native and normalized, but simpler if lf everywhere; will try that way
11 *.h text eol=lf
12 *.c text eol=lf
13 *.cpp text eol=lf
14 *.y text eol=lf
15 *.out text eol=lf
16 *.conf text eol=lf
[all …]
/external/skia/src/ports/
DSkFontHost_win.cpp49 static void call_ensure_accessible(const LOGFONT& lf) { in call_ensure_accessible() argument
51 gEnsureLOGFONTAccessibleProc(lf); in call_ensure_accessible()
104 static void dcfontname_to_skstring(HDC deviceContext, const LOGFONT& lf, SkString* familyName) { in dcfontname_to_skstring() argument
107 call_ensure_accessible(lf); in dcfontname_to_skstring()
115 call_ensure_accessible(lf); in dcfontname_to_skstring()
124 static void make_canonical(LOGFONT* lf) { in make_canonical() argument
125 lf->lfHeight = -64; in make_canonical()
126 lf->lfWidth = 0; // lfWidth is related to lfHeight, not to the OS/2::usWidthClass. in make_canonical()
127 lf->lfQuality = CLEARTYPE_QUALITY;//PROOF_QUALITY; in make_canonical()
128 lf->lfCharSet = DEFAULT_CHARSET; in make_canonical()
[all …]
/external/skqp/src/ports/
DSkFontHost_win.cpp49 static void call_ensure_accessible(const LOGFONT& lf) { in call_ensure_accessible() argument
51 gEnsureLOGFONTAccessibleProc(lf); in call_ensure_accessible()
104 static void dcfontname_to_skstring(HDC deviceContext, const LOGFONT& lf, SkString* familyName) { in dcfontname_to_skstring() argument
107 call_ensure_accessible(lf); in dcfontname_to_skstring()
115 call_ensure_accessible(lf); in dcfontname_to_skstring()
124 static void make_canonical(LOGFONT* lf) { in make_canonical() argument
125 lf->lfHeight = -64; in make_canonical()
126 lf->lfWidth = 0; // lfWidth is related to lfHeight, not to the OS/2::usWidthClass. in make_canonical()
127 lf->lfQuality = CLEARTYPE_QUALITY;//PROOF_QUALITY; in make_canonical()
128 lf->lfCharSet = DEFAULT_CHARSET; in make_canonical()
[all …]
/external/skia/tools/bookmaker/
Dcataloger.cpp48 this->lf(1); in openCatalog()
65 this->lf(1); in closeCatalog()
67 this->lf(1); in closeCatalog()
71 this->lf(1); in closeCatalog()
96 this->lf(1); in parseFromFile()
101 this->lf(1); in parseFromFile()
103 this->lf(2); in parseFromFile()
121 this->lf(1); in pngOut()
139 this->lf(1); in textOut()
145 this->lf(1); in textOut()
[all …]
DincludeParser.h299 this->lf(1); in writeDefinition()
307 this->lf(1); in writeDefinition()
311 this->lf(1); in writeEndTag()
313 this->lf(1); in writeEndTag()
317 this->lf(1); in writeEndTag()
319 this->lf(1); in writeEndTag()
323 this->lf(1);
327 this->lf(1);
340 this->lf(1);
345 this->lf(1); in writeIncompleteTag()
[all …]
/external/skqp/tools/bookmaker/
Dcataloger.cpp48 this->lf(1); in openCatalog()
65 this->lf(1); in closeCatalog()
67 this->lf(1); in closeCatalog()
71 this->lf(1); in closeCatalog()
96 this->lf(1); in parseFromFile()
101 this->lf(1); in parseFromFile()
103 this->lf(2); in parseFromFile()
121 this->lf(1); in pngOut()
139 this->lf(1); in textOut()
145 this->lf(1); in textOut()
[all …]
DincludeParser.h299 this->lf(1); in writeDefinition()
307 this->lf(1); in writeDefinition()
311 this->lf(1); in writeEndTag()
313 this->lf(1); in writeEndTag()
317 this->lf(1); in writeEndTag()
319 this->lf(1); in writeEndTag()
323 this->lf(1);
327 this->lf(1);
340 this->lf(1);
345 this->lf(1); in writeIncompleteTag()
[all …]
/external/mesa3d/src/compiler/glsl/glcpp/
Dpp.c115 const char *cr, *lf; in remove_line_continuations() local
147 lf = strchr(search_start, '\n'); in remove_line_continuations()
155 } else if (lf == NULL) { in remove_line_continuations()
157 } else if (lf == cr + 1) { in remove_line_continuations()
160 } else if (cr == lf + 1) { in remove_line_continuations()
174 lf = strchr (search_start, '\n'); in remove_line_continuations()
175 if (cr && lf) in remove_line_continuations()
176 newline = cr < lf ? cr : lf; in remove_line_continuations()
180 newline = lf; in remove_line_continuations()
/external/libvpx/libvpx/vp9/common/
Dvp9_entropymode.c412 static void set_default_lf_deltas(struct loopfilter *lf) { in set_default_lf_deltas() argument
413 lf->mode_ref_delta_enabled = 1; in set_default_lf_deltas()
414 lf->mode_ref_delta_update = 1; in set_default_lf_deltas()
416 lf->ref_deltas[INTRA_FRAME] = 1; in set_default_lf_deltas()
417 lf->ref_deltas[LAST_FRAME] = 0; in set_default_lf_deltas()
418 lf->ref_deltas[GOLDEN_FRAME] = -1; in set_default_lf_deltas()
419 lf->ref_deltas[ALTREF_FRAME] = -1; in set_default_lf_deltas()
421 lf->mode_deltas[0] = 0; in set_default_lf_deltas()
422 lf->mode_deltas[1] = 0; in set_default_lf_deltas()
428 struct loopfilter *const lf = &cm->lf; in vp9_setup_past_independence() local
[all …]
Dvp9_alloccommon.c100 vpx_free(cm->lf.lfm); in vp9_free_context_buffers()
101 cm->lf.lfm = NULL; in vp9_free_context_buffers()
105 vpx_free(cm->lf.lfm); in vp9_alloc_loop_filter()
108 cm->lf.lfm_stride = (cm->mi_cols + (MI_BLOCK_SIZE - 1)) >> 3; in vp9_alloc_loop_filter()
109 cm->lf.lfm = (LOOP_FILTER_MASK *)vpx_calloc( in vp9_alloc_loop_filter()
110 ((cm->mi_rows + (MI_BLOCK_SIZE - 1)) >> 3) * cm->lf.lfm_stride, in vp9_alloc_loop_filter()
111 sizeof(*cm->lf.lfm)); in vp9_alloc_loop_filter()
112 if (!cm->lf.lfm) return 1; in vp9_alloc_loop_filter()
/external/lua/src/
Dlauxlib.c643 LoadF *lf = (LoadF *)ud; in getF() local
645 if (lf->n > 0) { /* are there pre-read characters to be read? */ in getF()
646 *size = lf->n; /* return them (chars already in buffer) */ in getF()
647 lf->n = 0; /* no more pre-read characters */ in getF()
653 if (feof(lf->f)) return NULL; in getF()
654 *size = fread(lf->buff, 1, sizeof(lf->buff), lf->f); /* read block */ in getF()
656 return lf->buff; in getF()
669 static int skipBOM (LoadF *lf) { in skipBOM() argument
672 lf->n = 0; in skipBOM()
674 c = getc(lf->f); in skipBOM()
[all …]
/external/libaom/libaom/av1/common/
Dalloccommon.c36 aom_free(cm->lf.lfm); in alloc_loop_filter_mask()
37 cm->lf.lfm = NULL; in alloc_loop_filter_mask()
43 cm->lf.lfm_stride = (cm->mi_cols + (MI_SIZE_64X64 - 1)) >> MIN_MIB_SIZE_LOG2; in alloc_loop_filter_mask()
44 cm->lf.lfm_num = ((cm->mi_rows + (MI_SIZE_64X64 - 1)) >> MIN_MIB_SIZE_LOG2) * in alloc_loop_filter_mask()
45 cm->lf.lfm_stride; in alloc_loop_filter_mask()
46 cm->lf.lfm = in alloc_loop_filter_mask()
47 (LoopFilterMask *)aom_calloc(cm->lf.lfm_num, sizeof(*cm->lf.lfm)); in alloc_loop_filter_mask()
48 if (!cm->lf.lfm) return 1; in alloc_loop_filter_mask()
51 for (i = 0; i < cm->lf.lfm_num; ++i) av1_zero(cm->lf.lfm[i]); in alloc_loop_filter_mask()
57 if (cm->lf.lfm == NULL) return; in free_loop_filter_mask()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_picklpf.c71 const struct loopfilter *const lf = &cm->lf; in search_filter_level() local
80 int filt_mid = clamp(lf->last_filt_level, min_filter_level, max_filter_level); in search_filter_level()
151 struct loopfilter *const lf = &cm->lf; in vp9_pick_filter_level() local
153 lf->sharpness_level = 0; in vp9_pick_filter_level()
155 if (method == LPF_PICK_MINIMAL_LPF && lf->filter_level) { in vp9_pick_filter_level()
156 lf->filter_level = 0; in vp9_pick_filter_level()
186 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level); in vp9_pick_filter_level()
188 lf->filter_level = in vp9_pick_filter_level()
/external/apache-commons-compress/
D.gitattributes11 src/test/resources/test1.xml eol=lf
12 src/test/resources/test2.xml eol=lf
13 src/test/resources/test3.xml eol=lf
14 src/test/resources/test4.xml eol=lf
15 src/test/resources/test?with?spaces.txt eol=lf
16 src/test/resources/test.txt eol=lf
/external/skqp/samplecode/
DSampleTextBox.cpp46 LOGFONT lf; in TextBoxView() local
47 sk_bzero(&lf, sizeof(lf)); in TextBoxView()
48 lf.lfHeight = 9; in TextBoxView()
49 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf); in TextBoxView()
50 lf.lfHeight = 12; in TextBoxView()
51 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf); in TextBoxView()
/external/openssh/regress/unittests/sshkey/
Dmktestdata.sh163 ssh-keygen -lf rsa1_1 | awk '{print $2}' > rsa1_1.fp
164 ssh-keygen -lf rsa_1 | awk '{print $2}' > rsa_1.fp
165 ssh-keygen -lf dsa_1 | awk '{print $2}' > dsa_1.fp
166 ssh-keygen -lf ecdsa_1 | awk '{print $2}' > ecdsa_1.fp
167 ssh-keygen -lf ed25519_1 | awk '{print $2}' > ed25519_1.fp
168 ssh-keygen -lf rsa1_2 | awk '{print $2}' > rsa1_2.fp
169 ssh-keygen -lf rsa_2 | awk '{print $2}' > rsa_2.fp
170 ssh-keygen -lf dsa_2 | awk '{print $2}' > dsa_2.fp
171 ssh-keygen -lf ecdsa_2 | awk '{print $2}' > ecdsa_2.fp
172 ssh-keygen -lf ed25519_2 | awk '{print $2}' > ed25519_2.fp
[all …]
/external/mesa3d/src/gallium/winsys/sw/dri/
Ddri_sw_winsys.c57 struct drisw_loader_funcs *lf; member
143 …dri_sw_ws->lf->get_image((void *)dri_sw_dt->front_private, 0, 0, dri_sw_dt->width, dri_sw_dt->heig… in dri_sw_displaytarget_map()
156 …dri_sw_ws->lf->put_image2((void *)dri_sw_dt->front_private, dri_sw_dt->data, 0, 0, dri_sw_dt->widt… in dri_sw_displaytarget_unmap()
204 dri_sw_ws->lf->put_image2(dri_drawable, data, in dri_sw_displaytarget_display()
207 dri_sw_ws->lf->put_image(dri_drawable, dri_sw_dt->data, width, height); in dri_sw_displaytarget_display()
218 dri_create_sw_winsys(struct drisw_loader_funcs *lf) in dri_create_sw_winsys() argument
226 ws->lf = lf; in dri_create_sw_winsys()
/external/llvm/test/CodeGen/SystemZ/
Dshift-12.ll9 ; CHECK: nil{{[lf]}} %r3, 31
19 ; CHECK-NOT: nil{{[lf]}} %r3, 63
29 ; CHECK-NOT: nil{{[lf]}} %r3, 255
39 ; CHECK-NOT: nil{{[lf]}} %r3, 63
49 ; CHECK-NOT: nil{{[lf]}} %r3, 63
59 ; CHECK-NOT: nil{{[lf]}} %r3, 63
69 ; CHECK-NOT: nil{{[lf]}} %r3, 63
79 ; CHECK-NOT: nil{{[lf]}} %r3, 63
100 ; CHECK: nil{{[lf]}} %r3, 63
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dshift-12.ll9 ; CHECK: nil{{[lf]}} %r3, 31
19 ; CHECK-NOT: nil{{[lf]}} %r3, 63
29 ; CHECK-NOT: nil{{[lf]}} %r3, 255
39 ; CHECK-NOT: nil{{[lf]}} %r3, 63
49 ; CHECK-NOT: nil{{[lf]}} %r3, 63
59 ; CHECK-NOT: nil{{[lf]}} %r3, 63
69 ; CHECK-NOT: nil{{[lf]}} %r3, 63
79 ; CHECK-NOT: nil{{[lf]}} %r3, 63
100 ; CHECK: nil{{[lf]}} %r3, 63

12345678910>>...18