Home
last modified time | relevance | path

Searched refs:end_ptr (Results 1 – 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-buffer-deserialize-text.hh322 const char **end_ptr, in _hb_buffer_deserialize_glyphs_text() argument
334 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_text()
428 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
440 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
452 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
464 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
476 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
505 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
517 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
529 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
[all …]
Dhb-buffer-deserialize-json.hh445 const char **end_ptr, in _hb_buffer_deserialize_glyphs_json() argument
457 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_json()
509 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
560 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
572 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
584 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
596 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
608 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
620 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
638 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
Dhb-buffer-serialize.cc356 const char **end_ptr, /* May be NULL */ in hb_buffer_deserialize_glyphs() argument
361 if (!end_ptr) in hb_buffer_deserialize_glyphs()
362 end_ptr = &end; in hb_buffer_deserialize_glyphs()
363 *end_ptr = buf; in hb_buffer_deserialize_glyphs()
373 *end_ptr = buf; in hb_buffer_deserialize_glyphs()
386 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs()
391 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs()
Dhb-buffer.h337 const char **end_ptr, /* May be NULL */
/external/harfbuzz_ng/src/
Dhb-buffer-deserialize-text.hh322 const char **end_ptr, in _hb_buffer_deserialize_glyphs_text() argument
334 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_text()
428 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
440 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
452 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
464 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
476 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
505 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
517 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
529 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text()
[all …]
Dhb-buffer-deserialize-json.hh445 const char **end_ptr, in _hb_buffer_deserialize_glyphs_json() argument
457 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_json()
509 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
560 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
572 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
584 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
596 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
608 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
620 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
638 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
Dhb-buffer-serialize.cc356 const char **end_ptr, /* May be NULL */ in hb_buffer_deserialize_glyphs() argument
361 if (!end_ptr) in hb_buffer_deserialize_glyphs()
362 end_ptr = &end; in hb_buffer_deserialize_glyphs()
363 *end_ptr = buf; in hb_buffer_deserialize_glyphs()
373 *end_ptr = buf; in hb_buffer_deserialize_glyphs()
386 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs()
391 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs()
Dhb-buffer-deserialize-text.rl48 *end_ptr = p;
97 const char **end_ptr,
109 *end_ptr = ++p;
121 *end_ptr = p;
Dhb-buffer-deserialize-json.rl48 *end_ptr = p;
103 const char **end_ptr,
115 *end_ptr = ++p;
127 *end_ptr = p;
Dhb-buffer.h337 const char **end_ptr, /* May be NULL */
/external/e2fsprogs/util/
Dsubst.c120 char *ptr, *name_ptr, *end_ptr; in substitute_line() local
141 end_ptr = strchr(name_ptr, '@'); in substitute_line()
142 if (!end_ptr) in substitute_line()
144 len = end_ptr - name_ptr; in substitute_line()
154 ptr = end_ptr + 1; in substitute_line()
162 replace_string(ptr, end_ptr, ent->value); in substitute_line()
183 end_ptr = strchr(name_ptr, '}'); in substitute_line()
184 if (!end_ptr) in substitute_line()
186 len = end_ptr - name_ptr; in substitute_line()
194 ptr = end_ptr + 1; in substitute_line()
[all …]
/external/chromium_org/third_party/webrtc/base/
Djson.cc50 char* end_ptr; in GetIntFromJson() local
52 val = strtol(c_str, &end_ptr, 10); // NOLINT in GetIntFromJson()
53 ret = (end_ptr != c_str && *end_ptr == '\0' && !errno && in GetIntFromJson()
70 char* end_ptr; in GetUIntFromJson() local
72 val = strtoul(c_str, &end_ptr, 10); // NOLINT in GetUIntFromJson()
73 ret = (end_ptr != c_str && *end_ptr == '\0' && !errno && in GetUIntFromJson()
111 char* end_ptr; in GetDoubleFromJson() local
113 val = strtod(c_str, &end_ptr); in GetDoubleFromJson()
114 ret = (end_ptr != c_str && *end_ptr == '\0' && !errno); in GetDoubleFromJson()
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
Dthread_map.c165 char *end_ptr; in thread_map__new_by_pid_str() local
173 pid = strtol(pos->s, &end_ptr, 10); in thread_map__new_by_pid_str()
176 (*end_ptr != '\0' && *end_ptr != ',')) in thread_map__new_by_pid_str()
223 char *end_ptr; in thread_map__new_by_tid_str() local
242 tid = strtol(pos->s, &end_ptr, 10); in thread_map__new_by_tid_str()
245 (*end_ptr != '\0' && *end_ptr != ',')) in thread_map__new_by_tid_str()
/external/lldb/source/Commands/
DCommandCompletions.cpp155 char *end_ptr; in DiskFilesOrDirectories() local
157 end_ptr = strrchr(partial_name_copy, '/'); in DiskFilesOrDirectories()
162 if (end_ptr == NULL) in DiskFilesOrDirectories()
205 end_ptr = partial_name_copy; in DiskFilesOrDirectories()
210 if (end_ptr == partial_name_copy) in DiskFilesOrDirectories()
218 size_t len = end_ptr - partial_name_copy; in DiskFilesOrDirectories()
223 end_ptr++; in DiskFilesOrDirectories()
224 strcpy(remainder, end_ptr); in DiskFilesOrDirectories()
248 size_t baselen = end_ptr - partial_name_copy; in DiskFilesOrDirectories()
272 strcpy(end_ptr, name); in DiskFilesOrDirectories()
DCommandObjectThread.cpp1023 uint32_t index_ptr = 0, end_ptr; in DoExecute() local
1033 line_table->FindLineEntryByAddress (fun_end_addr, function_start, &end_ptr); in DoExecute()
1037 while (index_ptr <= end_ptr) in DoExecute()
/external/libvpx/libvpx/vp8/common/x86/
Dsad_sse3.asm19 %define end_ptr rcx
42 %define end_ptr r10
52 %define end_ptr r9
67 %define end_ptr
597 mov end_ptr, 4
629 sub end_ptr, 1
651 lea end_ptr, [src_ptr+src_stride*2]
657 movdqu xmm4, XMMWORD PTR [end_ptr]
658 movdqu xmm5, XMMWORD PTR [end_ptr + 16]
659 movdqu xmm6, XMMWORD PTR [end_ptr + src_stride]
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
Dsad_sse3.asm19 %define end_ptr rcx
42 %define end_ptr r10
52 %define end_ptr r9
67 %define end_ptr
597 mov end_ptr, 4
629 sub end_ptr, 1
651 lea end_ptr, [src_ptr+src_stride*2]
657 movdqu xmm4, XMMWORD PTR [end_ptr]
658 movdqu xmm5, XMMWORD PTR [end_ptr + 16]
659 movdqu xmm6, XMMWORD PTR [end_ptr + src_stride]
[all …]
/external/libpng/contrib/libtests/
Dpngunknown.c379 png_infop info_ptr, end_ptr; member
398 d->info_ptr = d->end_ptr = NULL; in init_display()
408 png_destroy_read_struct(&d->png_ptr, &d->info_ptr, &d->end_ptr); in clean_display()
411 if (d->png_ptr != NULL || d->info_ptr != NULL || d->end_ptr != NULL) in clean_display()
665 d->end_ptr = png_create_info_struct(d->png_ptr); in check()
666 if (d->info_ptr == NULL || d->end_ptr == NULL) in check()
824 png_read_end(d->png_ptr, d->end_ptr); in check()
833 flags[2] = get_valid(d, d->end_ptr); in check()
834 flags[3] = get_unknown(d, d->end_ptr, 1/*after IDAT*/); in check()
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_sad_sse3.asm19 %define end_ptr rcx
42 %define end_ptr r10
52 %define end_ptr r9
67 %define end_ptr
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
Dvp9_sad_sse3.asm19 %define end_ptr rcx
42 %define end_ptr r10
52 %define end_ptr r9
67 %define end_ptr
/external/android-clat/
Dclatd.c468 char *end_ptr; in parse_unsigned() local
469 *out = strtoul(str, &end_ptr, 0); in parse_unsigned()
470 return *str && !*end_ptr; in parse_unsigned()
/external/chromium_org/base/memory/
Dshared_memory_unittest.cc183 char *end_ptr = start_ptr + kDataSize; in TEST() local
184 for (char* ptr = start_ptr; ptr < end_ptr; ptr++) in TEST()
250 char *end_ptr = start_ptr + kDataSize; in TEST() local
251 for (char* ptr = start_ptr; ptr < end_ptr; ptr++) { in TEST()
/external/chromium_org/sdch/open-vcdiff/src/
Dblockhash.cc228 const char* const end_ptr = source_data() + end_limit; in AddAllBlocksThroughIndex() local
229 while (block_ptr < end_ptr) { in AddAllBlocksThroughIndex()
/external/libpng/
Dpngrutil.c3033 png_bytep end_ptr = 0; in png_combine_row() local
3065 end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1; in png_combine_row()
3066 end_byte = *end_ptr; in png_combine_row()
3503 if (end_ptr != NULL) in png_combine_row()
3504 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask)); in png_combine_row()
/external/pdfium/core/src/fxcrt/
Dfx_basic_bstring.cpp800 FX_LPCSTR end_ptr = str1 + len1 - len2; in FX_strstr() local
801 while (str1 <= end_ptr) { in FX_strstr()

12