Searched refs:rd_len (Results 1 - 3 of 3) sorted by relevance

/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp645 char rep_dsc_len[5], rd_len[2]; local
648 hex2bytes(rep_dsc_len, 4, rd_len);
649 rep_desc_len = (rd_len[0] << 8 | rd_len[1]) - (HID_RPT_DSCR_HDR_LEN_1 - 2);
666 char rep_dsc_len[3], rd_len[1]; local
669 hex2bytes(rep_dsc_len, 2, rd_len);
670 rep_desc_len = rd_len[0] - (HID_RPT_DSCR_HDR_LEN_2 - 1);
/external/valgrind/main/auxprogs/
H A Dvalgrind-di-server.c685 UInt rd_len = read_UInt_le(&rd_first8[4]); local
688 if (rd_len > 4*1024*1024) goto fail;
691 req->n_data = rd_len;
692 req->data = calloc(rd_len, 1);
693 if (rd_len > 0) {
695 if (r != rd_len) goto fail;
/external/valgrind/main/coregrind/m_debuginfo/
H A Dimage.c247 UInt rd_len = read_UInt_le(&rd_first8[4]); local
250 if (rd_len < 4 || rd_len > 4*1024*1024) return NULL;
252 res->n_data = rd_len;
253 res->data = ML_(dinfo_zalloc)("di.do_transaction.2", rd_len);
255 if (r != rd_len) return NULL;

Completed in 329 milliseconds