Searched defs:buff_size (Results 1 - 11 of 11) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cc29 uptr *buff_size, uptr max_len) {
33 *buff_size = 0;
38 UnmapOrDie(*buff, *buff_size);
40 *buff_size = size;
28 ReadFileToBuffer(const char *file_name, char **buff, uptr *buff_size, uptr max_len) argument
H A Dsanitizer_posix.cc82 void *MapFileToMemory(const char *file_name, uptr *buff_size) { argument
88 *buff_size = RoundUpTo(fsize, kPageSize);
89 void *map = internal_mmap(0, *buff_size, PROT_READ, MAP_PRIVATE, fd, 0);
H A Dsanitizer_win.cc78 void *MapFileToMemory(const char *file_name, uptr *buff_size) { argument
/external/qemu/telephony/
H A Dremote_call.c117 int buff_size; member in struct:RemoteCallRec
132 call->buff_size = (int) sizeof(call->buff0);
171 rcall->buff_size = sizeof(rcall->buff0);
175 end = p + rcall->buff_size;
230 if (msg2len > call->buff_size) {
238 call->buff_size = msg2len;
242 end = p + call->buff_size;
/external/libnfc-nci/src/nfc/int/
H A Dnfc_int.h113 UINT8 buff_size; /* the max buffer size for this connection. . */ member in struct:__anon7902
/external/libnfc-nci/src/nfc/nfc/
H A Dnfc_ncif.c145 UINT8 buffer_size = p_cb->buff_size;
756 UINT8 buff_size, num_buff; local
769 buff_size = *p++;
789 if (buff_size > NCI_ISO_DEP_MAX_INFO)
790 buff_size = NCI_ISO_DEP_MAX_INFO;
883 if (buff_size > NCI_NFC_DEP_MAX_DATA)
884 buff_size = NCI_NFC_DEP_MAX_DATA;
931 p_cb->buff_size = buff_size;
1175 p_cb->buff_size
[all...]
/external/valgrind/tsan/
H A Dts_util.cc158 int buff_size = 1024*16; local
159 char *buff = new char[buff_size];
167 int ret = vsnprintf(buff, buff_size,
170 if (ret < buff_size) break;
172 buff_size *= 2;
173 buff = new char[buff_size];
175 // Printf("Resized buff: %d\n", buff_size);
/external/srec/srec/include/
H A Dfront.h87 int buff_size; member in struct:__anon12408
/external/libnfc-nci/src/nfa/int/
H A Dnfa_hci_int.h377 UINT8 buff_size; /* Connection buffer size */ member in struct:__anon7740
/external/icu4c/test/cintltst/
H A Dnucnvtst.c5398 int32_t rules_length, target_cap, bytes_needed, buff_size; local
5417 buff_size = rules_length * ucnv_getMaxCharSize(utf8cnv);
5418 buff = malloc(buff_size);
5424 if(target_cap >= buff_size) {
5425 log_err("wanted %d bytes, only %d available\n", target_cap, buff_size);
/external/libnfc-nci/src/nfc/include/
H A Dnfc_api.h306 UINT8 buff_size; /* The max buffer size */ member in struct:__anon7831

Completed in 203 milliseconds