Home
last modified time | relevance | path

Searched refs:last_pos (Results 1 – 17 of 17) sorted by relevance

/external/pdfium/core/src/fpdftext/
Dfpdf_text_search.cpp102 FX_FLOAT last_pos = item.m_OriginX; in FPDFText_ProcessInterObj() local
131 if (FXSYS_fabs(last_pos + last_width - x) > threshold && curChar != L' ' && in FPDFText_ProcessInterObj()
134 if ((x - last_pos - last_width) > threshold || in FPDFText_ProcessInterObj()
135 (last_pos - x - last_width) > threshold) { in FPDFText_ProcessInterObj()
138 if (x < 0 && (last_pos - x - last_width) > threshold) { in FPDFText_ProcessInterObj()
141 if ((x - last_pos - last_width) > this_width || in FPDFText_ProcessInterObj()
142 (x - last_pos - this_width) > last_width) { in FPDFText_ProcessInterObj()
146 if (last_pos + last_width > x + this_width && curChar == L' ') { in FPDFText_ProcessInterObj()
Dfpdf_text_int.cpp1874 FX_FLOAT last_pos = PrevItem.m_OriginX; in ProcessInsertObject() local
1961 if (FXSYS_fabs(last_pos + last_width - x) > threshold && curChar != L' ' && in ProcessInsertObject()
1964 if ((x - last_pos - last_width) > threshold || in ProcessInsertObject()
1965 (last_pos - x - last_width) > threshold) { in ProcessInsertObject()
1968 if (x < 0 && (last_pos - x - last_width) > threshold) { in ProcessInsertObject()
1971 if ((x - last_pos - last_width) > this_width || in ProcessInsertObject()
1972 (x - last_pos - this_width) > last_width) { in ProcessInsertObject()
/external/skia/src/effects/gradients/
DSk4fGradientBase.cpp141 SkScalar last_pos = 1; in GradientShaderBase4fContext() local
146 SkTSwap(first_pos, last_pos); in GradientShaderBase4fContext()
167 ? SkTPin(shader.fOrigPos[curr], prev_pos, last_pos) in GradientShaderBase4fContext()
168 : SkTPin(shader.fOrigPos[curr], last_pos, prev_pos); in GradientShaderBase4fContext()
198 fIntervals.back().fP1 = last_pos; in GradientShaderBase4fContext()
206 fIntervals.emplace_back(clamp_color, last_pos, in GradientShaderBase4fContext()
/external/opencv3/3rdparty/libwebp/dsp/
Dupsampling_sse2.c141 const int last_pos = 1 + 32 * num_blocks; \
173 last_pos, len - last_pos); \
Dupsampling_neon.c223 const int last_pos = 1 + 16 * num_blocks; \
259 top_dst, bottom_dst, last_pos, len - last_pos); \
/external/fio/
Dio_u.c257 f->file_name, (unsigned long long) f->last_pos[ddir], in get_next_rand_block()
269 if (f->last_pos[ddir] >= f->io_size + get_start_offset(td, f) && in get_next_seq_offset()
271 f->last_pos[ddir] = f->last_pos[ddir] - f->io_size; in get_next_seq_offset()
273 if (f->last_pos[ddir] < f->real_file_size) { in get_next_seq_offset()
276 if (f->last_pos[ddir] == f->file_offset && o->ddir_seq_add < 0) in get_next_seq_offset()
277 f->last_pos[ddir] = f->real_file_size; in get_next_seq_offset()
279 pos = f->last_pos[ddir] - f->file_offset; in get_next_seq_offset()
754 f->last_pos[io_u->ddir] = f->file_offset; in fill_io_u()
1483 f->last_pos[io_u->ddir] = io_u->offset + io_u->buflen; in get_io_u()
Dfile.h92 uint64_t last_pos[DDIR_RWDIR_CNT]; member
Dfilesetup.c1542 f->last_pos[i] = f->file_offset; in fio_file_reset()
/external/webp/src/dsp/
Dupsampling_neon.c224 const int last_pos = 1 + 16 * num_blocks; \
261 top_dst, bottom_dst, last_pos, len - last_pos); \
/external/boringssl/src/crypto/err/
Derr.c403 char *last_pos = &buf[len - 1] - num_colons + i; in ERR_error_string_n() local
405 if (colon == NULL || colon > last_pos) { in ERR_error_string_n()
410 memset(last_pos, ':', num_colons - i); in ERR_error_string_n()
/external/chromium-trace/catapult/third_party/Paste/paste/util/
Dtemplate.py403 last_pos = (1, 1)
419 chunks.append((s[last:match.start()], last_pos))
422 last_pos = pos
425 name=name, position=last_pos)
Dtemplate.py.2015-04-30-123224408 last_pos = (1, 1)
424 chunks.append((s[last:match.start()], last_pos))
427 last_pos = pos
430 name=name, position=last_pos)
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_parser_old.cpp157 int last_pos = m_pSyntax->GetPos(); in ParsePathObject() local
214 last_pos = m_pSyntax->GetPos(); in ParsePathObject()
234 m_pSyntax->SetPos(last_pos); in ParsePathObject()
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-indic.cc947 indic_position_t last_pos = POS_START; in initial_reordering_consonant_syllable() local
952 info[i].indic_position() = last_pos; in initial_reordering_consonant_syllable()
972 last_pos = (indic_position_t) info[i].indic_position(); in initial_reordering_consonant_syllable()
/external/chromium-trace/catapult/third_party/WebOb/docs/
Ddo-it-yourself.txt157 ... last_pos = 0
159 ... regex += re.escape(template[last_pos:match.start()])
164 ... last_pos = match.end()
165 ... regex += re.escape(template[last_pos:])
/external/opencv3/3rdparty/include/ffmpeg_/libavcodec/
Davcodec.h3938 int64_t last_pos; member
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
DParser.java23 private int last_pos; field in Parser
126 this.last_pos = this.lexer.peek().getPos(); in parse()
864 "[" + this.last_line + "," + this.last_pos + "] " + in parse()