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

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
reader.go 67 lf = []byte("\n")
89 // Does the line end in CRLF instead of just LF?
90 hasLF := bytes.HasSuffix(r.line, lf)
97 if !bytes.HasPrefix(rightStripped, lf) && !bytes.HasPrefix(rightStripped, crlf) &&
66 lf = []byte("\\n") var
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
reader.go 67 lf = []byte("\n")
89 // Does the line end in CRLF instead of just LF?
90 hasLF := bytes.HasSuffix(r.line, lf)
97 if !bytes.HasPrefix(rightStripped, lf) && !bytes.HasPrefix(rightStripped, crlf) &&
66 lf = []byte("\\n") var
  /external/skia/samplecode/
SampleTextBox.cpp 47 LOGFONT lf; local
48 sk_bzero(&lf, sizeof(lf));
49 lf.lfHeight = 9;
50 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf);
51 lf.lfHeight = 12;
52 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf);
  /external/skqp/samplecode/
SampleTextBox.cpp 45 LOGFONT lf; local
46 sk_bzero(&lf, sizeof(lf));
47 lf.lfHeight = 9;
48 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf);
49 lf.lfHeight = 12;
50 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf);
  /external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c 71 const struct loopfilter *const lf = &cm->lf; local
80 int filt_mid = clamp(lf->last_filt_level, min_filter_level, max_filter_level);
151 struct loopfilter *const lf = &cm->lf; local
153 lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0 : cpi->oxcf.sharpness;
155 if (method == LPF_PICK_MINIMAL_LPF && lf->filter_level) {
156 lf->filter_level = 0;
190 lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
192 lf->filter_level
    [all...]
  /external/mesa3d/src/compiler/glsl/glcpp/
pp.c 116 const char *cr, *lf; local
141 lf = strchr(search_start, '\n');
149 } else if (lf == NULL) {
151 } else if (lf == cr + 1) {
154 } else if (cr == lf + 1) {
169 lf = strchr (search_start, '\n');
170 if (cr && lf)
171 newline = cr < lf ? cr : lf;
175 newline = lf;
    [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/compiler-rt/lib/asan/
asan_flags.cc 81 __lsan::Flags *lf = __lsan::flags(); local
82 lf->SetDefaults();
85 __lsan::RegisterLsanFlags(&lsan_parser, lf);
  /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)) {
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.cpp 115 LOGFONT lf; local
144 lf.lfHeight = - pt.y;
145 lf.lfWidth = 0;
146 lf.lfEscapement = 0;
147 lf.lfOrientation = 0;
148 lf.lfWeight = 0;
149 lf.lfItalic = 0;
150 lf.lfUnderline = 0;
151 lf.lfStrikeOut = 0;
152 lf.lfCharSet = DEFAULT_CHARSET
200 LOGFONTA lf; local
    [all...]
  /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++)
88 struct lnstat_file *lf; local
174 struct lnstat_file *lf; local
215 struct lnstat_file *lf; local
250 struct lnstat_file *lf; local
282 struct lnstat_file *lf; local
299 struct lnstat_file *lf; local
    [all...]
lnstat.c 86 struct lnstat_field *lf; member in struct:field_param
103 const struct lnstat_field *lf = fp->params[i].lf; local
105 fprintf(of, "%*lu|", fp->params[i].print.width, lf->result);
118 const struct lnstat_field *lf = fp->params[i].lf; local
120 jsonw_uint_field(jw, lf->name, lf->result);
131 struct lnstat_file *lf; local
135 for (lf = lnstat_files; lf; lf = lf->next)
    [all...]
  /external/libedit/examples/
