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

  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_helpers.cc 231 size_t prefix_index, value_index; local
232 for (prefix_index = 0, value_index = 0;
233 prefix_index < prefix_to_match.size() && value_index < value.size();
239 if (ascii_tolower(value[value_index]) != prefix_to_match[prefix_index++]) {
246 if (prefix_index < prefix_to_match.size()) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodedata.c 406 unsigned int prefix_index; local
442 prefix_index = decomp_data[index] & 255;
443 assert(prefix_index < (sizeof(decomp_prefix)/sizeof(*decomp_prefix)));
446 i = strlen(decomp_prefix[prefix_index]);
447 memcpy(decomp, decomp_prefix[prefix_index], i);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata.c 406 unsigned int prefix_index; local
442 prefix_index = decomp_data[index] & 255;
443 assert(prefix_index < (sizeof(decomp_prefix)/sizeof(*decomp_prefix)));
446 i = strlen(decomp_prefix[prefix_index]);
447 memcpy(decomp, decomp_prefix[prefix_index], i);
    [all...]
  /external/python/cpython2/Modules/
unicodedata.c 406 unsigned int prefix_index; local
442 prefix_index = decomp_data[index] & 255;
443 assert(prefix_index < (sizeof(decomp_prefix)/sizeof(*decomp_prefix)));
446 i = strlen(decomp_prefix[prefix_index]);
447 memcpy(decomp, decomp_prefix[prefix_index], i);
    [all...]
  /external/python/cpython3/Modules/
unicodedata.c 404 unsigned int prefix_index; local
433 prefix_index = decomp_data[index] & 255;
434 assert(prefix_index < Py_ARRAY_LENGTH(decomp_prefix));
437 i = strlen(decomp_prefix[prefix_index]);
438 memcpy(decomp, decomp_prefix[prefix_index], i);
    [all...]
  /art/tools/dexanalyze/
dexanalyze_strings.cc 51 ALWAYS_INLINE void GetOffset(uint32_t prefix_index, uint32_t* offset, uint32_t* length) const {
52 CHECK_LT(prefix_index, offsets_.size());
53 const uint32_t data = offsets_[prefix_index];

Completed in 154 milliseconds