HomeSort by relevance Sort by last modified time
    Searched full:match_offset (Results 1 - 4 of 4) sorted by null

  /system/core/metricsd/
metrics_library.cc 77 // match_offset describes:
81 int match_offset = 0; local
92 match_offset = 0;
95 if (match_offset < 0) {
98 if (device_name[match_offset] == '\0') {
103 match_offset = -1;
107 if (buffer[i] == device_name[match_offset]) {
108 ++match_offset;
110 match_offset = -1;
  /external/dng_sdk/source/
dng_string.cpp 1555 int32 *match_offset) const
1558 if (match_offset)
1560 *match_offset = -1;
1599 if (match_offset)
1601 *match_offset = offset;
1621 int32 match_offset = -1; local
1625 &match_offset))
1636 strncpy (fData.Buffer_char () + match_offset,
1645 strncpy (fData.Buffer_char () + match_offset,
1649 const char *s = fData.Buffer_char () + match_offset + len2
    [all...]
dng_string.h 122 int32 *match_offset = NULL) const;
  /bionic/linker/
linker_phdr.cpp 788 size_t match_offset = 0; variable
798 while (match_offset < size) {
800 while (match_offset < size &&
801 memcmp(mem_base + match_offset, file_base + match_offset, PAGE_SIZE) != 0) {
802 match_offset += PAGE_SIZE;
806 size_t mismatch_offset = match_offset;
813 if (mismatch_offset > match_offset) {
814 void* map = mmap(mem_base + match_offset, mismatch_offset - match_offset,
    [all...]

Completed in 506 milliseconds