tc1.c 98 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;
wtc1.c 63 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/libvpx/libvpx/vp9/common/
vp9_entropymode.c 409 static void set_default_lf_deltas(struct loopfilter *lf) {
410 lf->mode_ref_delta_enabled = 1;
411 lf->mode_ref_delta_update = 1;
413 lf->ref_deltas[INTRA_FRAME] = 1;
414 lf->ref_deltas[LAST_FRAME] = 0;
415 lf->ref_deltas[GOLDEN_FRAME] = -1;
416 lf->ref_deltas[ALTREF_FRAME] = -1;
418 lf->mode_deltas[0] = 0;
419 lf->mode_deltas[1] = 0;
425 struct loopfilter *const lf = &cm->lf local
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 57 struct drisw_loader_funcs *lf; member in struct:dri_sw_winsys
143 dri_sw_ws->lf->get_image((void *)dri_sw_dt->front_private, 0, 0, dri_sw_dt->width, dri_sw_dt->height, dri_sw_dt->stride, dri_sw_dt->data);
156 dri_sw_ws->lf->put_image2((void *)dri_sw_dt->front_private, dri_sw_dt->data, 0, 0, dri_sw_dt->width, dri_sw_dt->height, dri_sw_dt->stride);
204 dri_sw_ws->lf->put_image2(dri_drawable, data,
207 dri_sw_ws->lf->put_image(dri_drawable, dri_sw_dt->data, width, height);
218 dri_create_sw_winsys(struct drisw_loader_funcs *lf)
226 ws->lf = lf;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
LazyFieldLite.java 133 LazyFieldLite lf = new LazyFieldLite(); local
134 lf.setValue(value);
135 return lf;
  /external/clang/test/Analysis/
stack-addr-ps.cpp 77 void *lf() { function
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.cc 264 size_t lf = 1, rf = 4; local
284 center_freqs_[max(kOne, i - lf) - 1] * freqs_ /
  /external/aac/libSACdec/src/
sac_dec.cpp 1047 int rf = -1, lf = -1, cf = -1; \/* Right Front, Left Front, Center Front *\/ local
    [all...]
  /external/flatbuffers/src/
idl_gen_grpc.cpp 165 const char * lf = strchr(s, '\n'); local
166 if (lf) {
167 (*str_) += std::string(s, lf + 1);
168 s = lf + 1;
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
TransliterationChart.java 194 File lf = new File(fileName); local
195 System.out.println("Creating file: " + lf.getAbsoluteFile());
  /external/pdfium/core/fxge/win32/
fx_win32_print.cpp 228 LOGFONT lf = {}; local
229 lf.lfHeight = -font_size * kScaleFactor;
230 lf.lfWeight = pFont->IsBold() ? FW_BOLD : FW_NORMAL;
231 lf.lfItalic = pFont->IsItalic();
232 lf.lfCharSet = DEFAULT_CHARSET;
237 memcpy(lf.lfFaceName, wsName.c_str(), sizeof(lf.lfFaceName[0]) * iNameLen);
238 lf.lfFaceName[iNameLen] = 0;
240 HFONT hFont = CreateFontIndirect(&lf);
252 g_pdfium_typeface_accessible_func(&lf, L"A", 1)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ArraysParallelSortHelpers.java 211 int lf = lb + ln, rf = rb + rn; // index bounds local
212 while (lb < lf && rb < rf) {
224 else if (lb < lf)
225 System.arraycopy(a, lb, w, k, lf - lb);
324 int lf = lb + ln, rf = rb + rn; // index bounds local
325 while (lb < lf && rb < rf) {
337 else if (lb < lf)
338 System.arraycopy(a, lb, w, k, lf - lb);
435 int lf = lb + ln, rf = rb + rn; // index bounds local
436 while (lb < lf && rb < rf)
546 int lf = lb + ln, rf = rb + rn; \/\/ index bounds local
657 int lf = lb + ln, rf = rb + rn; \/\/ index bounds local
768 int lf = lb + ln, rf = rb + rn; \/\/ index bounds local
879 int lf = lb + ln, rf = rb + rn; \/\/ index bounds local
990 int lf = lb + ln, rf = rb + rn; \/\/ index bounds local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lauxlib.c 570 LoadF *lf = (LoadF *)ud; local
572 if (lf->n > 0) { /* are there pre-read characters to be read? */
573 *size = lf->n; /* return them (chars already in buffer) */
574 lf->n = 0; /* no more pre-read characters */
580 if (feof(lf->f)) return NULL;
581 *size = fread(lf->buff, 1, sizeof(lf->buff), lf->f); /* read block */
583 return lf->buff;
596 static int skipBOM (LoadF *lf) {
632 LoadF lf; local
    [all...]

Completed in 910 milliseconds

1 2 3 4 5 6