Home
last modified time | relevance | path

Searched refs:startpos (Results 1 – 25 of 35) sorted by relevance

12

/external/pdfium/fxbarcode/pdf417/
DBC_PDF417HighLevelEncoder.cpp148 int32_t startpos, in encodeText() argument
156 wchar_t ch = msg[startpos + idx]; in encodeText()
217 if (startpos + idx + 1 < count) { in encodeText()
218 wchar_t next = msg[startpos + idx + 1]; in encodeText()
259 int32_t startpos, in encodeBinary() argument
266 int32_t idx = startpos; in encodeBinary()
271 while ((startpos + count - idx) >= 6) { in encodeBinary()
287 if (idx < startpos + count) { in encodeBinary()
290 for (i = idx; i < startpos + count; i++) { in encodeBinary()
296 int32_t startpos, in encodeNumeric() argument
[all …]
DBC_PDF417HighLevelEncoder.h39 int32_t startpos,
44 int32_t startpos,
49 int32_t startpos,
59 int32_t startpos);
61 int32_t startpos);
64 int32_t startpos,
/external/python/cpython3/Objects/stringlib/
Dcodecs.h313 Py_ssize_t startpos, endpos, newpos; in STRINGLIB() local
319 startpos = i-1; in STRINGLIB()
320 endpos = startpos+1; in STRINGLIB()
331 memset(p, '?', endpos - startpos); in STRINGLIB()
332 p += (endpos - startpos); in STRINGLIB()
335 i += (endpos - startpos - 1); in STRINGLIB()
339 for (k=startpos; k<endpos; k++) { in STRINGLIB()
345 i += (endpos - startpos - 1); in STRINGLIB()
350 writer.min_size -= max_char_size * (endpos - startpos); in STRINGLIB()
352 unicode, startpos, endpos); in STRINGLIB()
[all …]
/external/python/cpython3/Modules/
D_heapqmodule.c12 siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in siftdown() argument
29 while (pos > startpos) { in siftdown()
55 Py_ssize_t startpos, endpos, childpos, limit; in siftup() local
61 startpos = pos; in siftup()
96 return siftdown(heap, startpos, pos); in siftup()
366 siftdown_max(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in siftdown_max() argument
383 while (pos > startpos) { in siftdown_max()
409 Py_ssize_t startpos, endpos, childpos, limit; in siftup_max() local
415 startpos = pos; in siftup_max()
450 return siftdown_max(heap, startpos, pos); in siftup_max()
/external/python/cpython2/Lib/
Dheapq.py242 def _siftdown(heap, startpos, pos): argument
246 while pos > startpos:
297 startpos = pos
313 _siftdown(heap, startpos, pos)
315 def _siftdown_max(heap, startpos, pos): argument
320 while pos > startpos:
333 startpos = pos
349 _siftdown_max(heap, startpos, pos)
Ddoctest.py286 startpos, endpos = 0, len(got)
290 startpos = len(w)
302 if startpos > endpos:
314 startpos = got.find(w, startpos, endpos)
315 if startpos < 0:
317 startpos += len(w)
/external/pdfium/core/fxcodec/codec/
Dfx_codec_fax.cpp108 void FaxFillBits(uint8_t* dest_buf, int columns, int startpos, int endpos) { in FaxFillBits() argument
109 startpos = std::max(startpos, 0); in FaxFillBits()
111 if (startpos >= endpos) in FaxFillBits()
114 int first_byte = startpos / 8; in FaxFillBits()
117 for (int i = startpos % 8; i <= (endpos - 1) % 8; ++i) in FaxFillBits()
122 for (int i = startpos % 8; i < 8; ++i) in FaxFillBits()
421 int startpos = 0; in FaxGet1DLine() local
442 FaxFillBits(dest_buf->data(), columns, startpos, startpos + run_len); in FaxGet1DLine()
444 startpos += run_len; in FaxGet1DLine()
445 if (startpos >= columns) in FaxGet1DLine()
/external/python/cpython2/Modules/
D_heapqmodule.c36 _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdown() argument
52 while (pos > startpos) { in _siftdown()
77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftup() local
83 startpos = pos; in _siftup()
117 return _siftdown(heap, startpos, pos); in _siftup()
379 _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in _siftdownmax() argument
395 while (pos > startpos){ in _siftdownmax()
418 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftupmax() local
424 startpos = pos; in _siftupmax()
461 return _siftdownmax(heap, startpos, pos); in _siftupmax()
/external/python/cpython3/Lib/
Dheapq.py205 def _siftdown(heap, startpos, pos): argument
209 while pos > startpos:
260 startpos = pos
276 _siftdown(heap, startpos, pos)
278 def _siftdown_max(heap, startpos, pos): argument
283 while pos > startpos:
296 startpos = pos
312 _siftdown_max(heap, startpos, pos)
Ddoctest.py277 startpos, endpos = 0, len(got)
281 startpos = len(w)
293 if startpos > endpos:
305 startpos = got.find(w, startpos, endpos)
306 if startpos < 0:
308 startpos += len(w)
/external/pdfium/fxbarcode/datamatrix/
DBC_HighLevelEncoder.cpp131 int32_t startpos, in lookAheadTest() argument
133 if (startpos >= pdfium::base::checked_cast<int32_t>(msg.GetLength())) { in lookAheadTest()
155 if ((startpos + charsProcessed) == in lookAheadTest()
179 wchar_t c = msg[startpos + charsProcessed]; in lookAheadTest()
256 int32_t p = startpos + charsProcessed + 1; in lookAheadTest()
282 int32_t startpos) { in determineConsecutiveDigitCount() argument
285 int32_t idx = startpos; in determineConsecutiveDigitCount()
DBC_HighLevelEncoder.h33 int32_t startpos,
38 int32_t startpos);
/external/python/cpython2/Demo/turtle/
Dtdemo_penrose.py135 def test(l=200, n=4, fun=sun, startpos=(0,0), th=2): argument
137 goto(startpos)
176 test(600, 8, startpos=(70, 117))
/external/python/cpython3/Lib/turtledemo/
Dpenrose.py135 def test(l=200, n=4, fun=sun, startpos=(0,0), th=2): argument
137 goto(startpos)
173 test(600, 8, startpos=(70, 117))
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
DNeuQuant.java184 int previouscol, startpos; in inxbuild() local
187 startpos = 0; in inxbuild()
218 netindex[previouscol] = (startpos + i) >> 1; in inxbuild()
222 startpos = i; in inxbuild()
225 netindex[previouscol] = (startpos + maxnetpos) >> 1; in inxbuild()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_syntax_parser.cpp685 bool CPDF_SyntaxParser::IsWholeWord(FX_FILESIZE startpos, in IsWholeWord() argument
696 if (bCheckRight && startpos + (int32_t)taglen <= limit && in IsWholeWord()
697 GetCharAt(startpos + (int32_t)taglen, ch)) { in IsWholeWord()
704 if (bCheckLeft && startpos > 0 && GetCharAt(startpos - 1, ch)) { in IsWholeWord()
752 FX_FILESIZE startpos = m_Pos; in FindTag() local
762 return m_Pos - startpos - taglen; in FindTag()
Dcpdf_syntax_parser.h78 bool IsWholeWord(FX_FILESIZE startpos,
/external/swiftshader/third_party/LLVM/test/CodeGen/SystemZ/
D2009-06-05-InvalidArgLoad.ll8 …capture %bufp, i8* %string1, i32 %size1, i8* %string2, i32 %size2, i32 %startpos, i32 %range, %str…
10 %cmp17.i = icmp slt i32 undef, %startpos ; <i1> [#uses=1]
/external/icu/android_icu4j/src/main/java/android/icu/impl/data/
DTokenIterator.java118 int startpos = position; in nextToken() local
161 startpos); in nextToken()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
DTokenIterator.java116 int startpos = position; in nextToken() local
159 startpos); in nextToken()
/external/python/cpython3/Lib/idlelib/
Dpyparse.py520 startpos = i
524 endpos = code.find('\n', startpos) + 1
558 i = startpos
/external/python/cpython2/Lib/idlelib/
DPyParse.py513 startpos = i
517 endpos = str.find('\n', startpos) + 1
549 i = startpos
/external/swiftshader/third_party/LLVM/lib/Archive/
DArchiveWriter.cpp318 unsigned startpos = ARFile.tellp(); in writeSymbolTable() local
340 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation"); in writeSymbolTable()
/external/lz4/lib/
Dlz4hc.c213 const BYTE** startpos, in LZ4HC_InsertAndGetWiderMatch() argument
264 *startpos = ip + back; in LZ4HC_InsertAndGetWiderMatch()
281 *startpos = ip + back; in LZ4HC_InsertAndGetWiderMatch()
335 *startpos = ip; in LZ4HC_InsertAndGetWiderMatch()
369 *startpos = ip + back; in LZ4HC_InsertAndGetWiderMatch()
/external/pcre/pcrecpp/
Dpcrecpp.cc304 int startpos, in TryMatch() argument
348 text.size(), startpos, options, match_data.get(), match_context.get()); in TryMatch()

12