HomeSort by relevance Sort by last modified time
    Searched refs:cur_len (Results 1 - 19 of 19) sorted by null

  /external/python/cpython3/Lib/
textwrap.py 200 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width):
203 cur_len : int, width : int)
213 space_left = width - cur_len
230 # cur_len will be zero, so the next line will be entirely
264 # cur_len is just the length of all the chunks in cur_line.
266 cur_len = 0
286 if cur_len + l <= width:
288 cur_len += l
297 self._handle_long_word(chunks, cur_line, cur_len, width)
298 cur_len = sum(map(len, cur_line)
    [all...]
mailbox.py 667 cur_len = self._file.tell()
668 if cur_len != self._file_length:
671 (self._file_length, cur_len))
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/templates/
gen_llvm.hpp 90 def pad(cur_len, max_len):
91 pad_amt = max_len - cur_len
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
textwrap.py 202 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width):
205 cur_len : int, width : int)
215 space_left = width - cur_len
232 # cur_len will be zero, so the next line will be entirely
259 # cur_len is just the length of all the chunks in cur_line.
261 cur_len = 0
281 if cur_len + l <= width:
283 cur_len += l
292 self._handle_long_word(chunks, cur_line, cur_len, width)
mailbox.py 631 cur_len = self._file.tell()
632 if cur_len != self._file_length:
635 (self._file_length, cur_len))
    [all...]
  /external/u-boot/drivers/spi/
sh_spi.c 140 int i, cur_len, ret = 0; local
147 cur_len = (remain < SH_SPI_FIFO_SIZE) ?
149 for (i = 0; i < cur_len &&
155 cur_len = i;
165 remain -= cur_len;
166 tx_data += cur_len;
  /external/brotli/c/enc/
hash_to_binary_tree_inc.h 155 const size_t cur_len = BROTLI_MIN(size_t, best_len_left, best_len_right); local
157 BROTLI_DCHECK(cur_len <= MAX_TREE_COMP_LENGTH);
158 len = cur_len +
159 FindMatchLengthWithLimit(&data[cur_ix_masked + cur_len],
160 &data[prev_ix_masked + cur_len],
161 max_length - cur_len);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
textwrap.py 210 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width):
213 cur_len : int, width : int)
223 space_left = width - cur_len
240 # cur_len will be zero, so the next line will be entirely
267 # cur_len is just the length of all the chunks in cur_line.
269 cur_len = 0
289 if cur_len + l <= width:
291 cur_len += l
300 self._handle_long_word(chunks, cur_line, cur_len, width)
  /external/python/cpython2/Lib/
textwrap.py 210 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width):
213 cur_len : int, width : int)
223 space_left = width - cur_len
240 # cur_len will be zero, so the next line will be entirely
267 # cur_len is just the length of all the chunks in cur_line.
269 cur_len = 0
289 if cur_len + l <= width:
291 cur_len += l
300 self._handle_long_word(chunks, cur_line, cur_len, width)
mailbox.py 658 cur_len = self._file.tell()
659 if cur_len != self._file_length:
662 (self._file_length, cur_len))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
fancy_getopt.py 431 cur_len = 0 # length of current line
435 if cur_len + l <= width: # can squeeze (at least) this chunk in
438 cur_len = cur_len + l
450 if cur_len == 0:
  /external/python/cpython2/Lib/distutils/
fancy_getopt.py 431 cur_len = 0 # length of current line
435 if cur_len + l <= width: # can squeeze (at least) this chunk in
438 cur_len = cur_len + l
450 if cur_len == 0:
  /external/python/cpython3/Lib/distutils/
fancy_getopt.py 394 cur_len = 0 # length of current line
398 if cur_len + l <= width: # can squeeze (at least) this chunk in
401 cur_len = cur_len + l
412 if cur_len == 0:
  /external/freetype/src/pshinter/
pshalgo.c 411 hint->cur_len = FT_MulFix( hint->org_len, scale );
462 hint->cur_len = len;
474 hint->cur_len = fit_len = len;
501 hint->cur_len = align.align_top - align.align_bot;
523 par_cur_center = parent->cur_pos + ( parent->cur_len >> 1 );
531 hint->cur_len = fit_len;
606 hint->cur_len = len;
613 len = hint->cur_len;
624 hint->cur_len = len;
628 hint->cur_len = len
    [all...]
pshalgo.h 56 FT_Pos cur_len; member in struct:PSH_HintRec_
  /external/freetype/src/autofit/
aflatin2.c 1967 FT_Pos org_len, org_center, cur_len; local
2028 FT_Pos org_pos, org_len, org_center, cur_center, cur_len; local
    [all...]
aflatin.c 3105 FT_Pos org_len, org_center, cur_len; local
3172 FT_Pos org_pos, org_len, org_center, cur_len; local
    [all...]
afcjk.c 1689 FT_Pos org_len, cur_len, org_center; local
    [all...]
  /external/u-boot/common/
image-fit.c 1590 int cur_len = strlen(cur_fdt_compat) + 1; local
    [all...]

Completed in 1793 milliseconds