Home
last modified time | relevance | path

Searched refs:s_end (Results 1 – 16 of 16) sorted by relevance

/external/u-boot/fs/zfs/
Dzfs_lzjb.c51 uint8_t *s_end = (uint8_t *) s_start + s_len; in lzjb_decompress() local
55 while (dst < d_end && src < s_end) { in lzjb_decompress()
60 if (src >= s_end) { in lzjb_decompress()
69 if (src > s_end || cpy < (uint8_t *) d_start) { in lzjb_decompress()
/external/u-boot/common/
Dflash.c30 short s_end; in flash_protect() local
38 s_end = info->sector_count - 1; /* index of last sector */ in flash_protect()
57 end = (i == s_end) ? b_end : info->start[i + 1] - 1; in flash_protect()
143 short s_end = info->sector_count - 1; in flash_write() local
145 ulong e_addr = (i == s_end) ? b_end : info->start[i + 1]; in flash_write()
/external/u-boot/cmd/
Dflash.c208 short s_end; in flash_fill_sect_ranges() local
215 s_end = info->sector_count - 1; /* last sector */ in flash_fill_sect_ranges()
221 end = (sect == s_end) ? b_end : info->start[sect + 1] - 1; in flash_fill_sect_ranges()
238 s_last[bank] = s_end; in flash_fill_sect_ranges()
253 addr_first = (sect == s_end) ? b_end + 1: info->start[sect + 1]; in flash_fill_sect_ranges()
/external/wpa_supplicant_8/src/utils/
Djson.c67 char *str, *spos, *s_end; in json_parse_string() local
79 s_end = str + buf_len; in json_parse_string()
82 if (buf_len < max_len && s_end - spos < 3) { in json_parse_string()
95 s_end = str + buf_len; in json_parse_string()
/external/pdfium/third_party/libpng16/
Dpngrutil.c3562 int s_start, s_end, s_inc; in png_do_read_interlace() local
3574 s_end = 0; in png_do_read_interlace()
3584 s_end = 7; in png_do_read_interlace()
3597 if (dshift == s_end) in png_do_read_interlace()
3607 if (sshift == s_end) in png_do_read_interlace()
3624 int s_start, s_end, s_inc; in png_do_read_interlace() local
3634 s_end = 0; in png_do_read_interlace()
3644 s_end = 6; in png_do_read_interlace()
3660 if (dshift == s_end) in png_do_read_interlace()
3670 if (sshift == s_end) in png_do_read_interlace()
[all …]
/external/libpng/
Dpngrutil.c3685 unsigned int s_start, s_end; in png_do_read_interlace() local
3698 s_end = 0; in png_do_read_interlace()
3708 s_end = 7; in png_do_read_interlace()
3721 if (dshift == s_end) in png_do_read_interlace()
3731 if (sshift == s_end) in png_do_read_interlace()
3748 unsigned int s_start, s_end; in png_do_read_interlace() local
3759 s_end = 0; in png_do_read_interlace()
3769 s_end = 6; in png_do_read_interlace()
3785 if (dshift == s_end) in png_do_read_interlace()
3795 if (sshift == s_end) in png_do_read_interlace()
[all …]
/external/autotest/client/site_tests/power_LoadTest/
Dpower_LoadTest.py766 s_start, s_end = (start + duration * fraction
770 if s_end > end:
771 s_end = end
772 self._checkpoint_logger.checkpoint(section, s_start, s_end)
774 self._checkpoint_logger.checkpoint(loop_section, s_start, s_end)
/external/kernel-headers/original/uapi/linux/
Dbfs_fs.h54 __le32 s_end; member
/external/compiler-rt/lib/cfi/
Dcfi.cc145 uint16_t *s_end = MemToShadow(end - 1, shadow_) + 1; in Add() local
147 for (; s < s_end; s++, sv++) in Add()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DHashing.h451 const char *s_end = reinterpret_cast<const char *>(last);
452 const size_t length = std::distance(s_begin, s_end);
464 state.mix(s_end - 64);
/external/llvm/include/llvm/ADT/
DHashing.h451 const char *s_end = reinterpret_cast<const char *>(last);
452 const size_t length = std::distance(s_begin, s_end);
464 state.mix(s_end - 64);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DHashing.h451 const char *s_end = reinterpret_cast<const char *>(last);
452 const size_t length = std::distance(s_begin, s_end);
464 state.mix(s_end - 64);
/external/python/cpython3/Objects/
Dfloatobject.c1281 const char *s, *coeff_start, *s_store, *coeff_end, *exp_start, *s_end; in float_fromhex() local
1333 s_end = s + length; in float_fromhex()
1491 if (s != s_end) in float_fromhex()
/external/python/cpython2/Objects/
Dfloatobject.c1455 char *s, *coeff_start, *s_store, *coeff_end, *exp_start, *s_end; in float_fromhex() local
1506 s_end = s + length; in float_fromhex()
1673 if (s != s_end) in float_fromhex()
/external/libevent/
Dbuffer.c1495 char *s_end, *cr, *lf; in find_eol_char() local
1496 s_end = s+len; in find_eol_char()
1497 while (s < s_end) { in find_eol_char()
1498 size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); in find_eol_char()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc2568 const char* s_end = s + n; in AddSubstring() local
2569 while (s < s_end) { in AddSubstring()
2571 Min(chunk_size_ - chunk_pos_, static_cast<int>(s_end - s)); in AddSubstring()