HomeSort by relevance Sort by last modified time
    Searched refs:start_offset (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium/googleurl/src/
url_file.h 64 // Returns true if the start_offset in the given spec looks like it begins a
65 // drive spec, for example "c:". This function explicitly handles start_offset
69 // plus a colon starting at |start_offset|.
71 inline bool DoesBeginWindowsDriveSpec(const CHAR* spec, int start_offset,
73 int remaining_len = spec_len - start_offset;
76 if (!IsWindowsDriveLetter(spec[start_offset]))
78 if (!IsWindowsDriveSeparator(spec[start_offset + 1]))
83 // Returns true if the start_offset in the given text looks like it begins a
84 // UNC path, for example "\\". This function explicitly handles start_offset
92 int start_offset,
    [all...]
url_canon_relative.cc 75 bool DoesBeginSlashWindowsDriveSpec(const CHAR* spec, int start_offset,
77 if (start_offset >= spec_len)
79 return url_parse::IsURLSlash(spec[start_offset]) &&
80 url_parse::DoesBeginWindowsDriveSpec(spec, start_offset + 1, spec_len);
  /external/elfutils/libelf/
gelf_freechunk.c 41 if (ptr < (char *) elf->map_address + elf->start_offset
42 || ptr >= ((char *) elf->map_address + elf->start_offset
elf_getbase.c 32 return elf == NULL ? (off_t) -1 : elf->start_offset;
elf_readall.c 40 child->start_offset -= offset;
82 elf->start_offset) != elf->maximum_size)
98 set_address (elf, elf->start_offset);
102 elf->state.ar.offset -= elf->start_offset;
103 elf->start_offset = 0;
gelf_rawchunk.c 54 return (char *) elf->map_address + elf->start_offset + offset;
62 if ((size_t) pread (elf->fildes, result, size, elf->start_offset + offset)
elf_rand.c 38 elf->state.ar.offset = elf->start_offset + offset;
elf_rawfile.c 50 return (char *) elf->map_address + elf->start_offset;
elf_getarsym.c 82 sizeof (struct ar_hdr), elf->start_offset + SARMAG)
103 + elf->start_offset + SARMAG);
132 elf->start_offset + SARMAG + sizeof (struct ar_hdr))
141 n = *(uint32_t *) (elf->map_address + elf->start_offset
193 n * sizeof (uint32_t), elf->start_offset
198 elf->start_offset
214 file_data = (uint32_t *) (elf->map_address + elf->start_offset
elf32_updatefile.c 112 (*fctp) ((char *) elf->map_address + elf->start_offset, ehdr,
116 memcpy (elf->map_address + elf->start_offset, ehdr,
135 memset (elf->map_address + elf->start_offset + ehdr->e_ehsize,
149 (*fctp) (elf->map_address + elf->start_offset + ehdr->e_phoff,
154 memcpy (elf->map_address + elf->start_offset + ehdr->e_phoff,
163 last_position = ((char *) elf->map_address + elf->start_offset
174 char *shdr_start = ((char *) elf->map_address + elf->start_offset
186 ((char *) elf->map_address + elf->start_offset + ehdr->e_shoff);
203 + elf->start_offset + shdr->sh_offset);
292 && last_position < ((char *) elf->map_address + elf->start_offset
    [all...]
elf32_getphdr.c 92 ((char *) elf->map_address + elf->start_offset + ehdr->e_phoff);
118 + elf->start_offset + ehdr->e_phoff);
123 elf->start_offset + ehdr->e_phoff),
156 (elf->start_offset + ehdr->e_phoff)) != size)
elf_clone.c 44 retval = allocate_elf (elf->fildes, elf->map_address, elf->start_offset,
elf32_getshdr.c 105 + elf->start_offset + ehdr->e_shoff);
110 + elf->start_offset + ehdr->e_shoff),
133 elf->start_offset + ehdr->e_shoff) != size)
common.h 68 result->start_offset = offset;
  /external/speex/include/speex/
speex_jitter.h 152 int jitter_buffer_get(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t desired_span, spx_int32_t *start_offset);
189 int jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset);
  /packages/inputmethods/PinyinIME/jni/include/
pinyinime.h 44 * @param start_offset The starting position of the system dictionary in the
50 bool im_open_decoder_fd(int sys_fd, long start_offset, long length,
  /external/v8/src/
regexp-macro-assembler.cc 120 int start_offset = previous_index; local
136 int char_length = end_offset - start_offset;
139 StringCharacterPosition(subject_ptr, start_offset);
144 start_offset,
155 int start_offset,
170 start_offset,
regexp-macro-assembler.h 218 int start_offset,
  /packages/inputmethods/PinyinIME/jni/share/
pinyinime.cpp 49 bool im_open_decoder_fd(int sys_fd, long start_offset, long length,
58 return matrix_search->init_fd(sys_fd, start_offset, length, fn_usr_dict);
  /external/chromium/net/disk_cache/
bitmap.cc 128 int start_offset = begin & (kIntBits - 1); local
129 if (start_offset) {
131 int len = std::min(end - begin, kIntBits - start_offset);
  /external/chromium/net/tools/tld_cleanup/
tld_cleanup.cc 121 size_t start_offset = 0; local
135 if (domain->find("*.", start_offset) != std::string::npos ||
136 domain->find('!', start_offset) != std::string::npos) {
  /external/speex/libspeex/
jitter.c 465 EXPORT int jitter_buffer_get(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t desired_span, spx_int32_t *start_offset)
472 if (start_offset != NULL)
473 *start_offset = 0;
614 if (start_offset != NULL)
615 *start_offset = offset;
617 speex_warning_int("jitter_buffer_get() discarding non-zero start_offset", offset);
630 if (start_offset != NULL)
631 jitter->buffered += *start_offset;
716 static int _jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset)
739 EXPORT int jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset)
    [all...]
  /external/chromium/base/
string_util.cc 976 typename StringType::size_type start_offset,
980 if ((start_offset == StringType::npos) || (start_offset >= str->length()))
984 for (typename StringType::size_type offs(str->find(find_this, start_offset));
995 string16::size_type start_offset,
998 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
1003 std::string::size_type start_offset,
    [all...]
string_util.h 376 // Starting at |start_offset| (usually 0), replace the first instance of
379 string16::size_type start_offset,
383 std::string::size_type start_offset,
387 // Starting at |start_offset| (usually 0), look through |str| and replace all
394 string16::size_type start_offset,
398 std::string::size_type start_offset,
  /external/webkit/WebKit/gtk/tests/
testatk.c 53 gint start_offset, end_offset; local
56 text = fn(text_obj, offset, boundary, &start_offset, &end_offset);
58 g_assert_cmpint(start_offset, ==, start_offset_result);

Completed in 970 milliseconds

1 2