OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dst_buf_size
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/bionic/
__strcat_chk.cpp
35
size_t
dst_buf_size
) {
37
size_t dst_len = __strlen_chk(dst,
dst_buf_size
);
40
dst_buf_size
-= dst_len;
43
dst_buf_size
--;
44
if (__predict_false(
dst_buf_size
== 0)) {
45
__fortify_fatal("strcat: prevented write past end of %zu-byte buffer",
dst_buf_size
);
fortify.cpp
282
extern "C" void __strcat_chk_fail(size_t
dst_buf_size
) {
283
__fortify_fatal("strcat: prevented write past end of %zu-byte buffer",
dst_buf_size
);
302
extern "C" void __strcpy_chk_fail(size_t
dst_buf_size
) {
303
__fortify_fatal("strcpy: prevented write past end of %zu-byte buffer",
dst_buf_size
);
331
size_t len, size_t
dst_buf_size
) {
336
size_t dst_len = __strlen_chk(dst,
dst_buf_size
);
338
dst_buf_size
-= dst_len;
342
len--;
dst_buf_size
--;
344
if (__predict_false(
dst_buf_size
== 0)) {
/external/valgrind/coregrind/m_debuginfo/
tinfl.c
543
SizeT src_buf_size = src_buf_len - src_buf_ofs,
dst_buf_size
= out_buf_capacity - *pOut_len, new_out_buf_capacity;
local
544
tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8*)pSrc_buf + src_buf_ofs, &src_buf_size, (mz_uint8*)pBuf, pBuf ? (mz_uint8*)pBuf + *pOut_len : NULL, &
dst_buf_size
,
551
*pOut_len +=
dst_buf_size
;
581
SizeT in_buf_size = *pIn_buf_size - in_buf_ofs,
dst_buf_size
= TINFL_LZ_DICT_SIZE - dict_ofs;
local
582
tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8*)pIn_buf + in_buf_ofs, &in_buf_size, pDict, pDict + dict_ofs, &
dst_buf_size
,
585
if ((
dst_buf_size
) && (!(*pPut_buf_func)(pDict + dict_ofs, (int)
dst_buf_size
, pPut_buf_user)))
592
dict_ofs = (dict_ofs +
dst_buf_size
) & (TINFL_LZ_DICT_SIZE - 1);
Completed in 112 milliseconds