HomeSort by relevance Sort by last modified time
    Searched refs:lf (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/iproute2/misc/
lnstat_util.c 39 static int scan_lines(struct lnstat_file *lf, int i)
44 for (j = 0; j < lf->num_fields; j++)
45 lf->fields[j].values[i] = 0;
47 rewind(lf->fp);
49 if (!lf->compat && !fgets(buf, sizeof(buf)-1, lf->fp))
52 while(!feof(lf->fp) && fgets(buf, sizeof(buf)-1, lf->fp)) {
57 gettimeofday(&lf->last_read, NULL);
59 for (j = 0; j < lf->num_fields; j++)
87 struct lnstat_file *lf; local
171 struct lnstat_file *lf; local
217 struct lnstat_file *lf; local
252 struct lnstat_file *lf; local
284 struct lnstat_file *lf; local
301 struct lnstat_file *lf; local
    [all...]
lnstat.c 88 struct lnstat_field *lf; member in struct:field_param
105 const struct lnstat_field *lf = fp->params[i].lf; local
107 fprintf(of, "%*lu|", fp->params[i].print.width, lf->result);
120 const struct lnstat_field *lf = fp->params[i].lf; local
122 jsonw_uint_field(jw, lf->name, lf->result);
133 struct lnstat_file *lf; local
137 for (lf = lnstat_files; lf; lf = lf->next)
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/dri/
dri_sw_winsys.h 36 struct sw_winsys *dri_create_sw_winsys(struct drisw_loader_funcs *lf);
dri_sw_winsys.c 55 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)
205 ws->lf = lf;
  /external/valgrind/gdbserver_tests/
filter_make_empty 8 ps -lf -p $PPID >> garbage.filtered.out
  /external/mesa3d/src/gallium/include/state_tracker/
drisw_api.h 21 struct pipe_screen * drisw_create_screen(struct drisw_loader_funcs *lf);
  /external/mesa3d/src/gallium/targets/dri-swrast/
swrast_drm_api.c 41 drisw_create_screen(struct drisw_loader_funcs *lf)
46 winsys = dri_create_sw_winsys(lf);
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.cpp 109 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.lfCharSet = DEFAULT_CHARSET
194 LOGFONTA lf; local
    [all...]
  /external/skia/samplecode/
SampleTextBox.cpp 49 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/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c 72 const struct loopfilter *const lf = &cm->lf; local
81 int filt_mid = clamp(lf->filter_level, min_filter_level, max_filter_level);
154 struct loopfilter *const lf = &cm->lf; local
156 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0
159 if (method == LPF_PICK_MINIMAL_LPF && lf->filter_level) {
160 lf->filter_level = 0;
189 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
191 lf->filter_level = search_filter_level(sd, cpi
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_picklpf.c 49 struct loopfilter *const lf = &cm->lf; local
57 int filt_mid = clamp(lf->filter_level, min_filter_level, max_filter_level);
131 lf->filter_level = filt_best;
137 struct loopfilter *const lf = &cm->lf; local
139 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0
151 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
  /external/skia/include/ports/
SkTypeface_win.h 23 * Copy the LOGFONT associated with this typeface into the lf parameter. Note
28 SK_API void SkLOGFONTFromTypeface(const SkTypeface* typeface, LOGFONT* lf);
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.c 410 static void set_default_lf_deltas(struct loopfilter *lf) {
411 lf->mode_ref_delta_enabled = 1;
412 lf->mode_ref_delta_update = 1;
414 lf->ref_deltas[INTRA_FRAME] = 1;
415 lf->ref_deltas[LAST_FRAME] = 0;
416 lf->ref_deltas[GOLDEN_FRAME] = -1;
417 lf->ref_deltas[ALTREF_FRAME] = -1;
419 lf->mode_deltas[0] = 0;
420 lf->mode_deltas[1] = 0;
426 struct loopfilter *const lf = &cm->lf local
    [all...]
vp9_alloccommon.c 118 vpx_free(cm->lf.lfm);
119 cm->lf.lfm = NULL;
154 vpx_free(cm->lf.lfm);
158 cm->lf.lfm_stride = (cm->mi_cols + (MI_BLOCK_SIZE - 1)) >> 3;
159 cm->lf.lfm = (LOOP_FILTER_MASK *)vpx_calloc(
160 ((cm->mi_rows + (MI_BLOCK_SIZE - 1)) >> 3) * cm->lf.lfm_stride,
161 sizeof(*cm->lf.lfm));
162 if (!cm->lf.lfm) goto fail;
vp9_loopfilter.h 132 static INLINE LOOP_FILTER_MASK *get_lfm(const struct loopfilter *lf,
134 return &lf->lfm[(mi_col >> 3) + ((mi_row >> 3) * lf->lfm_stride)];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropymode.c 421 static void set_default_lf_deltas(struct loopfilter *lf) {
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 = &cm->lf local
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 44 static void call_ensure_accessible(const LOGFONT& lf) {
46 gEnsureLOGFONTAccessibleProc(lf);
101 static void dcfontname_to_skstring(HDC deviceContext, const LOGFONT& lf, SkString* familyName) {
104 call_ensure_accessible(lf);
112 call_ensure_accessible(lf);
121 static void make_canonical(LOGFONT* lf) {
122 lf->lfHeight = -64;
123 lf->lfQuality = CLEARTYPE_QUALITY;//PROOF_QUALITY;
124 lf->lfCharSet = DEFAULT_CHARSET;
125 // lf->lfClipPrecision = 64
311 const LOGFONT* lf = reinterpret_cast<const LOGFONT*>(ctx); local
323 LOGFONT lf = origLF; local
337 LOGFONT lf = origLF; local
653 LOGFONT lf = typeface->fLogFont; local
1734 LOGFONT lf = fLogFont; local
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
LazyFieldLite.java 62 LazyFieldLite lf = new LazyFieldLite(); local
63 lf.setValue(value);
64 return lf;
  /external/libvpx/libvpx/vp9/decoder/
vp9_dthread.c 178 dst_cm->lf.last_sharpness_level = src_cm->lf.sharpness_level;
179 dst_cm->lf.filter_level = src_cm->lf.filter_level;
180 memcpy(dst_cm->lf.ref_deltas, src_cm->lf.ref_deltas, MAX_REF_LF_DELTAS);
181 memcpy(dst_cm->lf.mode_deltas, src_cm->lf.mode_deltas, MAX_MODE_LF_DELTAS);
  /external/compiler-rt/lib/asan/
asan_flags.cc 81 __lsan::Flags *lf = __lsan::flags(); local
82 lf->SetDefaults();
85 __lsan::RegisterLsanFlags(&lsan_parser, lf);
  /external/pdfium/xfa/src/fgas/src/font/
fx_gdifont.cpp 165 LOGFONTW lf; local
166 FX_memset(&lf, 0, sizeof(lf));
167 lf.lfHeight = -1000;
168 lf.lfWeight = (dwFontStyles & FX_FONTSTYLE_Bold) ? FW_BOLD : FW_NORMAL;
169 lf.lfItalic = (dwFontStyles & FX_FONTSTYLE_Italic) != 0;
170 lf.lfPitchAndFamily =
173 lf.lfPitchAndFamily |= FF_ROMAN;
176 lf.lfPitchAndFamily |= FF_SCRIPT;
179 lf.lfCharSet = SYMBOL_CHARSET;
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_form.cpp 326 LOGFONTA lf; member in struct:_PDF_FONTDATA
336 memcpy(&pData->lf, &lpelfe->elfLogFont, sizeof(LOGFONTA));
340 static FX_BOOL RetrieveSpecificFont(LOGFONTA& lf) {
344 EnumFontFamiliesExA(hDC, &lf, (FONTENUMPROCA)EnumFontFamExProc, (LPARAM)&fd,
348 memcpy(&lf, &fd.lf, sizeof(LOGFONTA));
355 LOGFONTA& lf) {
356 memset(&lf, 0, sizeof(LOGFONTA));
357 lf.lfCharSet = charSet;
358 lf.lfPitchAndFamily = pitchAndFamily
396 LOGFONTA lf; local
    [all...]
  /external/svox/pico/lib/
picopr.c 1317 pr_ioItemPtr lf; local
1688 pr_ioItemPtr lf; local
2135 pr_ioItemPtr lf; local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 118 int lf = 0; local
133 lf += 4;
134 if (didx < codeLength && lineFeed > 0 && lf % lineFeed == 0)
183 * beside the bas64 chars, LF, CR, tab and space are accepted.
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 217 int lf = in.read(); local
218 if ((cr != HTTP.CR) || (lf != HTTP.LF)) {

Completed in 469 milliseconds

1 2 3 4 5 6 7