Home
last modified time | relevance | path

Searched refs:s_end (Results 1 – 18 of 18) 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/kernel-headers/original/uapi/linux/
Dbfs_fs.h54 __le32 s_end; member
/external/libpng/
Dpngrutil.c3705 unsigned int s_start, s_end; in png_do_read_interlace() local
3718 s_end = 0; in png_do_read_interlace()
3728 s_end = 7; in png_do_read_interlace()
3741 if (dshift == s_end) in png_do_read_interlace()
3751 if (sshift == s_end) in png_do_read_interlace()
3768 unsigned int s_start, s_end; in png_do_read_interlace() local
3779 s_end = 0; in png_do_read_interlace()
3789 s_end = 6; in png_do_read_interlace()
3805 if (dshift == s_end) in png_do_read_interlace()
3815 if (sshift == s_end) in png_do_read_interlace()
[all …]
/external/pdfium/third_party/libpng16/
Dpngrutil.c3705 unsigned int s_start, s_end; in png_do_read_interlace() local
3718 s_end = 0; in png_do_read_interlace()
3728 s_end = 7; in png_do_read_interlace()
3741 if (dshift == s_end) in png_do_read_interlace()
3751 if (sshift == s_end) in png_do_read_interlace()
3768 unsigned int s_start, s_end; in png_do_read_interlace() local
3779 s_end = 0; in png_do_read_interlace()
3789 s_end = 6; in png_do_read_interlace()
3805 if (dshift == s_end) in png_do_read_interlace()
3815 if (sshift == s_end) in png_do_read_interlace()
[all …]
/external/autotest/client/site_tests/power_LoadTest/
Dpower_LoadTest.py797 s_start, s_end = (start + duration * fraction
801 if s_end > end:
802 s_end = end
803 self._checkpoint_logger.checkpoint(section, s_start, s_end)
805 self._checkpoint_logger.checkpoint(loop_section, s_start, s_end)
/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-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/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-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/mesa3d/src/imgui/
Dimgui_draw.cpp2781 const char* s_end = s; in RenderText() local
2783 while (y_end < clip_rect.w && s_end < text_end) in RenderText()
2785 s_end = (const char*)memchr(s_end, '\n', text_end - s_end); in RenderText()
2786 s_end = s_end ? s_end + 1 : text_end; in RenderText()
2789 text_end = s_end; in RenderText()
/external/python/cpython3/Objects/
Dfloatobject.c1290 const char *s, *coeff_start, *s_store, *coeff_end, *exp_start, *s_end; in float_fromhex() local
1342 s_end = s + length; in float_fromhex()
1500 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.c1500 char *s_end, *cr, *lf; in find_eol_char() local
1501 s_end = s+len; in find_eol_char()
1502 while (s < s_end) { in find_eol_char()
1503 size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); in find_eol_char()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc2196 const char* s_end = s + n; in AddSubstring() local
2197 while (s < s_end) { in AddSubstring()
2199 Min(chunk_size_ - chunk_pos_, static_cast<int>(s_end - s)); in AddSubstring()
/external/tensorflow/tensorflow/python/saved_model/
Dload_test.py702 i_end, s_end = control_flow_ops.while_loop(cond, body, (i_0, s_0))
704 return s_end