HomeSort by relevance Sort by last modified time
    Searched refs:byte_idx (Results 1 - 8 of 8) sorted by null

  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 215 Idx byte_idx, end_idx, remain_len;
221 for (byte_idx = pstr->valid_len; byte_idx < end_idx;)
226 remain_len = end_idx - byte_idx;
235 ch = pstr->raw_mbs [pstr->raw_mbs_idx + byte_idx + i];
236 buf[i] = pstr->mbs[byte_idx + i] = pstr->trans[ch];
241 p = (const char *) pstr->raw_mbs + pstr->raw_mbs_idx + byte_idx;
253 wc = (wchar_t) pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx];
260 pstr->wcs[byte_idx++] = wc;
262 for (remain_len = byte_idx + mbclen - 1; byte_idx < remain_len ;
214 Idx byte_idx, end_idx, remain_len; local
276 Idx src_idx, byte_idx, end_idx, remain_len; local
    [all...]
regex_internal.h 812 int byte_idx;
815 for (byte_idx = 1; idx + byte_idx < pstr->valid_len; ++byte_idx)
816 if (pstr->wcs[idx + byte_idx] != WEOF)
818 return byte_idx;
811 int byte_idx; local
  /external/lldb/source/DataFormatters/
CF.cpp 163 for (int byte_idx = 0; byte_idx < num_bytes-1; byte_idx++)
165 uint8_t byte = bytes[byte_idx];
LibStdcpp.cpp 56 size_t byte_idx = (idx >> 3); // divide by 8 to get byte index
58 lldb::addr_t byte_location = m_base_data_address + byte_idx;
LibCxx.cpp 57 size_t byte_idx = (idx >> 3); // divide by 8 to get byte index
59 lldb::addr_t byte_location = m_base_data_address + byte_idx;
  /external/lldb/source/Core/
RegisterValue.cpp 1181 uint32_t byte_idx; local
1255 uint32_t byte_idx; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
forward_error_correction.cc 545 for (uint16_t byte_idx = 0; byte_idx < maskSizeBytes; ++byte_idx) {
546 uint8_t packet_mask = fec_packet->pkt->data[12 + byte_idx];
553 static_cast<uint16_t>(seq_num_base + (byte_idx << 3) + bit_idx);
  /external/chromium_org/tools/android/memdump/
memdump.cc 42 const uint32 byte_idx = bit / 8; local
43 CHECK(byte_idx < data_.size());
44 data_[byte_idx] |= (1 << (bit & 7));

Completed in 245 milliseconds