Searched defs:lf (Results 1 - 25 of 42) sorted by relevance

12

/external/mesa3d/src/gallium/targets/dri-swrast/
H A Dswrast_drm_api.c41 drisw_create_screen(struct drisw_loader_funcs *lf) argument
46 winsys = dri_create_sw_winsys(lf);
/external/skia/samplecode/
H A DSampleTextBox.cpp49 LOGFONT lf; local
50 sk_bzero(&lf, sizeof(lf));
51 lf.lfHeight = 9;
52 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf);
53 lf.lfHeight = 12;
54 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf);
/external/compiler-rt/lib/asan/
H A Dasan_flags.cc80 __lsan::Flags *lf = __lsan::flags(); local
81 lf->SetDefaults();
84 __lsan::RegisterLsanFlags(&lsan_parser, lf);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_picklpf.c54 const struct loopfilter *const lf = &cm->lf; local
62 int filt_mid = clamp(lf->filter_level, min_filter_level, max_filter_level);
142 struct loopfilter *const lf = &cm->lf; local
144 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0
147 if (method == LPF_PICK_MINIMAL_LPF && lf->filter_level) {
148 lf->filter_level = 0;
158 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
160 lf
[all...]
H A Dvp9_bitstream.c682 static void encode_loopfilter(struct loopfilter *lf, argument
687 vp9_wb_write_literal(wb, lf->filter_level, 6);
688 vp9_wb_write_literal(wb, lf->sharpness_level, 3);
692 vp9_wb_write_bit(wb, lf->mode_ref_delta_enabled);
694 if (lf->mode_ref_delta_enabled) {
695 vp9_wb_write_bit(wb, lf->mode_ref_delta_update);
696 if (lf->mode_ref_delta_update) {
698 const int delta = lf->ref_deltas[i];
699 const int changed = delta != lf->last_ref_deltas[i];
702 lf
[all...]
/external/v8/test/webkit/
H A DToNumber.js36 var lf = String.fromCharCode(0xA); variable
104 shouldBe("+lf", "0");
128 shouldBe("+(lf + '1')", "1");
152 shouldBe("+('1' + lf)", "1");
176 shouldBe("+('1' + lf + '1')", "NaN");
H A DparseFloat.js34 var lf = String.fromCharCode(0xA); variable
80 shouldBe("parseFloat(lf + '1')", "1");
/external/iproute2/misc/
H A Dlnstat_util.c39 static int scan_lines(struct lnstat_file *lf, int i) argument
43 for (j = 0; j < lf->num_fields; j++)
44 lf->fields[j].values[i] = 0;
46 while(!feof(lf->fp)) {
52 fgets(buf, sizeof(buf)-1, lf->fp);
53 gettimeofday(&lf->last_read, NULL);
55 for (j = 0; j < lf->num_fields; j++) {
58 lf->fields[j].values[i] = f;
60 lf->fields[j].values[i] += f;
83 struct lnstat_file *lf; local
120 __lnstat_scan_fields(struct lnstat_file *lf, char *buf) argument
140 lnstat_scan_fields(struct lnstat_file *lf) argument
151 lnstat_scan_compat_rtstat_fields(struct lnstat_file *lf) argument
174 struct lnstat_file *lf; local
217 struct lnstat_file *lf; local
252 struct lnstat_file *lf; local
280 struct lnstat_file *lf; local
297 struct lnstat_file *lf; local
[all...]
H A Dlnstat.c80 struct lnstat_field *lf; member in struct:field_param
97 struct lnstat_field *lf = fp->params[i].lf; local
102 fprintf(of, formatbuf, lf->result);
112 struct lnstat_file *lf; local
116 for (lf = lnstat_files; lf; lf = lf->next) {
117 for (i = 0; i < lf
[all...]
/external/libedit/examples/
H A Dtc1.c98 const LineInfo *lf = el_line(el); local
105 for (ptr = lf->cursor - 1;
106 !isspace((unsigned char)*ptr) && ptr > lf->buffer; ptr--)
108 len = lf->cursor - ++ptr;
H A Dwtc1.c63 const LineInfoW *lf = el_wline(el); local
69 for (ptr = lf->cursor -1; !iswspace(*ptr) && ptr > lf->buffer; --ptr)
71 len = lf->cursor - ++ptr;
/external/mesa3d/src/gallium/winsys/sw/dri/
H A Ddri_sw_winsys.c55 struct drisw_loader_funcs *lf; member in struct:dri_sw_winsys
186 dri_sw_ws->lf->put_image(dri_drawable, dri_sw_dt->data, width, height);
197 dri_create_sw_winsys(struct drisw_loader_funcs *lf) argument
205 ws->lf = lf;
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp77 void *lf() { function
/external/icu/icu4c/source/samples/layout/
H A DGDIFontInstance.cpp109 LOGFONT lf; local
138 lf.lfHeight = - pt.y;
139 lf.lfWidth = 0;
140 lf.lfEscapement = 0;
141 lf.lfOrientation = 0;
142 lf.lfWeight = 0;
143 lf.lfItalic = 0;
144 lf.lfUnderline = 0;
145 lf.lfStrikeOut = 0;
146 lf
194 LOGFONTA lf; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_entropymode.c421 static void set_default_lf_deltas(struct loopfilter *lf) { argument
422 lf->mode_ref_delta_enabled = 1;
423 lf->mode_ref_delta_update = 1;
425 lf->ref_deltas[INTRA_FRAME] = 1;
426 lf->ref_deltas[LAST_FRAME] = 0;
427 lf->ref_deltas[GOLDEN_FRAME] = -1;
428 lf->ref_deltas[ALTREF_FRAME] = -1;
430 lf->mode_deltas[0] = 0;
431 lf->mode_deltas[1] = 0;
437 struct loopfilter *const lf local
[all...]
H A Dvp9_onyxc_int.h164 struct loopfilter lf; member in struct:VP9Common
H A Dvp9_loopfilter.c239 struct loopfilter *lf = &cm->lf; local
243 update_sharpness(lfi, lf->sharpness_level);
244 lf->last_sharpness_level = lf->sharpness_level;
258 struct loopfilter *const lf = &cm->lf; local
262 if (lf->last_sharpness_level != lf->sharpness_level) {
263 update_sharpness(lfi, lf
[all...]
/external/lldb/test/pexpect-2.4/
H A Dscreen.py110 def lf (self): member in class:screen
128 self.lf ()
/external/harfbuzz_ng/src/
H A Dhb-uniscribe.cc492 populate_log_font (LOGFONTW *lf, argument
495 memset (lf, 0, sizeof (*lf));
496 lf->lfHeight = -font->y_scale;
497 lf->lfCharSet = DEFAULT_CHARSET;
502 memcpy (lf->lfFaceName, face_data->face_name, sizeof (lf->lfFaceName));
/external/linux-tools-perf/src/tools/perf/util/
H A Dprobe-finder.c1438 struct line_finder *lf = data; local
1440 if ((strtailcmp(fname, lf->fname) != 0) ||
1441 (lf->lno_s > lineno || lf->lno_e < lineno))
1444 if (line_range_add_line(fname, lineno, lf->lr) < 0)
1451 static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf) argument
1455 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
1459 if (!list_empty(&lf->lr->line_list))
1460 ret = lf
1486 struct line_finder *lf = param->data; local
1517 find_line_range_by_func(struct line_finder *lf) argument
1526 struct line_finder lf = {.lr = lr, .found = 0}; local
[all...]
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml559 let lf s x = s ^ "->" ^ value_name x in var
560 insist ("->One->Two" = fold_left_globals lf "" m);
586 let lf s u = value_name (user u) ^ "->" ^ s in var
587 insist ("v2->v3->" = fold_left_uses lf "" v1);
591 let lf s u = value_name (used_value u) ^ "->" ^ s in var
592 insist ("v1->v1->" = fold_left_uses lf "" v1);
723 let lf s x = s ^ "->" ^ value_name x in var
724 insist ("->One->Two" = fold_left_functions lf "" m);
765 let lf s x = s ^ "->" ^ value_name x in var
766 insist ("->One->Two" = fold_left_params lf ""
839 let lf s x = s ^ "->" ^ value_name (value_of_block x) in var
873 let lf s x = s ^ "->" ^ value_name x in var
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c550 static void setup_loopfilter(struct loopfilter *lf, argument
552 lf->filter_level = vp9_rb_read_literal(rb, 6);
553 lf->sharpness_level = vp9_rb_read_literal(rb, 3);
557 lf->mode_ref_delta_update = 0;
559 lf->mode_ref_delta_enabled = vp9_rb_read_bit(rb);
560 if (lf->mode_ref_delta_enabled) {
561 lf->mode_ref_delta_update = vp9_rb_read_bit(rb);
562 if (lf->mode_ref_delta_update) {
567 lf->ref_deltas[i] = vp9_rb_read_signed_literal(rb, 6);
571 lf
[all...]
/external/openssh/
H A Dsftp.c1734 const LineInfo *lf; local
1781 lf = el_line(el);
1787 if (lastarg || *(lf->cursor) != ' ')
1827 const LineInfo *lf; local
1926 lf = el_line(el);
1931 if (*(lf->cursor - 1) != '/' &&
1932 (lastarg || *(lf->cursor) != ' '))
1952 const LineInfo *lf; local
1955 lf = el_line(el);
1960 cursor = lf
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_form.cpp347 LOGFONTA lf; member in struct:_PDF_FONTDATA
359 memcpy(&pData->lf, &lpelfe->elfLogFont, sizeof(LOGFONTA));
364 static FX_BOOL RetrieveSpecificFont(LOGFONTA& lf) argument
369 EnumFontFamiliesExA(hDC, &lf, (FONTENUMPROCA)EnumFontFamExProc, (LPARAM)&fd, 0);
372 memcpy(&lf, &fd.lf, sizeof(LOGFONTA));
376 static FX_BOOL RetrieveSpecificFont(FX_BYTE charSet, FX_BYTE pitchAndFamily, LPCSTR pcsFontName, LOGFONTA& lf) argument
378 memset(&lf, 0, sizeof(LOGFONTA));
379 lf.lfCharSet = charSet;
380 lf
386 RetrieveStockFont(int iFontObject, FX_BYTE charSet, LOGFONTA& lf) argument
406 LOGFONTA lf; local
429 LOGFONTA lf; local
451 LOGFONTA lf; local
480 LOGFONTA lf; local
589 LOGFONTA lf; local
[all...]
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_device.cpp143 LOGFONTA lf; local
144 FXSYS_memset32(&lf, 0, sizeof(LOGFONTA));
145 lf.lfCharSet = DEFAULT_CHARSET;
146 lf.lfFaceName[0] = 0;
147 lf.lfPitchAndFamily = 0;
148 EnumFontFamiliesExA(m_hDC, &lf, (FONTENUMPROCA)FontEnumProc, (FX_UINTPTR)this, 0);

Completed in 1172 milliseconds

12