Home
last modified time | relevance | path

Searched refs:just_read (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_file.cpp128 uptr just_read; in ReadFileToBuffer() local
129 if (!ReadFromFile(fd, *buff + *read_len, size - *read_len, &just_read, in ReadFileToBuffer()
135 *read_len += just_read; in ReadFileToBuffer()
136 if (just_read == 0 || *read_len == max_len) { in ReadFileToBuffer()
164 uptr just_read; in ReadFileToVector() local
166 &just_read, errno_p)) { in ReadFileToVector()
170 read_len += just_read; in ReadFileToVector()
171 if (!just_read) in ReadFileToVector()
Dsanitizer_symbolizer_libcdep.cpp521 uptr just_read = 0; in ReadFromSymbolizer() local
523 max_length - read_len - 1, &just_read); in ReadFromSymbolizer()
526 if (!success || just_read == 0) { in ReadFromSymbolizer()
530 read_len += just_read; in ReadFromSymbolizer()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_buffer.c150 bool just_read, in handle_op_atomic() argument
163 if (just_read) { in handle_op_atomic()
283 bool just_read = false; in sp_tgsi_op() local
295 just_read = true; in sp_tgsi_op()
301 handle_op_atomic(bview, just_read, data_ptr, j, in sp_tgsi_op()
Dsp_image.c350 bool just_read, in handle_op_uint() argument
369 if (just_read) { in handle_op_uint()
467 bool just_read, in handle_op_int() argument
485 if (just_read) { in handle_op_int()
581 bool just_read, in handle_op_r32f_xchg() argument
597 if (just_read) { in handle_op_r32f_xchg()
653 bool just_read = false; in sp_tgsi_op() local
675 just_read = true; in sp_tgsi_op()
683 handle_op_uint(iview, params, just_read, data_ptr, j, stride, in sp_tgsi_op()
686 handle_op_int(iview, params, just_read, data_ptr, j, stride, in sp_tgsi_op()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_libcdep.cc399 uptr just_read = 0; in ReadFromSymbolizer() local
401 max_length - read_len - 1, &just_read); in ReadFromSymbolizer()
404 if (!success || just_read == 0) { in ReadFromSymbolizer()
408 read_len += just_read; in ReadFromSymbolizer()
Dsanitizer_common.cc141 uptr just_read; in ReadFileToBuffer() local
142 if (!ReadFromFile(fd, *buff + *read_len, PageSize, &just_read, errno_p)) { in ReadFileToBuffer()
146 if (just_read == 0) { in ReadFileToBuffer()
150 *read_len += just_read; in ReadFileToBuffer()